summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #18432: Fix unintended API change in the sched moduleRaymond Hettinger2013-07-141-0/+3
|
* Issue #18279: Add tests for idlelib/RstripExtension.py. Original patch byTerry Jan Reedy2013-07-132-0/+6
| | | | | Phil Webster. With that available, modify RstripExtension.py to stop deleting null slices, which caused a file to be marked as changed when it was not.
* #18431: Decode encoded words in atoms in new email parser.R David Murray2013-07-121-0/+3
| | | | | | There is more to be done here in terms of accepting RFC invalid input that some mailers accept, but this covers the valid RFC places where encoded words can occur in structured headers.
* #18044: Fix parsing of encoded words of the form =?utf8?q?=XX...?=R David Murray2013-07-111-0/+4
| | | | | | | | | | The problem was I was only checking for decimal digits after the third '?', not for *hex* digits :(. This changeset also fixes a couple of comment typos, deletes an unused function relating to encoded word parsing, and removed an invalid 'if' test from the folding function that was revealed by the tests written to validate this issue.
* Issue #17872: Fix a segfault in marshal.load() when input stream returnsSerhiy Storchaka2013-07-111-0/+3
| | | | more bytes than requested.
* Issue #18101: Tcl.split() now process strings nested in a tuple as itSerhiy Storchaka2013-07-111-0/+3
| | | | | | do with byte strings. Added tests for Tcl.split() and Tcl.splitline().
* #17987: properly document support.captured_xxx.R David Murray2013-07-111-0/+1
| | | | Patch by Dmi Baranov.
* Issue #18426: Fix NULL pointer dereference in C extension import whenChristian Heimes2013-07-111-0/+3
| | | | PyModule_GetDef() returns an error.
* #17198: Fix a NameError in the dbm module. Patch by Valentina Mukhamedzhanova.Ezio Melotti2013-07-071-0/+3
|
* Issue #18013: Fix cgi.FieldStorage to parse the W3C sample form.Florent Xicluna2013-07-071-0/+2
|
* Issue #18351: Fix various issues withBrett Cannon2013-07-062-0/+7
| | | | | | | | | importlib._bootstrap._get_sourcefile(). Thanks to its only use by the C API, it was never properly tested until now. Thanks to Neal Norwitz for discovering the bug and Madison May for the patch.
* #18380: pass regex flags to the right argument. Patch by Valentina ↵Ezio Melotti2013-07-061-0/+1
| | | | Mukhamedzhanova.
* Issue #12990: The "Python Launcher" on OSX could not launch python scripts ↵Ronald Oussoren2013-07-061-0/+3
| | | | that have paths that include wide characters.
* Issue #18375: Assume --randomize when --randseed is used for running the ↵Florent Xicluna2013-07-061-0/+3
| | | | testsuite.
* Issue #18347: ElementTree's html serializer now preserves the case of ↵Christian Heimes2013-07-041-0/+3
| | | | closing tags.
* Issue #11185: Fix test_wait4 under AIX. Patch by Sébastien Sablé.Antoine Pitrou2013-07-041-0/+2
|
* Issue #17261: Ensure multiprocessing's proxies use proper address.Richard Oudkerk2013-07-021-0/+2
|
* Issue #18343: faulthandler.register() now keeps the previous signal handlerVictor Stinner2013-07-011-0/+4
| | | | | when the function is called twice, so faulthandler.unregister() restores correctly the original signal handler.
* Issue #18328: Reorder ops in PyThreadState_Delete*() functions. Now theChristian Heimes2013-07-011-0/+3
| | | | | | tstate is first removed from TLS and then deallocated. CID 1019639 (#1 of 1): Use after free (USE_AFTER_FREE) use_after_free: Using freed pointer tstate.
* Issue #17097: Make multiprocessing ignore EINTR.Richard Oudkerk2013-07-011-0/+2
|
* Issue #18339: Negative ints keys in unpickler.memo dict no longer cause aChristian Heimes2013-07-011-0/+3
| | | | segfault inside the _pickle C extension.
* Issue #7136: In the Idle File menu, "New Window" is renamed "New File".Terry Jan Reedy2013-07-011-0/+3
| | | | Patch by Tal Einat, Roget Serwy, and Todd Rovito.
* Issue #18224: Removed pydoc script from created venv, as it causes problems ↵Vinay Sajip2013-06-301-0/+3
| | | | on Windows and adds no value over and above python -m pydoc ...
* #18155: Regex-escape delimiter, in case it is a regex special char.R David Murray2013-06-292-1/+6
| | | | Patch by Vajrasky Kok, with slight modification to the tests by me.
* Issue #18315: Improve fileinput docs by adding 'bufsize' where missing andTerry Jan Reedy2013-06-281-0/+1
| | | | | replacing redundant signature in input() docstring with one-line summary. Original patch by Terrel Shumway.
* #14360: Add news item.R David Murray2013-06-281-0/+3
|
* Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if the inputVictor Stinner2013-06-241-3/+4
| | | | | | string in longer than 2 gigabytes, and ssl.SSLContext.load_cert_chain() raises a ValueError if the password is longer than 2 gigabytes. The ssl module does not support partial write.
* Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raiseSerhiy Storchaka2013-06-231-0/+3
| | | | OverflowError when an argument of %c format is out of range.
* Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write()Victor Stinner2013-06-231-0/+4
| | | | | and in ssl.SSLContext.load_cert_chain() for strings and passwords longer than 2 gigabytes.
* Issue #18137: Detect integer overflow on precision in float.__format__() andVictor Stinner2013-06-231-0/+3
| | | | complex.__format__().
* Add -b and -X options to python man page.Senthil Kumaran2013-06-201-4/+18
| | | | Patch contributed by Corey Brune.
* fix libffi build on AIX (closes #18248)Benjamin Peterson2013-06-191-0/+2
|
* merge headsChristian Heimes2013-06-192-0/+4
|\
| * Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn.Antoine Pitrou2013-06-182-0/+4
| |
* | Issue #18259: Declare sethostname in socketmodule.c for AIXChristian Heimes2013-06-191-0/+2
|/
* Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-dataSerhiy Storchaka2013-06-171-0/+3
| | | | when \r\n appears at end of 65535 bytes without other newlines.
* news entry for subprocess double close fix.Gregory P. Smith2013-06-161-0/+4
|
* #18113: Objects associated to a curses.panel object with set_userptr() were ↵Andrew Kuchling2013-06-151-0/+3
| | | | | | leaked. Reported by Atsuo Ishimoto.
* Drop some dead imports of impBrett Cannon2013-06-151-0/+2
|
* Issue #15172: Document NASM 2.10+ as requirement for building OpenSSL 1.0.1 ↵Christian Heimes2013-06-141-0/+5
| | | | on Windows
* #18196: Avoid displaying spurious SystemExit tracebacks.Roger Serwy2013-06-121-0/+2
|
* #5492: Avoid traceback when exiting IDLE caused by a race condition.Roger Serwy2013-06-121-0/+2
|
* #17511: Keep IDLE find dialog open after clicking "Find Next".Roger Serwy2013-06-112-0/+4
| | | | Original patch by Sarah K.
* remove MAX_MAXCHAR because it's unsafe for computing maximum codepoitn value ↵Benjamin Peterson2013-06-101-0/+3
| | | | (see #18183)
* Issue #18180: Fix ref leak in _PyImport_GetDynLoadWindows().Richard Oudkerk2013-06-101-0/+2
|
* Issue #16102: Make uuid._netbios_getnode() work again on Python 3.Serhiy Storchaka2013-06-091-0/+2
|
* Issue #15239: Make mkstringprep.py work again on Python 3.Serhiy Storchaka2013-06-091-0/+5
|
* Issue #18038: SyntaxError raised during compilation sources with illegalSerhiy Storchaka2013-06-091-0/+3
| | | | encoding now always contains an encoding name.
* #18126: update NumPy links in the documentation. Patch by Yury V. Zaytsev.Ezio Melotti2013-06-081-0/+1
|
* #17691: test_univnewlines now works with unittest test discovery. Patch by ↵Ezio Melotti2013-06-081-0/+3
| | | | Zachary Ware.