summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Issue #13706: Add assertions to detect bugs earlierVictor Stinner2012-01-311-3/+9
| | |
* | | Remove now useless arbitrary limit of module name lengthVictor Stinner2012-01-251-6/+0
| | |
* | | Port import fixes from 2.7.Antoine Pitrou2012-01-251-10/+10
|\ \ \ | |/ /
| * | Port import fixes from 2.7.Antoine Pitrou2012-01-251-10/+10
| | |
* | | Issue #11235: Fix OverflowError when trying to import a source file whose ↵Antoine Pitrou2012-01-241-7/+4
|\ \ \ | |/ / | | | | | | modification time doesn't fit in a 32-bit timestamp.
| * | Issue #11235: Fix OverflowError when trying to import a source file whose ↵Antoine Pitrou2012-01-241-7/+4
| | | | | | | | | | | | modification time doesn't fit in a 32-bit timestamp.
* | | Silence last compilation warning.Amaury Forgeot d'Arc2012-01-231-1/+1
| | |
* | | Fix compilation warnings (seen on win32 buildbot)Amaury Forgeot d'Arc2012-01-231-4/+4
| | |
* | | use the static identifier api for looking up special methodsBenjamin Peterson2012-01-222-10/+11
| | | | | | | | | | | | | | | I had to move the static identifier code from unicodeobject.h to object.h in order for this to work.
* | | Issue #13706: Support non-ASCII fill charactersVictor Stinner2012-01-211-15/+19
| | |
* | | Improve exception text. Closes issue 13811.Eric V. Smith2012-01-201-2/+2
| | |
* | | Issue #12705: Raise SyntaxError when compiling multiple statements as single ↵Meador Inge2012-01-191-0/+3
| | | | | | | | | | | | interactive statement
* | | Issue #13722: Avoid silencing ImportErrors when initializing the codecs ↵Antoine Pitrou2012-01-181-9/+0
|\ \ \ | |/ / | | | | | | registry.
| * | Issue #13722: Avoid silencing ImportErrors when initializing the codecs ↵Antoine Pitrou2012-01-181-9/+0
| | | | | | | | | | | | registry.
* | | Finally fix all test_capi refleaksAntoine Pitrou2012-01-181-9/+16
| | |
* | | Fix the builtin module initialization code to store the init function for ↵Antoine Pitrou2012-01-181-0/+4
|\ \ \ | |/ / | | | | | | future reinitialization.
| * | Fix the builtin module initialization code to store the init function for ↵Antoine Pitrou2012-01-181-0/+4
| | | | | | | | | | | | future reinitialization.
* | | Fix a memory leak when initializing the standard I/O streams.Antoine Pitrou2012-01-181-1/+2
|\ \ \ | |/ /
| * | Fix a memory leak when initializing the standard I/O streams.Antoine Pitrou2012-01-181-1/+2
| | |
* | | fix indentationBenjamin Peterson2012-01-161-5/+5
| | |
* | | break out switch at correct placeBenjamin Peterson2012-01-161-1/+1
| | |
* | | only finish error if one occurredBenjamin Peterson2012-01-161-1/+2
| | |
* | | move LINENO define to where it actually belongsBenjamin Peterson2012-01-161-4/+0
| | |
* | | streamline normalizer identification a bitBenjamin Peterson2012-01-161-25/+55
| | |
* | | fix spellingBenjamin Peterson2012-01-161-1/+1
| | |
* | | invert condition (head bang)Benjamin Peterson2012-01-161-1/+1
| | |
* | | fix possible refleaksBenjamin Peterson2012-01-161-2/+4
| | |
* | | use helpful PyUnicode_IS_ASCII macroBenjamin Peterson2012-01-161-1/+1
| | |
* | | PyUnicode_DecodeUTF8 will always return a ready stringBenjamin Peterson2012-01-161-1/+2
| | |
* | | rewrite such that this actually makes senseBenjamin Peterson2012-01-161-1/+1
| | |
* | | Issue #13629: Renumber the tokens in token.h to match the ↵Meador Inge2012-01-161-15/+15
|\ \ \ | |/ / | | | | | | _PyParser_TokenNames indexes.
| * | Issue #13629: Renumber the tokens in token.h to match the ↵Meador Inge2012-01-161-15/+15
| | | | | | | | | | | | _PyParser_TokenNames indexes.
* | | make YieldFrom its own distinct from Yield (closes #13780)Benjamin Peterson2012-01-144-21/+67
| | |
* | | Fix compilation with C89 compilers (Windows...)Amaury Forgeot d'Arc2012-01-131-1/+1
| | |
* | | NULL and no exception set from tp_iternext means StopIterationBenjamin Peterson2012-01-131-1/+2
| | |
* | | Closes #13761: add a "flush" keyword argument to print().Georg Brandl2012-01-131-5/+19
| | |
* | | Issue #13645: pyc files now contain the size of the corresponding sourceAntoine Pitrou2012-01-133-7/+23
| | | | | | | | | | | | | | | code, to avoid timestamp collisions (especially on filesystems with a low timestamp resolution) when checking for freshness of the bytecode.
* | | Implement PEP 380 - 'yield from' (closes #11682)Nick Coghlan2012-01-137-115/+198
| | |
* | | Issue #13748: Raw bytes literals can now be written with the `rb` prefix as ↵Antoine Pitrou2012-01-121-7/+12
| | | | | | | | | | | | well as `br`.
* | | merge 3.2Benjamin Peterson2012-01-121-3/+1
|\ \ \ | |/ /
| * | fold into one if statementBenjamin Peterson2012-01-121-3/+1
| | |
* | | remove some usage of Py_UNICODE_TOUPPER/LOWERBenjamin Peterson2012-01-122-15/+21
| | |
* | | Add a new PyUnicode_Fill() functionVictor Stinner2012-01-031-15/+6
| | | | | | | | | | | | | | | It is faster than the unicode_fill() function which was implemented in formatter_unicode.c.
* | | merge 3.2Benjamin Peterson2012-01-031-1/+1
|\ \ \ | |/ /
| * | fix formattingBenjamin Peterson2012-01-031-1/+1
| | |
* | | merge 3.2Benjamin Peterson2012-01-011-1/+1
|\ \ \ | |/ /
| * | add another year to glorious PSF IPBenjamin Peterson2012-01-011-1/+1
| | |
* | | Issue #13626: Add support for SSL Diffie-Hellman key exchange, through theAntoine Pitrou2011-12-221-0/+6
| | | | | | | | | | | | SSLContext.load_dh_params() method and the ssl.OP_SINGLE_DH_USE option.
* | | _Py_fopen now allows bytes filenames under non-Windows platforms.Antoine Pitrou2011-12-191-2/+2
| | |
* | | (Merge 3.2) Handle correctly _Py_fopen() error: don't replace the exceptionVictor Stinner2011-12-181-9/+21
|\ \ \ | |/ /