| Commit message (Expand) | Author | Age | Files | Lines |
* | Include code.h more sanely. | Thomas Wouters | 2006-02-28 | 1 | -3/+2 |
|
|
* | No need to export PySTEntry_New, it is only used in symtable.c | Neal Norwitz | 2006-02-28 | 1 | -2/+1 |
|
|
* | Martin owns PEP 353 and did most of the work | Neal Norwitz | 2006-02-28 | 1 | -1/+1 |
|
|
* | from __future__ import with_statement addon for 'with', mostly written by | Thomas Wouters | 2006-02-28 | 5 | -3/+15 |
|
|
* | Remove asdl_seq_APPEND() and simplify asdl seq implementation. | Jeremy Hylton | 2006-02-28 | 1 | -12/+2 |
|
|
* | Real arena implementation | Jeremy Hylton | 2006-02-28 | 1 | -10/+4 |
|
|
* | SF patch #1438387, PEP 328: relative and absolute imports. | Thomas Wouters | 2006-02-28 | 5 | -3/+14 |
|
|
* | PEP 343 -- the with-statement. | Guido van Rossum | 2006-02-27 | 3 | -49/+58 |
|
|
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 2 | -6/+6 |
|
|
* | PEP 308 implementation, including minor refdocs and some testcases. It | Thomas Wouters | 2006-02-27 | 2 | -41/+52 |
|
|
* | Generate code to recursively copy an AST into | Martin v. Löwis | 2006-02-26 | 2 | -0/+2 |
|
|
* | Per discussion on python-dev, remove CO_GENERATOR_ALLOWED. Leave comment abo... | Neal Norwitz | 2006-02-25 | 2 | -2/+5 |
|
|
* | Bug #1086854: Rename PyHeapType members adding ht_ prefix. | Georg Brandl | 2006-02-20 | 1 | -3/+3 |
|
|
* | Generators have been permanent for a while. This comment is no longer applic... | Neal Norwitz | 2006-02-19 | 1 | -6/+1 |
|
|
* | Fix intptr_t fallback for Py_ssize_t. | Martin v. Löwis | 2006-02-18 | 1 | -1/+1 |
|
|
* | Change _PyObject_GC_Resize to expect Py_ssize_t. | Martin v. Löwis | 2006-02-16 | 1 | -1/+1 |
|
|
* | Use Py_ssize_t for field sizes and offsets. | Martin v. Löwis | 2006-02-16 | 1 | -3/+3 |
|
|
* | Allow for ssize_t field offsets. | Martin v. Löwis | 2006-02-16 | 1 | -1/+1 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 20 | -147/+202 |
|
|
* | Renamed _length_cue() to __length_hint__(). See: | Armin Rigo | 2006-02-11 | 1 | -5/+10 |
|
|
* | Fix PyGC_Collect() to be exported from the built DLL on Windows. (Fix given | Barry Warsaw | 2006-01-26 | 1 | -1/+1 |
|
|
* | Fix icc warnings: single bit fields should be unsigned | Neal Norwitz | 2006-01-07 | 1 | -7/+7 |
|
|
* | Drop sys.build_number. Add sys.subversion. | Martin v. Löwis | 2006-01-05 | 2 | -1/+6 |
|
|
* | const poisoning, spreading to fix new const warnings | Tim Peters | 2005-12-24 | 1 | -3/+3 |
|
|
* | Expose Subversion revision number (calculated via "svnversion .") to Python. | Barry Warsaw | 2005-12-18 | 1 | -0/+1 |
|
|
* | Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, | Neal Norwitz | 2005-12-17 | 7 | -73/+116 |
|
|
* | moved magic into structure (mainly to simplify the client code) | Fredrik Lundh | 2005-12-13 | 1 | -3/+5 |
|
|
* | renamed dispatch -> capi to match other CAPI implementations | Fredrik Lundh | 2005-12-13 | 1 | -3/+3 |
|
|
* | added cobject-based expat dispatch mechanism to pyexpat | Fredrik Lundh | 2005-12-13 | 1 | -0/+45 |
|
|
* | SF #1373150, diffs in working copy after a build | Neal Norwitz | 2005-12-11 | 1 | -1/+1 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 7 | -34/+36 |
|
|
* | Whoops, checkin consistent versions of *all* files to stop polluting | Neal Norwitz | 2005-11-13 | 2 | -7/+4 |
|
|
* | Prevent name pollution by making lots of internal functions static. | Neal Norwitz | 2005-11-13 | 1 | -15/+1 |
|
|
* | _PyUnicode_IsWhitespace(), | Tim Peters | 2005-10-29 | 1 | -2/+2 |
|
|
* | use PyAPI_FUNC instead of DL_IMPORT. are we going to deprecate the old non-P... | Neal Norwitz | 2005-10-24 | 1 | -2/+2 |
|
|
* | Do not pollute name block_ty, prefix with _Py_ | Neal Norwitz | 2005-10-24 | 1 | -3/+3 |
|
|
* | use PyAPI_FUNC instead of DL_IMPORT. are we going to deprecate the old non-P... | Neal Norwitz | 2005-10-23 | 1 | -2/+2 |
|
|
* | Fix private name mangling. The symtable also must do mangles so that | Neil Schemenauer | 2005-10-23 | 1 | -1/+1 |
|
|
* | Correct error to PyRun_SimpleString macro introduced in AST merge. | Mark Hammond | 2005-10-23 | 1 | -1/+1 |
|
|
* | Fix a bunch of imports to use code.h instead of compile.h. | Jeremy Hylton | 2005-10-21 | 1 | -5/+0 |
|
|
* | Remove INT_MIN that came from the AST merge. | Neal Norwitz | 2005-10-21 | 1 | -1/+0 |
|
|
* | Use the newer names for APIs after the AST merge | Neal Norwitz | 2005-10-21 | 1 | -3/+3 |
|
|
* | Remove dup declarations after AST merge | Neal Norwitz | 2005-10-21 | 1 | -3/+0 |
|
|
* | Merge ast-branch to head | Jeremy Hylton | 2005-10-20 | 9 | -128/+654 |
|
|
* | Convert iterator __len__() methods to a private API. | Raymond Hettinger | 2005-09-24 | 1 | -0/+15 |
|
|
* | - Changes donated by Elemental Security to make it work on AIX 5.3 | Guido van Rossum | 2005-09-14 | 1 | -0/+1 |
|
|
* | - Changes donated by Elemental Security to make it work on HP-UX 11 on | Guido van Rossum | 2005-09-14 | 1 | -1/+1 |
|
|
* | SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complain | Walter Dörwald | 2005-08-30 | 1 | -0/+10 |
|
|
* | Disallow keyword arguments for type constructors that don't use them. | Georg Brandl | 2005-08-26 | 1 | -0/+1 |
|
|
* | Numerous fix-ups to C API and docs. Added tests for C API. | Raymond Hettinger | 2005-08-16 | 1 | -1/+1 |
|
|