- 09 Aug, 2017 5 commits
-
-
Victor Stinner authored
PtyTests.run_child() now calls os.waitpid() to read the exit status of the child process to avoid creating zombie process and leaking processes in the background.
-
Julien Palard authored
This fix a regex issue (a missing non-matching group around an 'or' list) and the specific possible case where a translation is built but not yet in known by the picker, but not explicitly listing possible languages in the regex.
-
Jeffrey Rackauckas authored
bpo-31072: Add a filter argument to zipapp.create_archive (GH-3021) * Add an include_file argument to allow callers to decide which files to include * Document the new argument
-
Serhiy Storchaka authored
-
Ammar Askar authored
-
- 08 Aug, 2017 2 commits
-
-
Julien Palard authored
-
Victor Stinner authored
bpo-31135: Call the parent destroy() method even if the used attribute doesn't exist. The LabeledScale.destroy() method now also explicitly clears label and scale attributes to help the garbage collector to destroy all widgets.
-
- 07 Aug, 2017 3 commits
-
-
Terry Jan Reedy authored
Initial patch by Victor Stinner.
-
Terry Jan Reedy authored
-
Julien authored
* Doc: Indicate the language * Renaming version_switcher to switchers (to add language_switcher). * Adding language switch. * Doc switchers: Enhance readability of regex parsing versions. * Doc switchers: Desambiguate the need of a replace(/\/+$/g, '') by proper naming. * Doc switchers: py3k can't reach js, it's redirected server-side by nginx. * Doc switchers: Examples matching actual regexes. * Doc switchers: Better fallback on unexisting translated version.
-
- 05 Aug, 2017 1 commit
-
-
Gregory P. Smith authored
-
- 04 Aug, 2017 4 commits
-
-
Brett Cannon authored
-
Łukasz Langa authored
-
Yuan Chao Chou authored
Change the shadowing naming, 'value' (Python-ast.c:4652), to 'val' to prevent the variables from being misused.
-
Shane Harvey authored
-
- 03 Aug, 2017 5 commits
-
-
INADA Naoki authored
* remove hashpos parameter from lookdict functions. * remove many duplicated code from lookdict functions.
-
Mike DePalatis authored
"not only is it .." is the correct form, as opposed to: "not only it is ..."
-
Serhiy Storchaka authored
Previously any exception was replaced with a KeyError exception.
-
Serhiy Storchaka authored
when other arguments are passed.
-
Ville Skyttä authored
-
- 02 Aug, 2017 3 commits
-
-
R. David Murray authored
-
Preston Landers authored
-
Alexander Mohr authored
-
- 01 Aug, 2017 8 commits
-
-
Łukasz Langa authored
-
Yury Selivanov authored
-
Cooper Lees authored
* Add in is_mount() call to pathlib.Path similiar to os.path.ismount(path) * Add tests for is_mount()
-
Brett Cannon authored
-
favll authored
-
csabella authored
Add template as comment. Update existing classes to match outline. Initial patch by Cheryl Sabella.
-
Mariatta authored
-
Mariatta authored
Copied over info from .mention-bot
-
- 31 Jul, 2017 5 commits
-
-
scoder authored
According to the comment, there was previously a call to PyObject_IsSubclass() involved which could fail, but since it was replaced with a call to PyType_IsSubtype(), it can no longer fail.
-
Mariatta authored
Use the copy provided in https://bugs.python.org/issue25910#msg295200
-
Alexander Belopolsky authored
* Closes issue bpo-5288: Allow tzinfo objects with sub-minute offsets. * bpo-5288: Implemented %z formatting of sub-minute offsets. * bpo-5288: Removed mentions of the whole minute limitation on TZ offsets. * bpo-5288: Removed one more mention of the whole minute limitation. Thanks @csabella! * Fix a formatting error in the docs * Addressed review comments. Thanks, @haypo.
-
Zackery Spytz authored
k + 1 was calculated with k = NULL.
-
csabella authored
between instances of OptionMenu.
-
- 30 Jul, 2017 4 commits
-
-
csabella authored
The slightly modified tests for the General tab continue to pass. Patch by Cheryl Sabella.
-
Vinay Sajip authored
-
csabella authored
The slightly modified tests continue to pass. The General test broken by the switch to Notebook is fixed. Patch mostly by Cheryl Sabella.
-
Terry Jan Reedy authored
-