- 04 Apr, 2018 3 commits
-
-
Łukasz Langa authored
This makes performance better and produces shorter pickles. This change is backwards compatible up to the oldest currently supported version of Python (3.4).
-
INADA Naoki authored
Py_UNICODE is deprecated since Python 3.3. But the deprecation is missed in the c-api/arg document.
-
hui shang authored
-
- 03 Apr, 2018 4 commits
-
-
Serhiy Storchaka authored
-
INADA Naoki authored
-
Andrés Delfino authored
-
INADA Naoki authored
-
- 02 Apr, 2018 3 commits
-
-
Serhiy Storchaka authored
when __aenter__() or __aexit__() return non-awaitable object.
-
Terry Jan Reedy authored
Followup to primary PR for the issue, GH-6344.
-
Terry Jan Reedy authored
A 'u' string prefix cannot be paired with either 'r' or 'f'. Consistently color as much of the prefix, starting at the right, as is valid.
-
- 01 Apr, 2018 1 commit
-
-
Gregory P. Smith authored
-
- 31 Mar, 2018 2 commits
-
-
Serhiy Storchaka authored
-
Ivan Levkivskyi authored
-
- 30 Mar, 2018 2 commits
-
-
Mike DePalatis authored
-
Nick Coghlan authored
-
- 29 Mar, 2018 2 commits
-
-
Eric V. Smith authored
-
Ned Deily authored
Build and link with private copy of Tcl/Tk 8.6 for the macOS 10.6+ installer. The 10.9+ installer variant already does this. This means that the Python 3.7 provided by the python.org macOS installers no longer need or use any external versions of Tcl/Tk, either system-provided or user- installed, such as ActiveTcl.
-
- 28 Mar, 2018 9 commits
-
-
Julien Palard authored
-
Julien Palard authored
-
Serhiy Storchaka authored
Most of them have been added in 3.7.
-
Antoine Pitrou authored
-
INADA Naoki authored
-
Ned Deily authored
-
Ned Deily authored
Forcing the macOS IDLE.app gui process to launch in 32-mode was a necessary hack for old versions of Tk (Aqua Carbon as in Tk 8.4 and early versions of 8.5); it is not needed for current versions of Tk. Since 32-bit launching will no longer be supported on future releases of macOS, allow IDLE.app to launch in 64-bit mode.
-
Ned Deily authored
-
Sam Dunster authored
* Also in docs
-
- 27 Mar, 2018 3 commits
-
-
Ned Deily authored
test_asyncio hangs indefinitely on macOS 10.13.2+ on `read_pty_output()` using the KqueueSelector. Closing `proto.transport` (as is done in `write_pty_output()`) seems to fix it. (cherry picked from commit 12f74d8608c15cacd9d5786524e2be9ca36f007e) Co-authored-by: Nathan Henrie <n8henrie@users.noreply.github.com> Also, re-enable test_read_pty_output on macOS.
-
Barry Warsaw authored
-
Cheryl Sabella authored
-
- 26 Mar, 2018 11 commits
-
-
Ivan Levkivskyi authored
This also fixes python/typing#512 This also fixes python/typing#511 As was discussed in both issues, some typing forms deserve to be treated as immutable by copy and pickle modules, so that: * copy(X) is X * deepcopy(X) is X * loads(dumps(X)) is X # pickled by reference This PR adds such behaviour to: * Type variables * Special forms like Union, Any, ClassVar * Unsubscripted generic aliases to containers like List, Mapping, Iterable This not only resolves inconsistencies mentioned in the issues, but also improves backwards compatibility with previous versions of Python (including 3.6). Note that this requires some dances with __module__ for type variables (similar to NamedTuple) because the class TypeVar itself is define in typing, while type variables should get module where they were defined. https://bugs.python.org/issue32873
-
Alexey Izbyshev authored
bpo-32844: subprocess: Fix a potential misredirection of a low fd to stderr. When redirecting, subprocess attempts to achieve the following state: each fd to be redirected to is less than or equal to the fd it is redirected from, which is necessary because redirection occurs in the ascending order of destination descriptors. It fails to do so in a couple of corner cases, for example, if 1 is redirected to 2 and 0 is closed in the parent.
-
Eric V. Smith authored
This is part of PEP 487 and the descriptor protocol.
-
Takuya Akiba authored
-
Oren Milman authored
-
Michael Seifert authored
-
cocoatomo authored
Passing True as the `bind_and_activate` *do* immediately opening and binding to their socket.
-
Neeraj Badlani authored
gmon.out is generated when profiling turned on Full Configuration: ./configure --prefix=$PWD/install --enable-profiling --enable-big-digits=30 --with-pydebug --with-assertions --with-valgrind
-
Stefano Taschini authored
-
Garvit Khatri authored
Allow ttk.Treeview.insert to insert iid that has a false boolean value. Note iid=0 and iid=False would be same.
-
Eric V. Smith authored
Also, re-enable a test for ClassVars with default_factory.
-