- 12 Jun, 2019 2 commits
-
-
Victor Stinner authored
Rename compile() feature_version parameter to _feature_version and convert it to a keyword-only parameter. Update also test_type_comments to pass feature_version as a tuple.
-
Guido van Rossum authored
(A single int is still allowed, but undocumented.) https://bugs.python.org/issue35766
-
- 11 Jun, 2019 9 commits
-
-
Paul Monson authored
-
Guido van Rossum authored
-
Benjamin Peterson authored
If preadv2 is not available, preadv will raise NotImplementedError.
-
Benjamin Peterson authored
This test "works" if things are run in the right order, so it's better to use @skip than @expectedFailure here.
-
Andrew Svetlov authored
If internal tasks weak set is changed by another thread during iteration. https://bugs.python.org/issue36607
-
Raymond Hettinger authored
-
aaronpaulhurst authored
closes bpo-35184: Fix XML_POOR_ENTROPY option that breaks makesetup parsing of pyexpat line in Setup. (GH-13064) When the line is uncommented, the equals character causes it to be incorrectly interpreted as a macro definition by makesetup. This results in invalid Makefile output. The expat code only requires XML_POOR_ENTROPY to be defined; the value is unnecessary.
-
Victor Stinner authored
Implement also MockNonBlockWriterIO.seek() method.
-
Victor Stinner authored
_pyio.IOBase destructor now does nothing if getting the closed attribute fails to better mimick _io.IOBase finalizer.
-
- 10 Jun, 2019 2 commits
-
-
Christian Heimes authored
Signed-off-by: Christian Heimes <christian@python.org> https://bugs.python.org/issue37215
-
Serhiy Storchaka authored
-
- 09 Jun, 2019 2 commits
-
-
Antoine Pitrou authored
-
Nick Coghlan authored
-
- 08 Jun, 2019 5 commits
-
-
Marcin Niemira authored
-
Raymond Hettinger authored
-
Rémi Lapeyre authored
Fix an unintended ValueError from :func:`subprocess.run` when checking for conflicting `input` and `stdin` or `capture_output` and `stdout` or `stderr` args when they were explicitly provided but with `None` values within a passed in `**kwargs` dict rather than as passed directly by name.
-
Ammar Askar authored
-
Philipp A authored
Currently, inspect.getfile(str) will report nonsense: ```pytb >>> inspect.getfile(str) TypeError: <module 'builtins' (built-in)> is a built-in class ``` This fixes that https://bugs.python.org/issue37173
-
- 07 Jun, 2019 11 commits
-
-
zygocephalus authored
There is a possibility that someone (like me) accidentally will omit parentheses with `FileType` arguments after `FileType`, and parser will contain wrong file until someone will try to use it. Example: ```python parser = argparse.ArgumentParser() parser.add_argument('-x', type=argparse.FileType) ``` https://bugs.python.org/issue37150
-
Jeroen Demeyer authored
-
Paul Monson authored
-
Victor Stinner authored
-
Victor Stinner authored
Replace two Python function calls with a single one to ensure that no memory allocation is done between the invalid object is created and when _PyObject_IsFreed() is called.
-
Jeroen Demeyer authored
-
Stefan Krah authored
-
Cheryl Sabella authored
* Change from Dummy_Editwin to DummyEditwin to match other tests.
-
Eric Wieser authored
-
Tal Einat authored
This avoids the search dialogs being hidden behind the editor window.
- 06 Jun, 2019 8 commits
-
-
Pablo Galindo authored
-
Zackery Spytz authored
-
websurfer5 authored
* bpo-36520: reset the encoded word offset when starting a new line during an email header folding operation *
📜 🤖 Added by blurb_it. * bpo-36520: add an additional test case, and provide descriptive comments for the test_folding_with_utf8_encoding_* tests * bpo-36520: fix whitespace issue * bpo-36520: changes per reviewer request -- remove extraneous backslashes; add whitespace between terminating quotes and line-continuation backslashes; use "bpo-" instead of "issue #" in comments -
Steve Dower authored
-
Victor Stinner authored
-
Walter Dörwald authored
In test_fromkeys() the derived test class now supports all arguments in its constructor so that the class to be tested can use its own constructor in its fromkeys() implementation. In test_mutatingiteration() the test fails as soon as iterating over a dictionary with one entry and adding new entries in the loop iterates more than once (to avoid endless loops in faulty implementations). https://bugs.python.org/issue2661
-
Inada Naoki authored
It is alias to mac_latin2 now.
-
Barry Warsaw authored
-
- 05 Jun, 2019 1 commit
-
-
Pablo Galindo authored
-