summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* uncomment vector assign function templateno-old-pythonRobert Bradshaw2014-02-281-1/+1
* Remove another py_set utility code reference.Robert Bradshaw2014-02-221-1/+0
* Restore some over-eager 3.1 removals.Robert Bradshaw2014-02-228-15/+27
* More cleanup.Robert Bradshaw2014-02-222-6/+2
* Check for Python 2.6+Robert Bradshaw2014-02-221-4/+4
* More obsolete code removal.Robert Bradshaw2014-02-225-42/+8
* Remove obsolete utility code.Robert Bradshaw2014-02-2213-298/+16
* Dissallow Python 2.4, 2.5, 3.0, and 3.1Robert Bradshaw2014-02-221-2/+2
* Py2.4 test fixStefan Behnel2014-02-221-1/+1
* fix buffer format validation for sequences of strings in structsStefan Behnel2014-02-223-11/+35
* add references to buffer format type documentationStefan Behnel2014-02-221-1/+4
* minor readability fixStefan Behnel2014-02-221-2/+2
* get rid of __signature__ property for cyfunctions again as inspect.py in Py3....Stefan Behnel2014-02-223-44/+41
* changelogStefan Behnel2014-02-221-0/+7
* add frozenset(frozenset) test to cover a C level special caseStefan Behnel2014-02-221-0/+6
* extend testStefan Behnel2014-02-221-0/+5
* extend tuple tests to cover recent C code simplificationsStefan Behnel2014-02-221-0/+49
* fix typoStefan Behnel2014-02-191-1/+1
* Merge pull request #274 from ibell/patch-1scoder2014-02-191-1/+1
|\
| * Update Parsing.pyIan Bell2014-02-181-1/+1
* | Clang-compatible C++ nested destructor call.Robert Bradshaw2014-02-182-8/+9
|/
* minor cleanups in array tutorialStefan Behnel2014-02-161-10/+11
* changelogStefan Behnel2014-02-161-2/+5
* Merge pull request #273 from andreasvc/masterscoder2014-02-162-0/+105
|\
| * tutorial for Python arraysAndreas van Cranenburgh2014-02-092-0/+105
* | replace frozenset([]) by frozenset()Stefan Behnel2014-02-141-1/+3
* | replace frozenset([...]) by frozenset((...))Stefan Behnel2014-02-141-0/+9
* | avoid some unnecessary round trips when creating immutable objectsStefan Behnel2014-02-141-6/+8
* | add another special case to frozenset() that avoids an object creation round ...Stefan Behnel2014-02-141-1/+6
* | restore singleton property of empty frozensetStefan Behnel2014-02-143-3/+63
* | fix test runner in Py2.4Stefan Behnel2014-02-141-0/+2
* | fix typoStefan Behnel2014-02-141-1/+1
* | avoid C compiler warning about unused helper function in Py<3.4Stefan Behnel2014-02-141-2/+1
* | fix last commitStefan Behnel2014-02-141-1/+1
* | fix debugger testStefan Behnel2014-02-141-0/+1
* | support __signature__ property on CyFunction in Py3.4Stefan Behnel2014-02-142-0/+46
* | Disable tests to "new" for the ancient boxen CI gcc.Robert Bradshaw2014-02-131-21/+22
* | Py3 fixRobert Bradshaw2014-02-131-4/+5
* | Fix unordered_{set,map} on gcc.Robert Bradshaw2014-02-131-0/+1
* | Allow distutils directives in test files.Robert Bradshaw2014-02-132-10/+28
* | Support for C++ unordered sets and maps.Robert Bradshaw2014-02-136-11/+173
* | merge 0.20.x branch into masterStefan Behnel2014-02-131-1/+1
|\ \
| * | add missing ";" in C codeStefan Behnel2014-02-131-1/+1
* | | merge 0.20.x branch into masterStefan Behnel2014-02-121-0/+3
|\ \ \ | |/ /
| * | changelogStefan Behnel2014-02-121-0/+3
* | | Bump version.Robert Bradshaw2014-02-111-1/+1
* | | Merge branch 'master' of github.com:cython/cythonRobert Bradshaw2014-02-113-11/+167
|\ \ \ | |/ / |/| |
| * | fix Py2.4 compatibility definition of PyFrozenSet_New(it)Stefan Behnel2014-02-081-1/+1
| * | optimise frozenset(it) into a call to PyFrozenSet_New(it)Stefan Behnel2014-02-082-36/+178
| * | optimise set(it) into a call to PySet_New(it)Stefan Behnel2014-02-081-18/+32