summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Fixed declarations of _Py_DumpTraceback() and _Py_DumpTracebackThreads().Serhiy Storchaka2016-05-011-2/+2
|\ \ \ | |/ /
| * | Fixed declarations of _Py_DumpTraceback() and _Py_DumpTracebackThreads().Serhiy Storchaka2016-05-011-2/+2
| | |
* | | Issue #26898: Fix typo in math.isclose() docstringBerker Peksag2016-05-011-1/+1
|\ \ \ | |/ / | | | | | | Patch by Marco Buttu.
| * | Issue #26898: Fix typo in math.isclose() docstringBerker Peksag2016-05-011-1/+1
| | | | | | | | | | | | Patch by Marco Buttu.
* | | Issue #23960: Cleanup args and kwargs on error in PyErr_SetImportErrorBerker Peksag2016-05-011-3/+3
|\ \ \ | |/ / | | | | | | Patch by Ofer Schwarz.
| * | Issue #23960: Cleanup args and kwargs on error in PyErr_SetImportErrorBerker Peksag2016-05-011-3/+3
| | | | | | | | | | | | Patch by Ofer Schwarz.
* | | Issue #24114: Fix an uninitialized variable in `ctypes.util`.Meador Inge2016-05-012-0/+7
|\ \ \ | |/ / | | | | | | | | | | | | The bug only occurs on SunOS when the ctypes implementation searches for the `crle` program. Patch by Xiang Zhang. Tested on SunOS by Kees Bos.
| * | Issue #24114: Fix an uninitialized variable in `ctypes.util`.Meador Inge2016-05-012-0/+7
| | | | | | | | | | | | | | | | | | The bug only occurs on SunOS when the ctypes implementation searches for the `crle` program. Patch by Xiang Zhang. Tested on SunOS by Kees Bos.
* | | Issue #26864: Merge no_proxy fixes from 3.5Martin Panter2016-04-303-2/+24
|\ \ \ | |/ /
| * | Issue #26864: Fix case insensitivity and suffix comparison with no_proxyMartin Panter2016-04-303-2/+24
| | | | | | | | | | | | Patch by Xiang Zhang.
* | | Issue #13436: Add a test to make sure that ast.ImportFrom(level=None) worksBerker Peksag2016-04-291-0/+11
| | |
* | | Issue #25551: Test condition behavior instead of its internalsBerker Peksag2016-04-291-4/+5
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | test_reset_internal_locks was looking at Event's _cond._lock. This makes it harder to change internals of the Condition object and makes the test fragile. The test was added by Nir Soffer in 6108d30dde21. Patch by Nir Soffer.
| * | Issue #25551: Test condition behavior instead of its internalsBerker Peksag2016-04-291-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | test_reset_internal_locks was looking at Event's _cond._lock. This makes it harder to change internals of the Condition object and makes the test fragile. The test was added by Nir Soffer in 6108d30dde21. Patch by Nir Soffer.
* | | Fix typos. Reported by andportnoy on GitHub.Berker Peksag2016-04-292-2/+2
| | |
* | | Issue #24902: Print server URL on http.server startupBerker Peksag2016-04-292-1/+5
| | | | | | | | | | | | Initial patch by Felix Kaiser.
* | | Issue #26322: Document typing.Set, patch by Joseph MoranBerker Peksag2016-04-291-2/+2
|\ \ \ | |/ /
| * | Issue #26322: Document typing.Set, patch by Joseph MoranBerker Peksag2016-04-291-2/+2
| | |
* | | Removed unused initialization and the uninteresting comment.Raymond Hettinger2016-04-291-2/+1
| | |
* | | Issue #26880: Removed redundant checks in set.__init__.Serhiy Storchaka2016-04-291-3/+1
| | |
* | | Issue #26822: Decreased an overhead of using _PyArg_NoKeywords() in calls ofSerhiy Storchaka2016-04-291-3/+3
|\ \ \ | |/ / | | | | | | itemgetter, attrgetter and methodcaller objects.
| * | Issue #26822: Decreased an overhead of using _PyArg_NoKeywords() in calls ofSerhiy Storchaka2016-04-291-3/+3
| | | | | | | | | | | | itemgetter, attrgetter and methodcaller objects.
* | | Closes #26875: Merge with 3.5Zachary Ware2016-04-281-1/+1
|\ \ \ | |/ /
| * | Issue #26875: Fix mmap exampleZachary Ware2016-04-281-1/+1
| | | | | | | | | | | | Patch by Xiang Zhang.
* | | Closes #26874: Merge with 3.5Zachary Ware2016-04-281-1/+1
|\ \ \ | |/ /
| * | Issue #26874: Simplify the divmod docstringZachary Ware2016-04-281-1/+1
| | |
* | | Closes #26874: Merge with 3.5Zachary Ware2016-04-281-1/+1
|\ \ \ | |/ /
| * | Issue #26874: Fix divmod docstringZachary Ware2016-04-281-1/+1
| | |
* | | Issue #25788: fileinput.hook_encoded() now supports an "errors" argumentSerhiy Storchaka2016-04-276-6/+40
| | | | | | | | | | | | for passing to open. Original patch by Joseph Hackman.
* | | fileinput.hook_encoded() uses builtin open(), not codecs.open().Serhiy Storchaka2016-04-271-1/+1
|\ \ \ | |/ /
| * | fileinput.hook_encoded() uses builtin open(), not codecs.open().Serhiy Storchaka2016-04-271-1/+1
| | |
* | | Issue #26863: HAVE_FACCESSAT should (currently) not be defined on Android.Stefan Krah2016-04-261-1/+7
| | |
* | | Issue #26854: Android has a different include path for soundcard.h.Stefan Krah2016-04-261-0/+4
| | |
* | | Issue #26846: Post commit cleanup.Stefan Krah2016-04-262-2/+1
| | |
* | | Issue #26857: Workaround for missing symbol "gethostbyaddr_r" on Android.Stefan Krah2016-04-261-1/+1
| | |
* | | Issue #20598: Merge argparse docs from 3.5Martin Panter2016-04-261-23/+23
|\ \ \ | |/ /
| * | Issue #20598: Replace trivial split() calls with lists in argparse docsMartin Panter2016-04-261-23/+23
| | |
* | | Issue #25349, #26249: Fix memleak in formatfloat()Victor Stinner2016-04-261-0/+1
| | |
* | | Issue #20306: Android is the only system that returns NULL for the pw_passwdStefan Krah2016-04-261-1/+1
| | | | | | | | | | | | | | | field. Rather than cluttering the tests, translate the arguably more correct "None" to an empty string.
* | | mergeRaymond Hettinger2016-04-261-1/+5
|\ \ \ | |/ /
| * | Issue #24715: Improve sort stability exampleRaymond Hettinger2016-04-261-1/+5
| | |
* | | Issue #16394: Note the tee() pure python equivalent is only a rough ↵Raymond Hettinger2016-04-261-1/+4
| | | | | | | | | | | | approximation.
* | | Issue #26634: recursive_repr() now sets __qualname__ of wrapper.Serhiy Storchaka2016-04-263-0/+18
|\ \ \ | |/ / | | | | | | Patch by Xiang Zhang.
| * | Issue #26634: recursive_repr() now sets __qualname__ of wrapper.Serhiy Storchaka2016-04-263-0/+18
| | | | | | | | | | | | Patch by Xiang Zhang.
* | | Issue #22747: Workaround for systems without langinfo.h.Stefan Krah2016-04-251-0/+2
| | |
* | | Issue #20306: The pw_gecos and pw_passwd fields are not required by POSIX.Stefan Krah2016-04-254-0/+45
| | | | | | | | | | | | If they aren't present, set them to an empty string.
* | | Issue #26846: Workaround for non-standard stdlib.h on Android.Stefan Krah2016-04-255-6/+4
| | |
* | | Issue #17905: Do not guard locale include with HAVE_LANGINFO_H.Stefan Krah2016-04-251-1/+1
| | |
* | | merge 3.5Senthil Kumaran2016-04-255-11/+80
|\ \ \ | |/ / | | | | | | | | | | | | | | | Issue #26804: urllib.request will prefer lower_case proxy environment variables over UPPER_CASE or Mixed_Case ones. Patch contributed by Hans-Peter Jansen. Reviewed by Martin Panter and Senthil Kumaran.
| * | Issue #26804: urllib.request will prefer lower_case proxy environment variablesSenthil Kumaran2016-04-255-11/+80
| | | | | | | | | | | | | | | | | | over UPPER_CASE or Mixed_Case ones. Patch contributed by Hans-Peter Jansen. Reviewed by Martin Panter and Senthil Kumaran.
* | | Merge with 3.5Zachary Ware2016-04-251-2/+2
|\ \ \ | |/ /