Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Issue #21827: Fixed textwrap.dedent() for the case when largest common | Serhiy Storchaka | 2015-10-28 | 2 | -0/+5 | |
| | | | | | whitespace is a substring of smallest leading whitespace. Based on patch by Robert Li. | |||||
* | Issue #25461: Rephrase os.walk() doc | Victor Stinner | 2015-10-23 | 1 | -0/+1 | |
| | | | | Patch written by Bernt Røskar Brenna. | |||||
* | Issue #21709: Fix the logging module to not depend upon __file__ being set | Gregory P. Smith | 2015-10-22 | 1 | -0/+5 | |
| | | | | | | | | | properly to get the filename of its caller from the stack. This allows it to work if run in a frozen or embedded environment where the module's .__file__ attribute does not match its code object's .co_filename. This same much simpler always correct approach has already been deployed and used widely in Python 3.4 per the issue referenced above. | |||||
* | Issue #25161: Add full stops in documentation; patch by Takase Arihiro | Martin Panter | 2015-10-10 | 1 | -0/+1 | |
| | ||||||
* | prevent unacceptable bases from becoming bases through multiple inheritance ↵ | Benjamin Peterson | 2015-10-07 | 1 | -0/+3 | |
| | | | | (#24806) | |||||
* | reinitialize an Event's Condition with a regular lock (closes #25319) | Benjamin Peterson | 2015-10-06 | 2 | -0/+4 | |
| | ||||||
* | Issue #24820: Update IDLE NEWS items. | Terry Jan Reedy | 2015-10-04 | 1 | -0/+19 | |
| | ||||||
* | Issue #24657: Prevent CGIRequestHandler from collapsing the URL query | Martin Panter | 2015-10-03 | 1 | -0/+3 | |
| | | | | | Initial patch from Xiang Zhang. Also fix out-of-date _url_collapse_path() doc string. | |||||
* | Issue #25232: Fix CGIRequestHandler's splitting of URL query | Martin Panter | 2015-10-03 | 2 | -0/+4 | |
| | | | | Patch from Xiang Zhang. | |||||
* | Issue #24848: Fixed bugs in UTF-7 decoding of misformed data: | Serhiy Storchaka | 2015-10-02 | 1 | -0/+2 | |
| | | | | | 1. Non-ASCII bytes were accepted after shift sequence. 2. A low surrogate could be emitted in case of error in high surrogate. | |||||
* | Issue #25003: os.urandom() doesn't use getentropy() on Solaris because | Victor Stinner | 2015-10-01 | 1 | -0/+4 | |
| | | | | | getentropy() is blocking, whereas os.urandom() should not block. getentropy() is supported since Solaris 11.3. | |||||
* | Issue #22958: Constructor and update method of weakref.WeakValueDictionary | Serhiy Storchaka | 2015-09-29 | 1 | -0/+3 | |
| | | | | now accept the self keyword argument. | |||||
* | Issue #22609: Constructor and the update method of collections.UserDict now | Serhiy Storchaka | 2015-09-29 | 1 | -0/+3 | |
| | | | | accept the self keyword argument. | |||||
* | Remove indent in news item. Error when building 3.x docs. | Terry Jan Reedy | 2015-09-29 | 1 | -1/+1 | |
| | ||||||
* | Add recent IDLE NEWS items. Move Build sectios down. | Terry Jan Reedy | 2015-09-29 | 1 | -15/+49 | |
| | ||||||
* | Issue #25203: Failed readline.set_completer_delims() no longer left the | Serhiy Storchaka | 2015-09-27 | 1 | -0/+3 | |
| | | | | module in inconsistent state. | |||||
* | Issue #25135: Avoid possible reentrancy issues in deque_clear. | Raymond Hettinger | 2015-09-26 | 1 | -0/+3 | |
| | ||||||
* | Issue #19143: platform module now reads Windows version from kernel32.dll to ↵ | Steve Dower | 2015-09-23 | 1 | -0/+3 | |
| | | | | avoid compatibility shims. | |||||
* | Issue #16893: Add idlelib.help.copy_strip() to copy-rstrip Doc/.../idle.html. | Terry Jan Reedy | 2015-09-22 | 1 | -2/+2 | |
| | | | | Change destination to help.html. Adjust NEWS entries. | |||||
* | Issue #24861: add Idle news items and correct previous errors. | Terry Jan Reedy | 2015-09-21 | 1 | -2/+5 | |
| | ||||||
* | Add NEWS items for Idle. | Terry Jan Reedy | 2015-09-21 | 1 | -0/+15 | |
| | ||||||
* | Give proper credit for issue #24915 | Brett Cannon | 2015-09-18 | 2 | -1/+3 | |
| | ||||||
* | Issue #24915: Make PGO builds support Clang and use the test suite for | Brett Cannon | 2015-09-18 | 1 | -0/+3 | |
| | | | | | | profile data. Thanks to Alecsandru Patrascu of Intel for the initial patch. | |||||
* | Issue #24684: socket.socket.getaddrinfo() now calls | Victor Stinner | 2015-09-11 | 1 | -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 arguments | Martin Panter | 2015-09-11 | 1 | -0/+1 | |
| | | | | Patch from Shiyao Ma. | |||||
* | Issue #25022: Add NEWS, fix docs to not mention the old example. | Zachary Ware | 2015-09-10 | 1 | -0/+5 | |
| | ||||||
* | Issue #24982: shutil.make_archive() with the "zip" format now adds entries | Serhiy Storchaka | 2015-09-08 | 1 | -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 sequence | Martin Panter | 2015-09-07 | 1 | -0/+1 | |
| | | | | Patch from Matheus Vieira Portela. | |||||
* | Issue #17849: Raise sensible exception for invalid HTTP tunnel response | Martin Panter | 2015-09-07 | 2 | -0/+5 | |
| | | | | Initial patch from Cory Benfield. | |||||
* | Issue #16180: Exit pdb if file has syntax error, instead of trapping user | Terry Jan Reedy | 2015-09-05 | 1 | -0/+3 | |
| | | | | in an infinite loop. Patch by Xavier de Gaye. | |||||
* | Issue #24986: Allow building Python without external libraries on Windows | Zachary Ware | 2015-09-04 | 1 | -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 Ware | 2015-09-04 | 1 | -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, thread | Martin Panter | 2015-08-31 | 2 | -0/+4 | |
| | | | | Patch from Mattip. | |||||
* | Merge 2.7 heads. | Robert Collins | 2015-08-24 | 2 | -23/+44 | |
|\ | ||||||
| * | Idle NEWS entries. | Terry Jan Reedy | 2015-08-17 | 1 | -0/+13 | |
| | | ||||||
| * | Issue #23672: ACKS | Terry Jan Reedy | 2015-08-17 | 1 | -0/+1 | |
| | | ||||||
| * | #21167: Fix definition of NAN when ICC used without -fp-model strict. | R David Murray | 2015-08-13 | 2 | -0/+4 | |
| | | | | | | | | Patch from Chris Hogan of Intel, reviewed by Mark Dickinson. | |||||
| * | Fixed doubled spaces in Misc/NEWS. | Serhiy Storchaka | 2015-08-09 | 1 | -23/+23 | |
| | | ||||||
| * | Issue #24634: Importing uuid should not try to load libc on Windows | Steve Dower | 2015-07-14 | 1 | -0/+2 | |
| | | ||||||
* | | Issue #22812: Fix unittest discovery examples. | Robert Collins | 2015-08-24 | 2 | -0/+4 | |
|/ | | | | Patch from Pam McA'Nulty. | |||||
* | Issue #24751: When running regrtest with '-w', don't fail if re-run succeeds. | Zachary Ware | 2015-08-05 | 1 | -0/+7 | |
| | ||||||
* | Issue #20769: Improve reload() docs. Patch by Dorian Pula. | Robert Collins | 2015-08-04 | 2 | -0/+3 | |
| | ||||||
* | Issue #23652: Make the select module compile against LSB headers. | Zachary Ware | 2015-08-02 | 2 | -0/+5 | |
| | | | | Initial patch by Matt Frank. | |||||
* | Issue 24745: Add ACKS entry. | Terry Jan Reedy | 2015-08-01 | 1 | -0/+1 | |
| | ||||||
* | Issue #21192: acks for 2.7 | Terry Jan Reedy | 2015-08-01 | 1 | -0/+1 | |
| | ||||||
* | Issue #15138: Speed up base64.urlsafe_b64* considerably (2.7 backport). | Guido van Rossum | 2015-07-30 | 1 | -0/+2 | |
| | ||||||
* | Issue #23589: Remove duplicate sentence from the FAQ. Patch by Yongzhi Pan. | Robert Collins | 2015-07-29 | 1 | -0/+2 | |
| | ||||||
* | Issue #23319: Add Matthieu Gautier to Misc/ACKS | Victor Stinner | 2015-07-29 | 1 | -0/+1 | |
| | ||||||
* | Issue #23319: Fix ctypes.BigEndianStructure, swap correctly bytes. Patch | Victor Stinner | 2015-07-29 | 1 | -0/+3 | |
| | | | | written by Matthieu Gautier. | |||||
* | Issue #23254: Document how to close the TCPServer listening socket. | Robert Collins | 2015-07-29 | 1 | -0/+3 | |
| | | | | Patch from Martin Panter. |