- 06 May, 2019 10 kayıt (commit)
-
-
Stéphane Wirtel yazdı
-
Patrick Mühlbauer yazdı
-
Brett Cannon yazdı
-
Zackery Spytz yazdı
In addition, fix some other minor violations of C99.
-
Logan Jones yazdı
-
Andre Delfino yazdı
-
Daniel Hahler yazdı
* Doc/c-api/exceptions.rst: fix grammar skip issue skip news * Use ", in that case" Co-Authored-By: blueyed <github@thequod.de>
-
Stefan Behnel yazdı
-
Eddie Elizondo yazdı
-
Cheryl Sabella yazdı
-
- 05 May, 2019 3 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
twisteroid ambassador yazdı
Added two keyword arguments, `delay` and `interleave`, to `BaseEventLoop.create_connection`. Happy eyeballs is activated if `delay` is specified. We now have documentation for the new arguments. `staggered_race()` is in its own module, but not exported to the main asyncio package. https://bugs.python.org/issue33530
-
Inada Naoki yazdı
_osx_support and copyreg are not imported from site on macOS for now.
-
- 04 May, 2019 4 kayıt (commit)
-
-
Jonatan yazdı
-
Catherine Alvarado yazdı
-
Victor Stinner yazdı
-
Joannah Nanjekye yazdı
-
- 03 May, 2019 10 kayıt (commit)
-
-
Rémi Lapeyre yazdı
-
Stefan Behnel yazdı
bpo-28238: Implement "{*}tag" and "{ns}*" wildcard tag selection support for ElementPath, and extend the surrounding tests and docs. (GH-12997)
-
Andre Delfino yazdı
-
Zackery Spytz yazdı
-
Alexander Vasin yazdı
Given example does not run, loop variable is missing. Secondly, this is bad example how to handle shutdown signal, because it would cause `RuntimeError: Event loop stopped before Future completed.` Perhaps it would be better to cancel all tasks instead of closing loop directly? Did not create issue, because question is quite simple.
-
gescheit yazdı
Call remove_done_callback() in finally block. https://bugs.python.org/issue36613
-
xdegaye yazdı
Those tests may fail with PermissionError. https://bugs.python.org/issue36341
-
Andre Delfino yazdı
-
Andre Delfino yazdı
Prefer the full wording instead, as it is more meaningful for someone not familiar with the terms. Also, LFS/RHS is not used anywhere else in the documentation, while left/right-hand side mentions are common.
-
-
- 02 May, 2019 13 kayıt (commit)
-
-
Stefan Behnel yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
_PyCoreConfig_SetPyArgv() and _PyCoreConfig_SetWideString() now pre-initialize Python if needed to ensure that the locale encoding is properly configured. * Add _Py_PreInitializeFromPyArgv() internal function. * Add 'args' parameter to _Py_PreInitializeFromCoreConfig()
-
Victor Stinner yazdı
_PyCoreConfig: Change filesystem_encoding, filesystem_errors, stdio_encoding and stdio_errors fields type from char* to wchar_t*. Changes: * PyInterpreterState: replace fscodec_initialized (int) with fs_codec structure. * Add get_error_handler_wide() and unicode_encode_utf8() helper functions. * Add error_handler parameter to unicode_encode_locale() and unicode_decode_locale(). * Remove _PyCoreConfig_SetString(). * Rename _PyCoreConfig_SetWideString() to _PyCoreConfig_SetString(). * Rename _PyCoreConfig_SetWideStringFromString() to _PyCoreConfig_DecodeLocale().
-
Zackery Spytz yazdı
-
Victor Stinner yazdı
Add private _config_version field to _PyPreConfig and _PyCoreConfig to prepare future ABI compatibility.
-
Xtreak yazdı
-
Victor Stinner yazdı
Move get_codec_name() and initfsencoding() from pylifecycle.c to unicodeobject.c. Rename also "init" functions in pylifecycle.c.
-
Victor Stinner yazdı
Add _Py_FORCE_UTF8_LOCALE and _Py_FORCE_UTF8_FS_ENCODING macros to avoid factorize "#if defined(__ANDROID__) || defined(__VXWORKS__)" and "#if defined(__APPLE__)". Cleanup also config_init_fs_encoding().
-
Zackery Spytz yazdı
-
Stefan Behnel yazdı
* Include C14N 2.0 test data in installation. * Add README file to the C14N test data directory to reference the original source and licensing conditions.
-
Daniel Porteous yazdı
I feel silly even making such a tiny typo fix, but I couldn't help but notice it.
-
Hossein Pourbozorg yazdı
-