- 15 May, 2019 2 kayıt (commit)
-
-
Batuhan Taşkaya yazdı
-
Victor Stinner yazdı
Remove UNTESTED_CORE_CONFIG from test_embed.InitConfigTests: all core config fields are now tested! Changes: * Test also dll_path on Windows * Add run_main_config unit test: test config using _Py_RunMain().
-
- 14 May, 2019 18 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
Victor Stinner yazdı
test_embed: add test_init_read_set() to test newly added APIs: test module_search_paths and executable.
-
Gregory P. Smith yazdı
Clarify how to capture stdout and stderr combined into one stream.
-
Victor Stinner yazdı
Python 3.8 now respects the x86-64 ABI: memory allocations are aligned on 16 bytes. The clang flag was only used as a temporary workaround.
-
Krzysztof Wojcik yazdı
-
Hervé Beraud yazdı
Argparse can handle default value as stdin and stdout for parameters as file type (infile, outfile).
-
Andrew Svetlov yazdı
-
Victor Stinner yazdı
Replace global configuration variables with core_config read from the current interpreter. Cleanup dynload_hpux.c.
-
Victor Stinner yazdı
When using multiprocessing (-jN option), worker processes now create their temporary directory inside the temporary directory of the main process. So the main process is able to remove temporary directories of worker processes even if they crash or when they are killed by regrtest on KeyboardInterrupt (CTRL+c). Rework also how multiprocessing arguments are parsed in main.py.
-
Rémi Lapeyre yazdı
This cleans the csv module a bit, I don't think it requires a bpo issue or a news entry.
-
Vinodhini Balusamy yazdı
-
Nick Coghlan yazdı
Removes more legacy distutils documentation, and more clearly marks what is left as potentially outdated, with references to setuptools as a replacement.
-
Stéphane Wirtel yazdı
Add a new pip install before `sphinx` etc.. because we should use the last version of `pip` and `setuptools`
-
Nicolai Moore yazdı
-
Inada Naoki yazdı
-
Victor Stinner yazdı
MultiprocessThread.kill() now closes stdout and stderr to prevent popen.communicate() to hang.
-
wim glenn yazdı
-
Jens Troeger yazdı
-
- 13 May, 2019 20 kayıt (commit)
-
-
Anders Hovmöller yazdı
* Update timeit.rst
-
Matthias Bussonnier yazdı
-
Pierre Glaser yazdı
-
Brad yazdı
* Docs: Add bz2 usage examples - Adds an "Examples of usage" section inspired by the one found in the gzip docs - Corrects the descriptions for ``compresslevel`` and ``data``: - ``compresslevel`` must be an `int`, not any number. For instance, passing a float will raise ``TypeError`` - Notes that `data` must be bytes-like
-
Antoine Pitrou yazdı
-
Pierre Glaser yazdı
Followup to bpo-36867.
-
Victor Stinner yazdı
"python3 -m test -jN ..." now continues the execution of next tests when a worker process crash (CHILD_ERROR state). Previously, the test suite stopped immediately. Use --failfast to stop at the first error. Moreover, --forever now also implies --failfast.
-
Guido van Rossum yazdı
-
Victor Stinner yazdı
Move _PyImportZip_Init() to the internal C API and add an 'interp' parameter.
-
Xtreak yazdı
-
Victor Stinner yazdı
-
-
Guido van Rossum yazdı
-
Utkarsh Gupta yazdı
-
Kexuan Sun yazdı
-
Victor Stinner yazdı
Remove the PyEval_ReInitThreads() function from the Python C API. It should not be called explicitly: use PyOS_AfterFork_Child() instead. Rename PyEval_ReInitThreads() to _PyEval_ReInitThreads() and add a 'runtime' parameter.
-
Victor Stinner yazdı
Remove cp65001 from the codecs table, list it as an alias of utf_8 and add a versionchanged markup.
-
Zackery Spytz yazdı
Co-Authored-By: Filip Gruszczyński <gruszczy@gmail.com> Co-Authored-By: Michele Orrù <maker@tumbolandia.net>
-
Edison A yazdı
-
Gordon P. Hemsley yazdı
-