summaryrefslogtreecommitdiff
path: root/Cython/Compiler/AnalysedTreeTransforms.py
Commit message (Collapse)AuthorAgeFilesLines
* use explicit relative imports everywhere and enable absolute imports by defaultStefan Behnel2014-06-171-6/+8
|
* remove unused importStefan Behnel2014-02-221-1/+0
|
* don't mix relative and absolute imports, just use relative onesStefan Behnel2011-11-131-1/+1
| | | | | --HG-- extra : rebase_source : 6d0601030b617db297a3572a5e030cf77c5881a4
* removed unused importsStefan Behnel2011-11-131-4/+2
| | | | | --HG-- extra : rebase_source : df1d95506044267a1e945fbc5672af66f8ee022d
* Fix some style issuesMark Florisson2011-10-051-4/+2
|
* Fix build errorMark Florisson2011-10-031-1/+3
|
* Support fused def functions + lambda + better runtime dispatchMark Florisson2011-07-111-1/+1
|
* Remove trailing whitespace.Robert Bradshaw2010-12-131-1/+1
|
* fix AutoTestDictTransform for lambda expressionsStefan Behnel2010-11-231-0/+5
|
* new autotestdict.{cdef,all} directives that put cdef and non-doctest ↵Stefan Behnel2010-11-031-4/+10
| | | | | | | | docstrings into __test__, skip non-doctest docstrings by default --HG-- rename : tests/run/autotestdict.pyx => tests/run/autotestdict_all.pyx rename : tests/run/autotestdict.pyx => tests/run/autotestdict_cdef.pyx
* reverted support for cdef functions in __test__ dict: increases module size ↵Stefan Behnel2010-11-021-4/+5
| | | | and init code but rarely helps
* enable doctests in cdef functions/methods, do not rewrap docstrings in ↵Stefan Behnel2010-11-021-6/+5
| | | | __test__ dict as EncodedString() but keep them as they are
* simplify auto __test__ dict generation:Stefan Behnel2010-10-311-73/+54
| | | | | store docstrings directly in the dict instead of looking them up at module init time => much faster, a lot less code, fewer redundant string constants (duplicate strings are unified anyway), and just as good, as docstrings of Cython functions/methods can't currently be changed anyway
* Py3: __cmp__ is gone, __bool__ instead of __nonzero__Lisandro Dalcin2010-04-281-1/+2
|
* do not emit C code for unused special method docstringsLisandro Dalcin2010-04-141-1/+2
|
* Fix for autotestdict & property not playing well together.Craig Citro2010-03-091-1/+12
|
* Fix #508Dag Sverre Seljebotn2010-02-201-0/+2
|
* Blacklist __nonzero__ from autotestdictDag Sverre Seljebotn2009-10-201-1/+1
|
* Yet another bugfix for autotestdictDag Sverre Seljebotn2009-10-161-1/+5
|
* Another blacklisted autotestdict method.Robert Bradshaw2009-10-151-1/+1
|
* Incomplete hack for autotestdict, see #387Dag Sverre Seljebotn2009-10-151-0/+4
|
* Fix for Python 2.3Robert Bradshaw2009-10-071-2/+2
|
* Rename doctesthack -> autotestdict, and make it defaultDag Sverre Seljebotn2009-10-051-3/+3
| | | | | | | --HG-- rename : tests/errors/e_doctesthack.pyx => tests/errors/e_autotestdict.pyx rename : tests/run/doctesthack.pyx => tests/run/autotestdict.pyx rename : tests/run/doctesthack_skip.pyx => tests/run/autotestdict_skip.pyx
* Fix doctesthack for cdef functionsDag Sverre Seljebotn2009-10-051-1/+7
|
* Move nodes to exprnodesDag Sverre Seljebotn2009-10-031-35/+1
|
* doctesthack directiveDag Sverre Seljebotn2009-10-011-14/+37
|
* doctesthack directive works for global functionsDag Sverre Seljebotn2009-10-011-0/+90