summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22609: Constructor and the update method of collections.UserDict nowSerhiy Storchaka2015-09-291-0/+3
| | | | accept the self keyword argument.
* Remove indent in news item. Error when building 3.x docs.Terry Jan Reedy2015-09-291-1/+1
|
* Add recent IDLE NEWS items. Move Build sectios down.Terry Jan Reedy2015-09-291-15/+49
|
* Issue #25203: Failed readline.set_completer_delims() no longer left theSerhiy Storchaka2015-09-271-0/+3
| | | | module in inconsistent state.
* Issue #25135: Avoid possible reentrancy issues in deque_clear.Raymond Hettinger2015-09-261-0/+3
|
* Issue #19143: platform module now reads Windows version from kernel32.dll to ↵Steve Dower2015-09-231-0/+3
| | | | avoid compatibility shims.
* Issue #16893: Add idlelib.help.copy_strip() to copy-rstrip Doc/.../idle.html.Terry Jan Reedy2015-09-221-2/+2
| | | | Change destination to help.html. Adjust NEWS entries.
* Issue #24861: add Idle news items and correct previous errors.Terry Jan Reedy2015-09-211-2/+5
|
* Add NEWS items for Idle.Terry Jan Reedy2015-09-211-0/+15
|
* Give proper credit for issue #24915Brett Cannon2015-09-182-1/+3
|
* Issue #24915: Make PGO builds support Clang and use the test suite forBrett Cannon2015-09-181-0/+3
| | | | | | profile data. Thanks to Alecsandru Patrascu of Intel for the initial patch.
* Issue #24684: socket.socket.getaddrinfo() now callsVictor Stinner2015-09-111-0/+6
| | | | | | | PyUnicode_AsEncodedString() instead of calling the encode() method of the host, to handle correctly custom unicode string with an encode() method which doesn't return a byte string. The encoder of the IDNA codec is now called directly instead of calling the encode() method of the string.
* Issue #25030: Do not document seek() as if it accepts keyword argumentsMartin Panter2015-09-111-0/+1
| | | | Patch from Shiyao Ma.
* Issue #25022: Add NEWS, fix docs to not mention the old example.Zachary Ware2015-09-101-0/+5
|
* Issue #24982: shutil.make_archive() with the "zip" format now adds entriesSerhiy Storchaka2015-09-081-0/+3
| | | | | for directories (including empty directories) in ZIP file. Added test for comparing shutil.make_archive() with the "zip" command.
* Issue #23406: Clarify documentation on multiplying a sequenceMartin Panter2015-09-071-0/+1
| | | | Patch from Matheus Vieira Portela.
* Issue #17849: Raise sensible exception for invalid HTTP tunnel responseMartin Panter2015-09-072-0/+5
| | | | Initial patch from Cory Benfield.
* Issue #16180: Exit pdb if file has syntax error, instead of trapping userTerry Jan Reedy2015-09-051-0/+3
| | | | in an infinite loop. Patch by Xavier de Gaye.
* Issue #24986: Allow building Python without external libraries on WindowsZachary Ware2015-09-041-0/+3
| | | | | | | | | | This modifies the behavior of the '-e' flag to PCbuild\build.bat: when '-e' is not supplied, no attempt will be made to build extension modules that require external libraries, even if the external libraries are present. Also adds '--no-<module>' flags to PCbuild\build.bat, where '<module>' is one of 'ssl', 'tkinter', or 'bsddb', to allow skipping just those modules (if '-e' is given).
* Allow PCbuild\rt.bat to accept unlimited arguments for regrtest.Zachary Ware2015-09-041-0/+3
| | | | | This makes it possible to pass more than 7 tests by name through Tools\buildbot\test.bat
* Issue #24952: Clarify default argument of stack_size() in threading, threadMartin Panter2015-08-312-0/+4
| | | | Patch from Mattip.
* Merge 2.7 heads.Robert Collins2015-08-242-23/+44
|\
| * Idle NEWS entries.Terry Jan Reedy2015-08-171-0/+13
| |
| * Issue #23672: ACKSTerry Jan Reedy2015-08-171-0/+1
| |
| * #21167: Fix definition of NAN when ICC used without -fp-model strict.R David Murray2015-08-132-0/+4
| | | | | | | | Patch from Chris Hogan of Intel, reviewed by Mark Dickinson.
| * Fixed doubled spaces in Misc/NEWS.Serhiy Storchaka2015-08-091-23/+23
| |
| * Issue #24634: Importing uuid should not try to load libc on WindowsSteve Dower2015-07-141-0/+2
| |
* | Issue #22812: Fix unittest discovery examples.Robert Collins2015-08-242-0/+4
|/ | | | Patch from Pam McA'Nulty.
* Issue #24751: When running regrtest with '-w', don't fail if re-run succeeds.Zachary Ware2015-08-051-0/+7
|
* Issue #20769: Improve reload() docs. Patch by Dorian Pula.Robert Collins2015-08-042-0/+3
|
* Issue #23652: Make the select module compile against LSB headers.Zachary Ware2015-08-022-0/+5
| | | | Initial patch by Matt Frank.
* Issue 24745: Add ACKS entry.Terry Jan Reedy2015-08-011-0/+1
|
* Issue #21192: acks for 2.7Terry Jan Reedy2015-08-011-0/+1
|
* Issue #15138: Speed up base64.urlsafe_b64* considerably (2.7 backport).Guido van Rossum2015-07-301-0/+2
|
* Issue #23589: Remove duplicate sentence from the FAQ. Patch by Yongzhi Pan.Robert Collins2015-07-291-0/+2
|
* Issue #23319: Add Matthieu Gautier to Misc/ACKSVictor Stinner2015-07-291-0/+1
|
* Issue #23319: Fix ctypes.BigEndianStructure, swap correctly bytes. PatchVictor Stinner2015-07-291-0/+3
| | | | written by Matthieu Gautier.
* Issue #23254: Document how to close the TCPServer listening socket.Robert Collins2015-07-291-0/+3
| | | | Patch from Martin Panter.
* Issue #17527: Add PATCH to wsgiref.validator. Patch from Luca Sbardella.Robert Collins2015-07-262-0/+3
|
* Issue #24613: Calling array.fromstring() with self is no longer allowedSerhiy Storchaka2015-07-261-0/+3
| | | | to prevent the use-after-free error. Patch by John Leitch.
* proper overflow checks for mymemreplace (closes #24708)Benjamin Peterson2015-07-251-0/+2
|
* Issue #24620: Random.setstate() now validates the value of state last element.Serhiy Storchaka2015-07-241-0/+2
|
* Issue #13938: 2to3 converts StringTypes to a tuple. Patch from Mark Hammond.Robert Collins2015-07-221-0/+2
|
* Issue #24603: Update Windows build to use OpenSSL 1.0.2dZachary Ware2015-07-221-2/+2
|
* Issue #24568: fix typo.Raymond Hettinger2015-07-181-1/+1
|
* Close #24508: Backport the 3.5 MSBuild project files.Zachary Ware2015-07-161-0/+4
| | | | | | | The old project files move to PC/VS9.0 and remain supported. VS2008 is still required to build 2.7; VS2010 (or later, plus Windows SDK 7.1) is *also* required to use the new project files.
* Issue #24611: Fixed compiling the posix module on non-Windows platformsSerhiy Storchaka2015-07-121-0/+3
| | | | without mknod() or makedev() (e.g. on Unixware).
* Corrected empty lines and removed BOM in Misc/NEWS.Serhiy Storchaka2015-07-061-2/+3
|
* Issue #18684: Fixed reading out of the buffer in the re module.Serhiy Storchaka2015-07-061-0/+2
|
* Issue #24259: tarfile now raises a ReadError if an archive is truncated ↵Lars Gustäbel2015-07-061-0/+3
| | | | inside a data segment.