summaryrefslogtreecommitdiffstats
path: root/Misc/ACKS
Commit message (Collapse)AuthorAgeFilesLines
* Issue #5765: Apply a hard recursion limit in the compilerNick Coghlan2012-11-041-0/+1
| | | | | | | Previously, excessive nesting in expressions would blow the stack and segfault the interpreter. Now, a hard limit based on the configured recursion limit and a hardcoded scaling factor is applied.
* Add examples for opener argument of open (#13424).Éric Araujo2012-11-031-0/+1
| | | | Patch by Guillaume Pratte.
* #16152: merge with 3.2.Ezio Melotti2012-11-031-0/+1
|\
| * #16152: fix tokenize to ignore whitespace at the end of the code when no ↵Ezio Melotti2012-11-031-0/+1
| | | | | | | | newline is found. Patch by Ned Batchelder.
* | #12890: fix test on windowsR David Murray2012-10-311-0/+1
| | | | | | | | Patch by Stephen Tonkin.
* | #14897: Enhance error messages of struct.pack and struct.pack_intoPetri Lehtinen2012-10-291-0/+1
|\ \ | |/ | | | | Patch by Matti Mäki.
| * #14897: Enhance error messages of struct.pack and struct.pack_intoPetri Lehtinen2012-10-291-1/+2
| | | | | | | | Patch by Matti Mäki.
* | merge #12890: don't emit <p> tags in text mode when logdir specified.R David Murray2012-10-271-0/+1
|\ \ | |/ | | | | Patch by Jeff McNeil.
| * #12890: don't emit <p> tags in text mode when logdir specified.R David Murray2012-10-271-0/+1
| | | | | | | | Patch by Jeff McNeil.
* | #16307: Fix multiprocessing.Pool.map_async not calling its callbacksHynek Schlawack2012-10-271-0/+1
| | | | | | | | Patch by Janne Karila.
* | #16210: merge with 3.2.Ezio Melotti2012-10-241-0/+1
|\ \ | |/
| * #16210: combine the two type() docs. Patch by Pete Sevander.Ezio Melotti2012-10-241-0/+1
| |
* | Issue #16241: document -X faulthandler command line option.Andrew Svetlov2012-10-231-0/+1
| | | | | | | | Patch by Marek Šuppa.
* | Issue #16220: wsgiref now always calls close() on an iterable response.Antoine Pitrou2012-10-211-0/+1
|\ \ | |/ | | | | Patch by Brent Tubbs.
| * Issue #16220: wsgiref now always calls close() on an iterable response.Antoine Pitrou2012-10-211-0/+1
| | | | | | | | Patch by Brent Tubbs.
* | Merge issue #9583: Document startup option/environment interaction.Andrew Svetlov2012-10-171-0/+1
|\ \ | |/ | | | | Patch by Todd Rovito.
| * Issue #9583: Document startup option/environment interaction.Andrew Svetlov2012-10-171-0/+1
| | | | | | | | Patch by Todd Rovito.
* | Merge issue #14900: Distuguish call count and primitive call count in pstat ↵Andrew Svetlov2012-10-071-0/+1
|\ \ | |/ | | | | | | | | output. Patch by Arne Babenhauserheide.
| * Issue #14900: Distuguish call count and primitive call count in pstat output.Andrew Svetlov2012-10-071-0/+1
| | | | | | | | Patch by Arne Babenhauserheide.
* | Fix typo in documentation for collections.ChainMap, thanks to Olivier ↵Andrew Svetlov2012-10-041-0/+1
| | | | | | | | Bernard from docs@
* | MERGE: Closes #16112: platform.architecture does not correctly escape ↵Jesus Cea2012-10-041-0/+1
|\ \ | |/ | | | | argument to /usr/bin/file
| * Closes #16112: platform.architecture does not correctly escape argument to ↵Jesus Cea2012-10-041-0/+1
| | | | | | | | /usr/bin/file
* | MERGE: Fix Misc/ACKS alphabetic orderJesus Cea2012-10-031-1/+1
|\ \ | |/
| * Fix Misc/ACKS alphabetic orderJesus Cea2012-10-031-1/+1
| |
* | MERGE: Closes #15897: zipimport.c doesn't check return value of fseek()Jesus Cea2012-10-031-0/+1
|\ \ | |/
| * Closes #15897: zipimport.c doesn't check return value of fseek()Jesus Cea2012-10-031-0/+1
| |
* | #15437, #15439: merge with 3.2.Ezio Melotti2012-09-131-3/+116
|\ \ | |/
| * #15437, #15439: merge Doc/ACKS.txt with Misc/ACKS and modify Doc/about.rst ↵Ezio Melotti2012-09-131-4/+117
| | | | | | | | accordingly.
* | MERGE: #15676: Proper attribution in Misc/ACKSJesus Cea2012-09-101-0/+1
|\ \ | |/
| * #15676: Proper attribution in Misc/ACKSJesus Cea2012-09-101-0/+1
| |
* | Issue #15841: The readable(), writable() and seekable() methods of BytesIOAntoine Pitrou2012-09-051-0/+1
|\ \ | |/ | | | | | | and StringIO objects now raise ValueError when the object has been closed. Patch by Alessandro Moura.
| * Issue #15841: The readable(), writable() and seekable() methods of BytesIOAntoine Pitrou2012-09-051-0/+1
| | | | | | | | | | and StringIO objects now raise ValueError when the object has been closed. Patch by Alessandro Moura.
* | Merge #12776,#11839: call argparse type function only once.R David Murray2012-09-011-0/+1
|\ \ | |/ | | | | | | | | | | | | | | Before, the type function was called twice in the case where the default was specified and the argument was given as well. This was especially problematic for the FileType type, as a default file would always be opened, even if a file argument was specified on the command line. Patch by Arnaud Fontaine, with additional test by Mike Meyer.
| * #12776,#11839: call argparse type function only once.R David Murray2012-09-011-0/+1
| | | | | | | | | | | | | | | | | | Before, the type function was called twice in the case where the default was specified and the argument was given as well. This was especially problematic for the FileType type, as a default file would always be opened, even if a file argument was specified on the command line. Patch by Arnaud Fontaine, with additional test by Mike Meyer.
* | Merge #15249: Mangle From lines correctly when body contains invalid bytes.R David Murray2012-08-241-0/+1
|\ \ | |/ | | | | Fix by Colin Su. Test by me, based on a test written by Petri Lehtinen.
| * #15249: Mangle From lines correctly when body contains invalid bytes.R David Murray2012-08-241-0/+1
| | | | | | | | Fix by Colin Su. Test by me, based on a test written by Petri Lehtinen.
| * Issue #14954: Clarify the interaction of weak references and garbage collection.Antoine Pitrou2012-08-201-0/+1
| | | | | | | | Patch by Ethan Furman.
* | #15199: Fix JavaScript's default MIME type to application/javascriptPetri Lehtinen2012-08-201-0/+1
|\ \ | |/
| * #15199: Fix JavaScript's default MIME type to application/javascriptPetri Lehtinen2012-08-201-0/+1
| |
| * Issue #15726: Fix incorrect bounds checking in PyState_FindModule.Antoine Pitrou2012-08-201-0/+1
| | | | | | | | Patch by Robin Schreiber.
* | Issue #12643: Respect sys.excepthook in code.InteractiveConsoleNick Coghlan2012-08-201-0/+1
| |
* | Issue #15615: Add some tests for the json module's handling of invalid input ↵Antoine Pitrou2012-08-181-0/+1
|\ \ | |/ | | | | | | | | data. Patch by Kushal Das.
| * Issue #15615: Add some tests for the json module's handling of invalid input ↵Antoine Pitrou2012-08-181-0/+1
| | | | | | | | | | | | data. Patch by Kushal Das.
* | Add Daniel Ellis to Misc/ACKSEli Bendersky2012-08-141-0/+1
| |
* | Issue #15444: Use proper spelling for non-ASCII contributor names.Antoine Pitrou2012-08-111-1/+1
|\ \ | |/ | | | | Patch by Serhiy Storchaka.
| * Issue #15444: Use proper spelling for non-ASCII contributor names.Antoine Pitrou2012-08-111-1/+1
| | | | | | | | Patch by Serhiy Storchaka.
* | Issue #15424: Add a __sizeof__ implementation for array objects.Meador Inge2012-08-111-0/+1
|\ \ | |/ | | | | Patch by Ludwig Hähne.
| * Issue #15424: Add a __sizeof__ implementation for array objects.Meador Inge2012-08-111-0/+1
| | | | | | | | Patch by Ludwig Hähne.
| * Issue #15501: Document exception classes in subprocess module.Andrew Svetlov2012-08-091-0/+1
| | | | | | | | Initial patch by Anton Barkovsky.
* | Issue #15501: Document exception classes in subprocess module.Andrew Svetlov2012-08-091-0/+1
| | | | | | | | Initial patch by Anton Barkovsky.