- 22 Mar, 2017 1 commit
-
-
Jelle Zijlstra authored
-
- 21 Mar, 2017 5 commits
-
-
Daniel Birnstiel authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Ned Deily authored
Use --short form of git hash. Use output from "git describe" for tag. Expected outputs: 1. previous hg 2. previous git 3. updated git Release (tagged) build: 1. Python 3.7.0a0 (v3.7.0a0:4def2a2901a5, ... 2. Python 3.7.0a0 (v3.7.0a0^0:05f53735, ... 3. Python 3.7.0a0 (v3.7.0a0:05f53735, ... Development build: 1. Python 3.7.0a0 (default:41df79263a11, ... 2. Python 3.7.0a0 (master:05f53735, ... 3. Python 3.7.0a0 (heads/master-dirty:05f53735, ... "dirty" means the working tree has uncommitted changes. See "git help describe" for more info.
-
Xiang Zhang authored
-
- 20 Mar, 2017 4 commits
-
-
zertrin authored
`NotImplentedError` --> `NotImplementedError`
-
Benjamin Peterson authored
This reverts commit 02371e0e.
-
4kir4 authored
-
Mariatta authored
From Shifted Dxit -> Shifted Exit in Doc/library/curses.rst
-
- 19 Mar, 2017 11 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Brett Cannon authored
The $CXX environment variable is not exported under the 'c' language on Travis.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
Based on patch by Vajrasky Kok.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
Added the documentation for PyUnicode_Translate().
-
- 18 Mar, 2017 1 commit
-
-
Marco Buttu authored
-
- 17 Mar, 2017 5 commits
-
-
Brett Cannon authored
This will eliminate one of the builds in Travis, allowing for CI overall to complete faster.
-
Jim Fasarakis-Hilliard authored
The module is implicitly tested through test_urllib.
-
Коренберг Марк authored
-
Marco Buttu authored
Initial patch by Vajrasky Kok.
-
Marco Buttu authored
-
- 16 Mar, 2017 1 commit
-
-
Steve Dower authored
-
- 15 Mar, 2017 3 commits
-
-
Nate authored
Many metaclasses in the standard library don't play nice with __init_subclass__. This bug makes ABCMeta in particular with __init_subclass__, which is an 80/20 solution for me personally. AFAICT, a general solution to this problem requires updating all metaclasses in the standard library to make sure they pass **kwargs to type.__new__, whereas this PR only fixes ABCMeta. For context, see https://bugs.python.org/issue29581. * added a test combining ABCMeta and __init_subclass__ * Added NEWS item
-
-
Michael Seifert authored
-
- 14 Mar, 2017 7 commits
-
-
Donald Stufft authored
-
Victor Stinner authored
* Add _PyObject_HasFastCall() * partial_call() now avoids temporary tuple to pass positional arguments if the callable supports the FASTCALL calling convention for positional arguments. * Fix also a performance regression in partial_call() if the callable doesn't support FASTCALL.
-
Jim Fasarakis-Hilliard authored
-
Ivan Levkivskyi authored
-
INADA Naoki authored
Call abs_paths() only if removeduppaths() changed sys.path
-
INADA Naoki authored
PyEval_Call* APIs are not documented and they doesn't respect PY_SSIZE_T_CLEAN. So add comment block which recommends PyObject_Call* APIs to ceval.h. This commit also changes PyEval_CallMethod and PyEval_CallFunction implementation same to PyObject_CallMethod and PyObject_CallFunction to reduce future maintenance cost. Optimization to avoid temporary tuple are copied too. PyEval_CallFunction(callable, "i", (int)i) now calls callable(i) instead of raising TypeError. But accepting this edge case is backward compatible.
-
Xiang Zhang authored
-
- 13 Mar, 2017 2 commits
-
-
Jelle Zijlstra authored
-
Jelle Zijlstra authored
-