Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Silence last compilation warning. | Amaury Forgeot d'Arc | 2012-01-23 | 1 | -1/+1 |
| | |||||
* | Fix compilation warnings (seen on win32 buildbot) | Amaury Forgeot d'Arc | 2012-01-23 | 1 | -4/+4 |
| | |||||
* | use the static identifier api for looking up special methods | Benjamin Peterson | 2012-01-22 | 2 | -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 characters | Victor Stinner | 2012-01-21 | 1 | -15/+19 |
| | |||||
* | Improve exception text. Closes issue 13811. | Eric V. Smith | 2012-01-19 | 1 | -2/+2 |
| | |||||
* | Issue #12705: Raise SyntaxError when compiling multiple statements as single ↵ | Meador Inge | 2012-01-19 | 1 | -0/+3 |
| | | | | interactive statement | ||||
* | Issue #13722: Avoid silencing ImportErrors when initializing the codecs ↵ | Antoine Pitrou | 2012-01-18 | 1 | -9/+0 |
|\ | | | | | | | registry. | ||||
| * | Issue #13722: Avoid silencing ImportErrors when initializing the codecs ↵ | Antoine Pitrou | 2012-01-18 | 1 | -9/+0 |
| | | | | | | | | registry. | ||||
* | | Finally fix all test_capi refleaks | Antoine Pitrou | 2012-01-18 | 1 | -9/+16 |
| | | |||||
* | | Fix the builtin module initialization code to store the init function for ↵ | Antoine Pitrou | 2012-01-18 | 1 | -0/+4 |
|\ \ | |/ | | | | | future reinitialization. | ||||
| * | Fix the builtin module initialization code to store the init function for ↵ | Antoine Pitrou | 2012-01-18 | 1 | -0/+4 |
| | | | | | | | | future reinitialization. | ||||
* | | Fix a memory leak when initializing the standard I/O streams. | Antoine Pitrou | 2012-01-18 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Fix a memory leak when initializing the standard I/O streams. | Antoine Pitrou | 2012-01-18 | 1 | -1/+2 |
| | | |||||
* | | fix indentation | Benjamin Peterson | 2012-01-16 | 1 | -5/+5 |
| | | |||||
* | | break out switch at correct place | Benjamin Peterson | 2012-01-16 | 1 | -1/+1 |
| | | |||||
* | | only finish error if one occurred | Benjamin Peterson | 2012-01-16 | 1 | -1/+2 |
| | | |||||
* | | move LINENO define to where it actually belongs | Benjamin Peterson | 2012-01-16 | 1 | -4/+0 |
| | | |||||
* | | streamline normalizer identification a bit | Benjamin Peterson | 2012-01-16 | 1 | -25/+55 |
| | | |||||
* | | fix spelling | Benjamin Peterson | 2012-01-16 | 1 | -1/+1 |
| | | |||||
* | | invert condition (head bang) | Benjamin Peterson | 2012-01-16 | 1 | -1/+1 |
| | | |||||
* | | fix possible refleaks | Benjamin Peterson | 2012-01-16 | 1 | -2/+4 |
| | | |||||
* | | use helpful PyUnicode_IS_ASCII macro | Benjamin Peterson | 2012-01-16 | 1 | -1/+1 |
| | | |||||
* | | PyUnicode_DecodeUTF8 will always return a ready string | Benjamin Peterson | 2012-01-16 | 1 | -1/+2 |
| | | |||||
* | | rewrite such that this actually makes sense | Benjamin Peterson | 2012-01-16 | 1 | -1/+1 |
| | | |||||
* | | Issue #13629: Renumber the tokens in token.h to match the ↵ | Meador Inge | 2012-01-15 | 1 | -15/+15 |
|\ \ | |/ | | | | | _PyParser_TokenNames indexes. | ||||
| * | Issue #13629: Renumber the tokens in token.h to match the ↵ | Meador Inge | 2012-01-15 | 1 | -15/+15 |
| | | | | | | | | _PyParser_TokenNames indexes. | ||||
* | | make YieldFrom its own distinct from Yield (closes #13780) | Benjamin Peterson | 2012-01-14 | 4 | -21/+67 |
| | | |||||
* | | Fix compilation with C89 compilers (Windows...) | Amaury Forgeot d'Arc | 2012-01-13 | 1 | -1/+1 |
| | | |||||
* | | NULL and no exception set from tp_iternext means StopIteration | Benjamin Peterson | 2012-01-13 | 1 | -1/+2 |
| | | |||||
* | | Closes #13761: add a "flush" keyword argument to print(). | Georg Brandl | 2012-01-13 | 1 | -5/+19 |
| | | |||||
* | | Issue #13645: pyc files now contain the size of the corresponding source | Antoine Pitrou | 2012-01-13 | 3 | -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 Coghlan | 2012-01-13 | 7 | -115/+198 |
| | | |||||
* | | Issue #13748: Raw bytes literals can now be written with the `rb` prefix as ↵ | Antoine Pitrou | 2012-01-12 | 1 | -7/+12 |
| | | | | | | | | well as `br`. | ||||
* | | merge 3.2 | Benjamin Peterson | 2012-01-11 | 1 | -3/+1 |
|\ \ | |/ | |||||
| * | fold into one if statement | Benjamin Peterson | 2012-01-11 | 1 | -3/+1 |
| | | |||||
* | | remove some usage of Py_UNICODE_TOUPPER/LOWER | Benjamin Peterson | 2012-01-11 | 2 | -15/+21 |
| | | |||||
* | | Add a new PyUnicode_Fill() function | Victor Stinner | 2012-01-04 | 1 | -15/+6 |
| | | | | | | | | | | It is faster than the unicode_fill() function which was implemented in formatter_unicode.c. | ||||
* | | merge 3.2 | Benjamin Peterson | 2012-01-03 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | fix formatting | Benjamin Peterson | 2012-01-03 | 1 | -1/+1 |
| | | |||||
* | | merge 3.2 | Benjamin Peterson | 2011-12-31 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | add another year to glorious PSF IP | Benjamin Peterson | 2011-12-31 | 1 | -1/+1 |
| | | |||||
* | | Issue #13626: Add support for SSL Diffie-Hellman key exchange, through the | Antoine Pitrou | 2011-12-22 | 1 | -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 Pitrou | 2011-12-19 | 1 | -2/+2 |
| | | |||||
* | | (Merge 3.2) Handle correctly _Py_fopen() error: don't replace the exception | Victor Stinner | 2011-12-18 | 1 | -9/+21 |
|\ \ | |/ | |||||
* | | import.c now catchs _Py_stat() exceptions | Victor Stinner | 2011-12-18 | 2 | -11/+35 |
| | | | | | | | | _Py_stat() now returns -2 if an exception was raised. | ||||
* | | Issue #13560: Locale codec functions use the classic "errors" parameter, | Victor Stinner | 2011-12-17 | 1 | -1/+1 |
| | | | | | | | | | | | | instead of surrogateescape So it would be possible to support more error handlers later. | ||||
* | | Issue #13560: os.strerror() now uses the current locale encoding instead of ↵ | Victor Stinner | 2011-12-17 | 1 | -8/+9 |
| | | | | | | | | UTF-8 | ||||
* | | Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() | Victor Stinner | 2011-12-16 | 1 | -9/+16 |
| | | | | | | | | | | | | | | | | | | | | | | * PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() decode a string from the current locale encoding * _Py_char2wchar() writes an "error code" in the size argument to indicate if the function failed because of memory allocation failure or because of a decoding error. The function doesn't write the error message directly to stderr. * Fix time.strftime() (if wcsftime() is missing): decode strftime() result from the current locale encoding, not from the filesystem encoding. | ||||
* | | Issue #13575: there is only one class type. | Florent Xicluna | 2011-12-12 | 2 | -7/+2 |
| | | |||||
* | | Merge 3.2 | Florent Xicluna | 2011-12-09 | 1 | -1/+0 |
|\ \ | |/ |