summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
...
| * allow longs as indexes to group() (closes #22530)Benjamin Peterson2014-10-011-0/+3
| |
| * use Py_ssize_t for file offset and length computations in iteration (closes ↵Benjamin Peterson2014-10-011-0/+2
| | | | | | | | #22526)
| * clear BufferedRWPair weakrefs on deallocation (closes #22517)Benjamin Peterson2014-09-301-0/+3
| |
| * fix overflow checking in PyString_Repr (closes #22519)Benjamin Peterson2014-09-291-0/+2
| |
| * add NEWS note for #22518Benjamin Peterson2014-09-291-0/+2
| |
| * give exception a nice message (closes #22379)Benjamin Peterson2014-09-282-0/+4
| | | | | | | | Patch by Yongzhi Pan.
| * #10510: make distuitls upload/register use HTML standards compliant CRLF.R David Murray2014-09-272-0/+4
| | | | | | | | Patch by Ian Cordasco, approved by Éric Araujo.
| * Issue #16537: Check whether self.extensions is empty in setup.py.Berker Peksag2014-09-272-0/+4
| | | | | | | | Patch by Jonathan Hosmer.
| * Issue #9850: Fixed macpath.join() for empty first component. Patch bySerhiy Storchaka2014-09-271-0/+3
| | | | | | | | Oleg Oshmyan.
| * Issue #17462: Add a paragraph about advantages of argparse over optparse.Berker Peksag2014-09-261-0/+1
| | | | | | | | Patch by Anastasia Filatova.
| * Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods.Berker Peksag2014-09-241-0/+1
| | | | | | | | Patch by Terry Chia.
| * Issue #20912: Now directories added to ZIP file have correct Unix and MS-DOSSerhiy Storchaka2014-09-231-0/+3
| | | | | | | | directory attributes.
| * Issue #21866: ZipFile.close() no longer writes ZIP64 central directorySerhiy Storchaka2014-09-231-0/+3
| | | | | | | | records if allowZip64 is false.
| * Fix formatting typo in Misc/NEWS.Ned Deily2014-09-221-1/+1
| |
| * Fixed issue #22415 number in Misc/NEWS for changeset c925b436467a.Serhiy Storchaka2014-09-211-1/+1
| |
| * Issue #22423: Fixed debugging output of the GROUPREF_EXISTS opcode in the reSerhiy Storchaka2014-09-211-0/+3
| | | | | | | | module.
| * Issue #22423: Unhandled exception in thread no longer causes unhandledSerhiy Storchaka2014-09-211-0/+4
| | | | | | | | AttributeError when sys.stderr is None.
| * Issue #22419: Limit the length of incoming HTTP request in wsgiref server to ↵Senthil Kumaran2014-09-172-0/+5
| | | | | | | | 65536 bytes.
| * Lax cookie parsing in http.cookies could be a security issue whenGuido van Rossum2014-09-162-0/+4
| | | | | | | | | | | | combined with non-standard cookie handling in some Web browsers. Reported by Sergey Bobrov.
| * Issue #21147: sqlite3 now raises an exception if the request contains a nullSerhiy Storchaka2014-09-111-0/+3
| | | | | | | | character instead of truncate it. Based on patch by Victor Stinner.
| * Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command withSerhiy Storchaka2014-09-111-0/+3
| | | | | | | | | | | | | | empty string or tuple argument. On some platforms Tcl memory allocator returns NULL when allocating zero-sized block of memory.
| * Issue #21951: Use attemptckalloc() instead of ckalloc() in Tkinter.Serhiy Storchaka2014-09-111-0/+3
| | | | | | | | | | ckalloc() causes the Tcl interpreter to panic, attemptckalloc() returns NULL if the memory allocation fails.
| * - Issue #22381: Update zlib to 1.2.8.doko@ubuntu.com2014-09-111-0/+2
| |
| * Issue #22369: Change "context manager protocol" to "context management ↵Serhiy Storchaka2014-09-101-3/+3
| | | | | | | | protocol".
| * Issue #22226: Added private function _splitdict() in the Tkinter module.Serhiy Storchaka2014-09-061-0/+3
| | | | | | | | | | First letter no longer is stripped from the "status" key in the result of Treeview.heading().
| * Issue #22221: Backported fixes from Python 3 (issue #18960).Serhiy Storchaka2014-09-051-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | * Now the source encoding declaration on the second line isn't effective if the first line contains anything except a comment. This affects compile(), eval() and exec() too. * IDLE now ignores the source encoding declaration on the second line if the first line contains anything except a comment. * 2to3 and the findnocoding.py script now ignore the source encoding declaration on the second line if the first line contains anything except a comment.
| * remove automatic svn checkout of sphinx and its deps from Doc/MakefileBenjamin Peterson2014-09-051-0/+3
| | | | | | | | | | Users are now required to install Sphinx themselves as is already the case with the Python 3 branch.
| * Issue #20421: Add a .version() method to SSL sockets exposing the actual ↵Alex Gaynor2014-09-041-0/+1
| | | | | | | | | | | | protocol version in use. Backport from default.
| * NEWS items for Idle.Terry Jan Reedy2014-09-031-0/+9
| |
| * NEWS items for turtledemo.Terry Jan Reedy2014-09-031-0/+12
| |
| * don't index outside of the path (closes #22312)Benjamin Peterson2014-08-311-0/+2
| |
| * #22215: have the smtplib 'quit' command reset the state.R David Murray2014-08-301-0/+4
| | | | | | | | | | | | | | | | | | | | | | Without this reset, starttls would fail if a connect/starttls was done after a quit, because smtplib assumed the existing value of emspt_features was accurate, but it gets reset when starttls completes (and the new value does not contain the starttls capability, since tls is already started at that point). (There may be additional places where this lack of reset was an issue as well.) Patch by Milan Oberkirch.
| * PEP 466: backport persistent urandom fd (closes #21305)Benjamin Peterson2014-08-281-0/+3
| | | | | | | | Patch from Alex Gaynor.
| * PEP 466: backport hashlib algorithm constants (closes #21307)Benjamin Peterson2014-08-281-0/+3
| |
| * don't segfault when trying to fdopen() a fd for a dir (closes #22259)Benjamin Peterson2014-08-241-0/+3
| | | | | | | | Patch from Brian Kearns.
| * Issue #22236: Tkinter tests now don't reuse default root window. New rootSerhiy Storchaka2014-08-241-0/+5
| | | | | | | | | | | | | | | | | | window is created for every test class. Fixed Tkinter images copying operations in NoDefaultRoot mode. Tcl command names generated for "after" callbacks now contains a name of original function.
| * Issue #22199: update Misc/NEWSNed Deily2014-08-221-0/+3
| |
| * Issue #21166: Prevent possible segfaults and other random failures ofNed Deily2014-08-221-0/+3
| | | | | | | | | | | | | | python --generate-posix-vars in pybuilddir.txt build target by ensuring that pybuilddir.txt is always regenerated when configure is run and that the newly built skeleton python does not inadvertently import modules from previously installed instances.
| * Issue #22191: Fix warnings.__all__.Brett Cannon2014-08-222-0/+3
| | | | | | | | Thanks to Jon Poler for the patch.
| * backport many ssl features from Python 3 (closes #21308)Benjamin Peterson2014-08-201-0/+3
| | | | | | | | | | A contribution of Alex Gaynor and David Reid with the generous support of Rackspace. May God have mercy on their souls.
| * Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. ↵Senthil Kumaran2014-08-201-0/+3
| | | | | | | | Initial patch by Sam Bull.
| * Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows.Serhiy Storchaka2014-08-191-0/+2
| |
| * Issue #22068: Avoided reference loops with Variables and Fonts in Tkinter.Serhiy Storchaka2014-08-171-0/+2
| |
| * Issue #22201: Command-line interface of the zipfile module now correctlySerhiy Storchaka2014-08-171-0/+6
| | | | | | | | extracts ZIP files with directory entries. Patch by Ryan Wilson.
| * backout changeset e0510a3bdf8f - due to buildbot failures. Ref: Issue #8797Senthil Kumaran2014-08-161-3/+0
| |
| * Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. ↵Senthil Kumaran2014-08-161-0/+3
| | | | | | | | Initial patch by Sam Bull.
| * Issue #21448: Fixed FeedParser feed() to avoid O(N**2) behavior when parsing ↵Serhiy Storchaka2014-08-121-0/+3
| | | | | | | | | | | | long line. Original patch by Raymond Hettinger.
| * Issue #17923: glob() patterns ending with a slash no longer match non-dirs onSerhiy Storchaka2014-08-121-0/+3
| | | | | | | | AIX. Based on patch by Delhallt.
| * Issue #22174: Clean-up grammar and ambiguities in property() docs.Raymond Hettinger2014-08-101-0/+1
| |
| * - Issue #22176: Update the ctypes module's libffi to v3.1. This releasedoko@ubuntu.com2014-08-101-0/+7
| | | | | | | | | | adds support for the Linux AArch64 and POWERPC ELF ABIv2 little endian architectures.