summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* Merge for issue #26367Brett Cannon2016-02-201-0/+3
|\
| * Issue #26367: Have importlib.__init__() raise RuntimeError whenBrett Cannon2016-02-201-0/+4
* | Issue #26309: Merge socketserver fix from 3.5Martin Panter2016-02-181-0/+4
|\ \ | |/
| * Issue #26309: Shut down socketserver request if verify_request() is falseMartin Panter2016-02-181-0/+4
* | merge 3.5 (closes #25939)Benjamin Peterson2016-02-181-0/+2
|\ \ | |/
| * merge 3.4 (closes #25939)Benjamin Peterson2016-02-181-0/+2
| |\
| | * open the cert store readonlyBenjamin Peterson2016-02-181-0/+2
* | | Issue #25924: merge with 3.5Ned Deily2016-02-151-0/+3
|\ \ \ | |/ /
| * | Issue #25924: Avoid unnecessary serialization of getaddrinfo(3) calls on OS XNed Deily2016-02-151-0/+3
* | | Issue #26268: merge from 3.5Ned Deily2016-02-151-1/+1
|\ \ \ | |/ /
| * | Issue #26268: Update OS X 10.5+ installer build to use OpenSSL 1.0.2f.Ned Deily2016-02-151-1/+1
* | | Issue #26316: Merge Arg Clinic fix from 3.5Martin Panter2016-02-141-0/+2
|\ \ \ | |/ /
| * | Issue #26316: Fix variable name typo in Argument ClinicMartin Panter2016-02-141-0/+6
* | | Merge 3.5 (issue #25887)Yury Selivanov2016-02-131-0/+3
|\ \ \ | |/ /
| * | Issue #25887: Raise a RuntimeError when a coroutine is awaited more than once.Yury Selivanov2016-02-131-0/+3
| * | Issue #25995: os.walk() no longer uses FDs proportional to the tree depth.Serhiy Storchaka2016-02-111-0/+2
* | | Issues #26289 and #26315: Optimize floor/modulo div for single-digit longsYury Selivanov2016-02-111-0/+4
* | | Issue #25995: os.walk() no longer uses FDs proportional to the tree depth.Serhiy Storchaka2016-02-111-0/+2
* | | Issue #25994: Added the close() method and the support of the context managerSerhiy Storchaka2016-02-111-0/+3
* | | Issue #26325: Added test.support.check_no_resource_warning() to check thatSerhiy Storchaka2016-02-111-0/+3
|\ \ \ | |/ /
| * | Issue #26325: Added test.support.check_no_resource_warning() to check thatSerhiy Storchaka2016-02-111-0/+3
* | | Issue #26312: SystemError is now raised in all programming bugs with usingSerhiy Storchaka2016-02-111-0/+4
* | | Issue #23992: multiprocessing: make MapResult not fail-fast upon exception.Charles-François Natali2016-02-101-0/+2
* | | Issue #26304: Merge doc wording from 3.5Martin Panter2016-02-102-23/+23
|\ \ \ | |/ /
| * | Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similarMartin Panter2016-02-102-23/+23
* | | Issue #26136: Upgrade the generator_stop warning to DeprecationWarningMartin Panter2016-02-101-0/+4
* | | Issue #26243: zlib.compress() keyword argument support by Aviv PalivodaMartin Panter2016-02-101-0/+3
* | | Issues #26310, 26311: Merge typo fixes from 3.5Martin Panter2016-02-101-1/+1
|\ \ \ | |/ /
| * | Issues #26310, #26311: Fix typos in the documentation and code commentsMartin Panter2016-02-101-1/+1
* | | compiler: don't emit SyntaxWarning on const stmtVictor Stinner2016-02-081-3/+4
* | | compiler now ignores constant statementsVictor Stinner2016-02-081-0/+4
* | | Issue #26117: The os.scandir() iterator now closes file descriptor not onlySerhiy Storchaka2016-02-081-0/+3
|\ \ \ | |/ /
| * | Issue #26117: The os.scandir() iterator now closes file descriptor not onlySerhiy Storchaka2016-02-081-0/+3
* | | Issue #25949: __dict__ for an OrderedDict instance is now created only whenSerhiy Storchaka2016-02-081-0/+3
* | | Issue #25911: Restored support of bytes paths in os.walk() on Windows.Serhiy Storchaka2016-02-081-0/+2
|\ \ \ | |/ /
| * | Issue #25911: Restored support of bytes paths in os.walk() on Windows.Serhiy Storchaka2016-02-081-0/+2
* | | Issue #26045: Merge http.client error addition from 3.5Martin Panter2016-02-091-0/+3
|\ \ \ | |/ /
| * | Issue #26045: Add UTF-8 suggestion to error in http.clientMartin Panter2016-02-091-0/+3
* | | Issue #26198: ValueError is now raised instead of TypeError on bufferSerhiy Storchaka2016-02-071-0/+7
* | | Issue #26039: Added zipfile.ZipInfo.from_file() and zipinfo.ZipInfo.is_dir().Serhiy Storchaka2016-02-071-0/+3
* | | Issue #26288: Optimize PyLong_AsDouble.Yury Selivanov2016-02-061-0/+1
* | | Issue #12923: Merge FancyURLopener fix from 3.5Martin Panter2016-02-062-0/+4
|\ \ \ | |/ /
| * | Issue #12923: Reset FancyURLopener's redirect counter even on exceptionMartin Panter2016-02-042-0/+4
* | | Merge 3.5 (issue #25660)Yury Selivanov2016-02-041-0/+3
|\ \ \ | |/ /
| * | Issue #25660: Fix TAB key behaviour in REPL.Yury Selivanov2016-02-041-0/+3
* | | Issue #25945: Fixed bugs in functools.partial.Serhiy Storchaka2016-02-021-0/+5
|\ \ \ | |/ /
| * | Issue #25945: Fixed bugs in functools.partial.Serhiy Storchaka2016-02-021-0/+5
* | | Issue #26244: Merge zlib documentation from 3.5Martin Panter2016-02-031-0/+1
|\ \ \ | |/ /
| * | Issue #26244: Clarify default zlib compression level in documentationMartin Panter2016-02-031-0/+1
| * | Issue #26194: Inserting into a full deque to raise an IndexErrorRaymond Hettinger2016-02-021-2/+2