- 21 Mar, 2018 2 commits
-
-
Xiang Zhang authored
The result of host() was not empty when the network is constructed by a tuple containing an integer mask and only 1 bit left for addresses.
-
Cheryl Sabella authored
Original patch by Jon Foster and Berker Peksag.
-
- 20 Mar, 2018 3 commits
-
-
Cheryl Sabella authored
-
Matt Eaton authored
-
Eric V. Smith authored
If the class has a member that's a MemberDescriptorType, it's not a default value, it's from that member being in __slots__.
-
- 19 Mar, 2018 2 commits
-
-
aetracht authored
-
Eric V. Smith authored
If a non-dataclass derives from a frozen dataclass, allow attributes to be set. Require either all of the dataclasses in a class hierarchy to be frozen, or all non-frozen. Store `@dataclass` parameters on the class object under `__dataclass_params__`. This is needed to detect frozen base classes.
-
- 18 Mar, 2018 6 commits
-
-
xdegaye authored
-
Jelle Zijlstra authored
This reverts commit ac317700. (Reverts only the lib2to3 part.)
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Aviv Palivoda authored
It was actually fixed in SQLite 3.8.8, not 3.8.7.
-
- 17 Mar, 2018 2 commits
-
-
Donald Stufft authored
-
Marcel Plch authored
Multi-phase initialized modules allow m_traverse to be called while the module is still being initialized, so module authors may need to account for that.
-
- 14 Mar, 2018 1 commit
-
-
Zackery Spytz authored
-
- 13 Mar, 2018 5 commits
-
-
Łukasz Langa authored
-
xdegaye authored
(cherry picked from commit e32bbaf376a09c149fa7c7f2919d7c9ce4e2a055)
-
Miro Hrončok authored
Creating backup files with ~ suffix can be undesirable in some environment, such as when building RPM packages. Instead of requiring the user to remove those files manually, option -n was added, that simply disables this feature. -n was selected because 2to3 has the same option with this behavior.
-
Łukasz Langa authored
New tests also added. I also made the comments in line with the builtin Grammar/Grammar. PEP 306 was withdrawn, Kees Blom's railroad program has been lost to the sands of time for at least 16 years now (I found a python-dev post from people looking for it).
-
Ned Deily authored
-
- 12 Mar, 2018 5 commits
-
-
Ned Deily authored
-
Antoine Pietri authored
-
Andrew Svetlov authored
-
Thomas Moreau authored
-
Antoine Pietri authored
Co-authored-by: Vajrasky Kok <sky.kok@speaklikeaking.com>
-
- 11 Mar, 2018 11 commits
-
-
Nir Soffer authored
fstat may block for long time if the file descriptor is on a non-responsive NFS server, hanging all threads. Most fstat() calls are handled by _Py_fstat(), releasing the GIL internally, but but _Py_fstat_noraise() does not release the GIL, and most calls release the GIL explicitly around it. This patch fixes last 2 calls to _Py_fstat_no_raise(), avoiding hangs when calling: - mmap.mmap() - os.urandom() - random.seed()
-
Antoine Pitrou authored
In some conditions the standard streams will be None or closed in the child process (for example if using "pythonw" instead of "python" on Windows). Avoid failing with a non-0 exit code in those conditions. Report and initial patch by poxthegreat.
-
Siddhesh Poyarekar authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
consisting of non-constants: `x in [a, b]` and `for x in [a, b]`. The case of all constant elements already was optimized.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Matt Eaton authored
-
Berker Peksag authored
-
- 10 Mar, 2018 3 commits
-
-
Emanuele Gaifas authored
-
Xiang Zhang authored
-
Serhiy Storchaka authored
and remove redundant code.
-