Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle | Victor Stinner | 2013-10-29 | 7 | -46/+87 |
| | | | | | exceptions when merging fast locals into f_locals of a frame. PyEval_GetLocals() now raises an exception and return NULL on failure. | ||||
* | CJK codecs: less magical macros, semicolon is now explicit | Victor Stinner | 2013-10-28 | 8 | -104/+118 |
| | |||||
* | CJK codecs: less magic macros, require explicit semicolon | Victor Stinner | 2013-10-28 | 10 | -191/+234 |
| | |||||
* | CJK codecs: add newlines for readability | Victor Stinner | 2013-10-28 | 7 | -91/+188 |
| | |||||
* | CJK codecs: use less magic and more readable macros, write explicit if | Victor Stinner | 2013-10-28 | 7 | -34/+32 |
| | |||||
* | CJK codecs: remove unused TRYMAP_ENC_MPLANE macro | Victor Stinner | 2013-10-28 | 1 | -10/+0 |
| | |||||
* | Issue #18509: handle PyUnicode_Writer() error | Victor Stinner | 2013-10-28 | 7 | -84/+102 |
| | |||||
* | Merge. | Richard Oudkerk | 2013-10-28 | 2 | -5/+19 |
|\ | |||||
| * | Issue #19425 -- a pickling error should not cause pool to hang. | Richard Oudkerk | 2013-10-28 | 2 | -5/+19 |
| | | |||||
* | | #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor). | Nadeem Vawda | 2013-10-28 | 4 | -2/+57 |
|\ \ | |/ | | | | | | | | | | | The underlying C libraries provide no mechanism for serializing compressor and decompressor objects, so actually pickling these classes is impractical. Previously, these objects would be pickled without error, but attempting to use a deserialized instance would segfault the interpreter. | ||||
| * | #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor). | Nadeem Vawda | 2013-10-28 | 5 | -2/+61 |
| | | | | | | | | | | | | | | The underlying C libraries provide no mechanism for serializing compressor and decompressor objects, so actually pickling these classes is impractical. Previously, these objects would be pickled without error, but attempting to use a deserialized instance would segfault the interpreter. | ||||
* | | Issue #19421: add an unit test for warnings.warn() during finalization | Victor Stinner | 2013-10-28 | 1 | -0/+19 |
| | | |||||
* | | Issue #19421: fix a check in warnings.warn() to be able to use it during Python | Victor Stinner | 2013-10-28 | 1 | -1/+3 |
| | | | | | | | | | | | | | | finalization. sys.argv is set to None during Python finalization: add PyList_Check() to avoid a crash in PyList_Size(). | ||||
* | | null merge with 3.3 | Georg Brandl | 2013-10-28 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Add NEWS header for 3.3.4. | Georg Brandl | 2013-10-28 | 1 | -2/+13 |
| | | |||||
* | | Issue #19373: merge from 3.3 | Ned Deily | 2013-10-28 | 2 | -2/+19 |
|\ \ | |/ | |||||
| * | Issue #19373: Apply upstream change to Tk 8.5.15 fixing OS X 10.9 | Ned Deily | 2013-10-28 | 2 | -2/+19 |
| | | | | | | | | screen refresh problem. | ||||
* | | Issue 15792 Correct build options on Win64. Patch by Jeremy Kloth. | Tim Golden | 2013-10-27 | 3 | -2/+4 |
| | | |||||
* | | Issue14255 Don't flatten case of tempdir | Tim Golden | 2013-10-25 | 3 | -3/+19 |
| | | |||||
* | | Issue #18520: fix reference leak in _PySys_Init() | Victor Stinner | 2013-10-27 | 1 | -7/+18 |
| | | |||||
* | | Null merge | Serhiy Storchaka | 2013-10-27 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Fixed merge test for Tcl/Tk <8.5 (issue #18964). | Serhiy Storchaka | 2013-10-27 | 1 | -2/+5 |
| | | |||||
* | | Issue #19390: Argument Clinic no longer accepts malformed Python and C ids. | Larry Hastings | 2013-10-27 | 3 | -6/+38 |
| | | |||||
* | | merge with 3.3 | Georg Brandl | 2013-10-27 | 6 | -19/+20 |
|\ \ | |/ | |||||
| * | Added tag v3.3.3rc1 for changeset fd53c500f8b8 | Georg Brandl | 2013-10-27 | 1 | -0/+1 |
| | | |||||
| * | Skip overzealous test for existence of the online license.html for ↵v3.3.3rc1 | Georg Brandl | 2013-10-27 | 1 | -0/+2 |
| | | | | | | | | pre-release versions. | ||||
| * | Bump to 3.3.3rc1. | Georg Brandl | 2013-10-27 | 5 | -9/+9 |
| | | |||||
| * | Fix markup errors in the docs and amend suspicious ignores. | Georg Brandl | 2013-10-27 | 4 | -19/+17 |
| | | |||||
| * | Update pydoc topics. | Georg Brandl | 2013-10-27 | 1 | -15/+15 |
| | | |||||
* | | #19227: merge with 3.3 | Georg Brandl | 2013-10-27 | 2 | -7/+11 |
|\ \ | |/ | |||||
| * | Issue #19227: Try to fix deadlocks caused by re-seeding then OpenSSL | Georg Brandl | 2013-10-27 | 2 | -7/+11 |
| | | | | | | | | pseudo-random number generator on fork(). | ||||
* | | merge with 3.3 | Georg Brandl | 2013-10-27 | 13 | -38/+191 |
|\ \ | |/ | |||||
| * | merge | Georg Brandl | 2013-10-27 | 2 | -7/+6 |
| |\ | |||||
| * | | Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more than | Georg Brandl | 2013-10-27 | 4 | -1/+17 |
| | | | | | | | | | | | | 100 headers are read. Adapted from patch by Jyrki Pulliainen. | ||||
| * | | Issue #16040: CVE-2013-1752: nntplib: Limit maximum line lengths to 2048 to | Georg Brandl | 2013-10-27 | 3 | -1/+24 |
| | | | | | | | | | | | | | | | prevent readline() calls from consuming too much memory. Patch by Jyrki Pulliainen. | ||||
| * | | Issue #16041: CVE-2013-1752: poplib: Limit maximum line lengths to 2048 to | Georg Brandl | 2013-10-27 | 3 | -2/+19 |
| | | | | | | | | | | | | | | | prevent readline() calls from consuming too much memory. Patch by Jyrki Pulliainen. | ||||
| * | | Issue #17997: Change behavior of ``ssl.match_hostname()`` to follow RFC 6125, | Georg Brandl | 2013-10-27 | 4 | -32/+97 |
| | | | | | | | | | | | | | | | for security reasons. It now doesn't match multiple wildcards nor wildcards inside IDN fragments. | ||||
| * | | Issue #16039: CVE-2013-1752: Change use of readline in imaplib module to limit | Georg Brandl | 2013-10-27 | 3 | -4/+31 |
| | | | | | | | | | | | | line length. Patch by Emil Lind. | ||||
* | | | Issue #19329: Optimized compiling charsets in regular expressions. | Serhiy Storchaka | 2013-10-27 | 2 | -135/+101 |
| | | | |||||
* | | | Issue #19405: Fixed outdated comments in the _sre module. | Serhiy Storchaka | 2013-10-27 | 2 | -7/+6 |
|\ \ \ | | |/ | |/| | |||||
| * | | Issue #19405: Fixed outdated comments in the _sre module. | Serhiy Storchaka | 2013-10-27 | 2 | -7/+6 |
| |/ | |||||
* | | Issue Issue #15663: merge from 3.3 | Ned Deily | 2013-10-27 | 2 | -1/+7 |
|\ \ | |/ | |||||
| * | Issue #15663: Force IDLE.app to run the GUI process in 32-bit mode. | Ned Deily | 2013-10-27 | 2 | -1/+7 |
| | | | | | | | | | | This mitigates the current Aqua Tk refresh problem on OS X 10.9 by backporting 2.7.x behavior and is transparent to the user. | ||||
* | | Mitigate #19412: restore test skips for --without-doc-strings | Nick Coghlan | 2013-10-27 | 1 | -1/+6 |
| | | |||||
* | | merge 3.3 (#19393) | Benjamin Peterson | 2013-10-26 | 3 | -5/+5 |
|\ \ | |/ | |||||
| * | just return toplevel symbol table rather than all blocks (closes #19393) | Benjamin Peterson | 2013-10-26 | 3 | -5/+5 |
| | | |||||
* | | Changed a comment to end grammar bikeshedding ;-) | Tim Peters | 2013-10-26 | 1 | -1/+1 |
| | | |||||
* | | Assorted 3.4 What's New updates | Nick Coghlan | 2013-10-26 | 2 | -59/+116 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | - cross-references and attributions for inspect changes - note improvements to inspect and pydoc handling of metaclasses and dynamic attributes (courtesy of the enum PEP) - group all CPython implementation specific changes into a common section - add see also links for most of the PEPs - fix the see also link for the release PEP - add suitable caveats on Argument Clinic inclusion - clarify the change to __wrapped__ handling | ||||
* | | Close #19409: add missing import in pkgutil | Nick Coghlan | 2013-10-26 | 1 | -0/+1 |
| | | |||||
* | | Issue #19330: Handle the no-docstrings case in tests | Nick Coghlan | 2013-10-26 | 2 | -19/+19 |
| | |