- 16 May, 2019 1 commit
-
-
Xtreak authored
-
- 15 May, 2019 9 commits
-
-
Paul Monson authored
@zooba I just realized that this whitespace fix didn't get pushed. https://bugs.python.org/issue36511
-
Paul Monson authored
-
Paul Monson authored
-
zlohhcuB treboR authored
Similarly to how several pathlib file creation functions have an "exists_ok" parameter, we should introduce "missing_ok" that makes removal functions not raise an exception when a file or directory is already absent. IMHO, this should cover Path.unlink and Path.rmdir. Note, Path.resolve() has a "strict" parameter since 3.6 that does the same thing. Naming this of this new parameter tries to be consistent with the "exists_ok" parameter as that is more explicit about what it does (as opposed to "strict"). https://bugs.python.org/issue33123
-
Antoine Pitrou authored
-
Jon Janzen authored
Plistlib currently throws an exception when asked to decode a valid .plist file that was generated by Apple's NSKeyedArchiver. Specifically, this is caused by a byte 0x80 (signifying a UID) not being understood. This fixes the problem by enabling the binary plist reader and writer to read and write plistlib.UID objects.
-
Xtreak authored
-
Yavor Konstantinov authored
-
Victor Stinner authored
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 commits
-
-
Andrew Svetlov authored
-
Victor Stinner authored
test_embed: add test_init_read_set() to test newly added APIs: test module_search_paths and executable.
-
Gregory P. Smith authored
Clarify how to capture stdout and stderr combined into one stream.
-
Victor Stinner authored
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 authored
-
Hervé Beraud authored
Argparse can handle default value as stdin and stdout for parameters as file type (infile, outfile).
-
Andrew Svetlov authored
-
Victor Stinner authored
Replace global configuration variables with core_config read from the current interpreter. Cleanup dynload_hpux.c.
-
Victor Stinner authored
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 authored
This cleans the csv module a bit, I don't think it requires a bpo issue or a news entry.
-
Vinodhini Balusamy authored
-
Nick Coghlan authored
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 authored
Add a new pip install before `sphinx` etc.. because we should use the last version of `pip` and `setuptools`
-
Nicolai Moore authored
-
Inada Naoki authored
-
Victor Stinner authored
MultiprocessThread.kill() now closes stdout and stderr to prevent popen.communicate() to hang.
-
wim glenn authored
-
Jens Troeger authored
-
- 13 May, 2019 12 commits
-
-
Anders Hovmöller authored
* Update timeit.rst
-
Matthias Bussonnier authored
-
Pierre Glaser authored
-
Brad authored
* 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 authored
-
Pierre Glaser authored
Followup to bpo-36867.
-
Victor Stinner authored
"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 authored
-
Victor Stinner authored
Move _PyImportZip_Init() to the internal C API and add an 'interp' parameter.
-
Xtreak authored
-
Victor Stinner authored
-
-