- 28 Feb, 2017 5 commits
-
-
Donald Stufft authored
Discussed at https://github.com/python/core-workflow/issues/32.
-
Xiang Zhang authored
-
INADA Naoki authored
-
Evan Klitzke authored
-
Xiang Zhang authored
-
- 27 Feb, 2017 6 commits
-
-
Berker Peksag authored
-
Berker Peksag authored
-
Mariatta authored
-
INADA Naoki authored
reported by Alexis Lopez-Garcia.
-
Xiang Zhang authored
-
Xiang Zhang authored
-
- 26 Feb, 2017 10 commits
-
-
Mariatta authored
-
Sayan Chowdhury authored
-
Mariatta authored
Mention that an ImportError is raised when exec_module() is defined, but create_module() is not.
-
Berker Peksag authored
Patch by Aviv Palivoda.
-
Marco Buttu authored
-
Berker Peksag authored
Patch by Aviv Palivoda.
-
Marco Buttu authored
Add a reference to create_module(), in the first versionadded of section Loaders.
-
INADA Naoki authored
follow up of GH-162
-
Berker Peksag authored
-
Matthias Bussonnier authored
Patch by Matthias Bussonnier.
-
- 25 Feb, 2017 9 commits
-
-
Jim Fasarakis-Hilliard authored
* Fix small typos in introduction and datastructures * Use iterable instead of L in the doc for list.extend
-
Mariatta authored
-
Mariatta authored
-
Subhendu Ghosh authored
The Windows-specific subprocess.STARTUPINFO class now accepts keyword-only arguments to its constructor to set the various data attributes. Patch by Subhendu Ghosh.
-
Ratnadeep Debnath authored
* bpo-16285: Update urllib quoting to RFC 3986 urllib.parse.quote is now based on RFC 3986, and hence includes `'~'` in the set of characters that is not escaped by default. Patch by Christian Theune and Ratnadeep Debnath.
-
Nick Coghlan authored
When checking for the default X web browser, xdg-settings may emit messages on stderr if some components (such as kreadconfig5) are unavailable. These messages aren't of interest to Python, so we just ignore them.
-
Nick Coghlan authored
-
David Steele authored
- Add 'preferred' argument to webbrowser.register - Use xdg-settings to specify preferred X browser The first change replaces the existing undocumented tri-state 'try_order' parameter with the documented boolean keyword-only 'preferred' parameter. Setting it to True places the browser at the front of the list, preferring it as the return to a subsequent get() call. The second change adds a private `_os_preferred_browser` setting and then uses that to make the default browser reported by `xdg-settings` first in the try list when running under X (or another environment that sets the `DISPLAY` variable). This avoids the problem where the first entry in the tryorder queue otherwise defaults to xdg-open, which doesn't support the "new window" option.
-
Mariatta authored
mention bpo-28929 in the Documentation section of What's New in Python 3.7.0 alpha 1
-
- 24 Feb, 2017 7 commits
-
-
Jim Fasarakis-Hilliard authored
-
Barry Warsaw authored
* bpo-25008: Deprecate smtpd and point to aiosmtpd. * Simplify the aiosmtpd URL.
-
Ivan Levkivskyi authored
-
Matthias Bussonnier authored
Was bumped in the docstring by b9f4feab but not in `__version__`
-
Matthias Bussonnier authored
-
Louie Lu authored
-
Ivan Levkivskyi authored
-
- 23 Feb, 2017 3 commits
-
-
Steve Dower authored
-
INADA Naoki authored
bpo-29463 added optional "docstring" field to 4 AST types. While it is optional, it breaks backward compatibility because AST constructor requires number of positional argument is same to number of fields. AST types accepts empty arguments, and incomplete keyword arguments. But it's not big problem because field can be filled after creation, and checked when compiling. So stop requiring complete set of fields for positional arguments too.
-
Victor Stinner authored
Add a comment to prevent further attempts to avoid a copy for optimization.
-