- 31 May, 2019 16 kayıt (commit)
-
-
Zackery Spytz yazdı
msilib.Directory.start_component() was passing an extra argument to CAB.gen_id().
-
Akshay Sharma yazdı
-
Christian Heimes yazdı
Co-authored-by:
nanjekyejoannah <nanjekyejoannah@gmail.com>
-
Makdon yazdı
Also includes other minor test skipping doc improvements. https://bugs.python.org/issue37094
-
Pablo Galindo yazdı
-
Pablo Galindo yazdı
-
Pablo Galindo yazdı
Include and document co_posonlyargcount and co_kwonlyargcount
-
Pablo Galindo yazdı
-
Zackery Spytz yazdı
If a type's __ipow__ method was implemented in C, attempting to use the *modulo* parameter would cause crashes. https://bugs.python.org/issue36379
-
Christian Heimes yazdı
The ssl module now can dump key material to a keylog file and trace TLS protocol messages with a tracing callback. The default and stdlib contexts also support SSLKEYLOGFILE env var. The msg_callback and related enums are private members. The feature is designed for internal debugging and not for end users. Signed-off-by:
Christian Heimes <christian@python.org>
-
Serhiy Storchaka yazdı
TemporaryDirectory.cleanup() failed when non-writeable or non-searchable files or directories were created inside a temporary directory.
-
Serhiy Storchaka yazdı
Escape ``\r``, ``\0`` and ``\x1a`` (end-of-file on Windows) in Unicode strings.
-
Terry Jan Reedy yazdı
It seems to be the only widget label not capitalized.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Jeroen Demeyer yazdı
Automatically replace tp_print -> tp_vectorcall_offset tp_compare -> tp_as_async tp_reserved -> tp_as_async
-
- 30 May, 2019 21 kayıt (commit)
-
-
Ivan Levkivskyi yazdı
This is an old feature request that appears from time to time. After a year of experimenting with various introspection capabilities in `typing_inspect` on PyPI, I propose to add these two most commonly used functions: `get_origin()` and `get_args()`. These are essentially thin public wrappers around private APIs: `__origin__` and `__args__`. As discussed in the issue and on the typing tracker, exposing some public helpers instead of `__origin__` and `__args__` directly will give us more flexibility if we will decide to update the internal representation, while still maintaining backwards compatibility. The implementation is very simple an is essentially a copy from `typing_inspect` with one exception: `ClassVar` was special-cased in `typing_inspect`, but I think this special-casing doesn't really help and only makes things more complicated.
-
-
Matthias Bussonnier yazdı
Bump the removal to 3.9, indicate collections.abc available since 3.3, replace version-changed directive to deprecated-removed. https://bugs.python.org/issue36953
-
xdegaye yazdı
when platform lacks a functioning sem_open implementation https://bugs.python.org/issue36342
-
Antti Haapala yazdı
-
-
Xtreak yazdı
As per the PEP and the [audit event raised](https://github.com/python/cpython/blob/13d4e6a4a090031f8214e058ed3c8fd47767e05f/Lib/urllib/request.py#L524) in urllib.request this should be `urllib.Request` cc: @zooba
-
-
Brett Cannon yazdı
This reverts commit 71dc7c5f. Turns out you must have write access for CODEOWNERS to work.
-
Jeroen Demeyer yazdı
-
Xtreak yazdı
Fix DeprecationWarning introduced in aee19f54 https://bugs.python.org/issue37099
-
Zackery Spytz yazdı
There is no need to clear these immutable objects during shutdown.
-
Jeroen Demeyer yazdı
-
Jeroen Demeyer yazdı
-
Xtreak yazdı
From 3.8 async functions used with mock.patch return an `AsyncMock`. `_accept_connection2` is an async function where create_task is also mocked. Don't mock `create_task` so that tasks are created out of coroutine returned by `AsyncMock` and the tasks are completed. https://bugs.python.org/issue37015
-
Christian Heimes yazdı
-
Zackery Spytz yazdı
In e895de3e, the deprecated function PyErr_SetFromWindowsErrWithUnicodeFilename() was added in two functions in Modules/_winapi.c. This function was deprecated in 3.3.
-
Inada Naoki yazdı
-
Giampaolo Rodola yazdı
...and avoid using it on Solaris as it can raise EINVAL if offset is equal or bigger than the size of the file
-
Ying Wang yazdı
-
Anthony Sottile yazdı
* Don't crash if there exists an EGG-INFO directory on sys.path cross-port of https://gitlab.com/python-devs/importlib_metadata/merge_requests/72 * Also catch PermissionError for windows
-
- 29 May, 2019 3 kayıt (commit)
-
-
Pablo Galindo yazdı
-
Zackery Spytz yazdı
bpo-37007: Implement socket.if_nametoindex(), if_indextoname() and if_nameindex() on Windows (GH-13522)
-
Petr Viktorin yazdı
As it changes the way functions are called, the PEP 590 implementation skipped the functions that the GDB integration is looking for (by name) to find function calls. Looking for the new helper `cfunction_call_varargs` hopefully fixes the tests, and thus buildbots. The changed frame nuber in test_gdb is due to there being fewer C calls when calling a built-in method.
-