- 07 Kas, 2018 6 kayıt (commit)
-
-
Cheryl Sabella yazdı
-
Diego Rojas yazdı
-
HongWeipeng yazdı
* add jsonlines option to json.tool * code review * fix:avoid read infile after it close * improve doc in whatsnew 3.8
-
guoci yazdı
Without setting mtime, time.time() will be used as the timestamp which will end up in the compressed data and each invocation of the compress() function will vary over time.
-
Andrés Delfino yazdı
-
Terry Jan Reedy yazdı
A program that runs indefinitely can overfill memory.
-
- 06 Kas, 2018 9 kayıt (commit)
-
-
Victor Stinner yazdı
Move Py_BUILD_CORE code from Include/fileutils.h to a new Include/internal/pycore_fileutils.h file.
-
Alexander Buchkovsky yazdı
Allow sending more than 2 GB at once on a multiprocessing connection on non-Windows systems.
-
Terry Jan Reedy yazdı
Add a new subsection to the doc.
-
Victor Stinner yazdı
_testcapimodule.c must not include pycore_pathconfig.h, since it's an internal header files. Changes: * Add _PyCoreConfig_AsDict() function to coreconfig.c. * Remove pycore_pathconfig.h include from _testcapimodule.h. * pycore_pathconfig.h now requires Py_BUILD_CORE to be defined. * _testcapimodule.c compilation now fails if it's built with Py_BUILD_CORE defined.
-
Alexey Izbyshev yazdı
The test depended on '/usr/share/zoneinfo/posixrules' or equivalent because it set TZ without explicit DST transition rules. At least on OpenSUSE Tumbleweed that file is linked to '/etc/localtime', making the test fail with certain local timezones, such as 'Europe/Moscow' which doesn't have DST transitions since 2011.
-
Terry Jan Reedy yazdı
(This should have been done with the first PR for this issue.)
-
Terry Jan Reedy yazdı
The section is renamed from "IDLE -- console differences". It mostly covers the implications of using custom sys.stdxxx objects.
-
-
Rémi Lapeyre yazdı
-
- 05 Kas, 2018 5 kayıt (commit)
-
-
E Kawashima yazdı
§31.5.6.3. Importing a source file directly: `module_from_spec` is new in Python 3.5.
-
Zackery Spytz yazdı
"p" was not initialized if the first PyMem_RawRealloc() call failed.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Two kind of mistakes: 1. Missed space. After concatenating there is no space between words. 2. Missed comma. Causes unintentional concatenating in a list of strings.
-
Mario Corchero yazdı
The new option in the CLI of the profile module allow to profile executable modules. This change follows the same implementation as the one already present in `cProfile`. As the argument is now present on both modules, move the tests to the common test case to be run with profile as well.
-
- 04 Kas, 2018 11 kayıt (commit)
-
-
Max Bélanger yazdı
-
Julien Palard yazdı
-
Pablo Galindo yazdı
This PR adds a cross-reference to the ellipsis object and the representation of recursive item in containers as indicated in [issue 9842](https://bugs.python.org/issue9842) by @bitdancer. https://bugs.python.org/issue9842
-
Windson yang yazdı
-
Stéphane Wirtel yazdı
-
Saptak Sengupta yazdı
This pull request adds some information about the special multipart/signed handling to clear about disabling header folding. https://bugs.python.org/issue31887
-
Lysandros Nikolaou yazdı
-
Adrian Liaw yazdı
-
Stéphane Wirtel yazdı
-
Alexey Izbyshev yazdı
Reported by ASAN.
-
Elena Oat yazdı
Thanks!
-
- 03 Kas, 2018 3 kayıt (commit)
-
-
Julien Palard yazdı
-
Stéphane Wirtel yazdı
-
İsmail Arılık yazdı
-
- 02 Kas, 2018 4 kayıt (commit)
-
-
Alexey Izbyshev yazdı
Use `__GNUC__` instead of non-existing `__GNUC_MAJOR__`. https://bugs.python.org/issue35147
-
BNMetrics yazdı
Some methods in the os module can accept path-like objects. This is documented in the general documentation but not in the function docstrings. To keep both in sync, the docstrings need to be updated to reflect that path-like objects are also accepted.
-
Christopher Thorne yazdı
Previous version was casting to Py_ssize_t incorrectly and exhibited unexpected behavior on big-endian systems.
-
Max Bélanger yazdı
This could cause compile errors on macOS or other platforms.
-
- 01 Kas, 2018 2 kayıt (commit)
-
-
Anthony Sottile yazdı
-
-