- 07 Nov, 2018 17 commits
-
-
Julien Palard authored
-
Elvis Pranskevichus authored
Current support for hash-based bytecode files in `zipimport` is rather sparse, which leads to test failures when the test suite is ran with the ``SOURCE_DATE_EPOCH`` environment variable set. This teaches zipimport to handle hash-based pycs properly.
-
Andrés Delfino authored
-
Andrés Delfino authored
-
Andrés Delfino authored
-
Andrés Delfino authored
-
Andrés Delfino authored
-
Andrés Delfino authored
-
Andrés Delfino authored
-
Andrés Delfino authored
-
samstagern authored
Handle Unicode contents on localised Windows systems when activating a venv. activate.bat currently breaks on German Windows systems, as chcp.com does not return a plain number as on English systems, but (arbitrarily) appends a dot at the end (for example "Aktive Codepage: 850." instead of "Active Codepage: 850"). The dependency to chcp.com is removed and ctypes is used to get, set and restore the console output code page. The code page for console input is not changed. We can't use __VENV_PYTHON__ to find python.exe, since it's UTF-8. cmd.exe decodes the script using the console output code page.
-
Cheryl Sabella authored
-
Diego Rojas authored
-
HongWeipeng authored
* add jsonlines option to json.tool * code review * fix:avoid read infile after it close * improve doc in whatsnew 3.8
-
guoci authored
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 authored
-
Terry Jan Reedy authored
A program that runs indefinitely can overfill memory.
-
- 06 Nov, 2018 9 commits
-
-
Victor Stinner authored
Move Py_BUILD_CORE code from Include/fileutils.h to a new Include/internal/pycore_fileutils.h file.
-
Alexander Buchkovsky authored
Allow sending more than 2 GB at once on a multiprocessing connection on non-Windows systems.
-
Terry Jan Reedy authored
Add a new subsection to the doc.
-
Victor Stinner authored
_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 authored
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 authored
(This should have been done with the first PR for this issue.)
-
Terry Jan Reedy authored
The section is renamed from "IDLE -- console differences". It mostly covers the implications of using custom sys.stdxxx objects.
-
-
Rémi Lapeyre authored
-
- 05 Nov, 2018 5 commits
-
-
E Kawashima authored
§31.5.6.3. Importing a source file directly: `module_from_spec` is new in Python 3.5.
-
Zackery Spytz authored
"p" was not initialized if the first PyMem_RawRealloc() call failed.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
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 authored
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 Nov, 2018 9 commits
-
-
Max Bélanger authored
-
Julien Palard authored
-
Pablo Galindo authored
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 authored
-
Stéphane Wirtel authored
-
Saptak Sengupta authored
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 authored
-
Adrian Liaw authored
-
Stéphane Wirtel authored
-