Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | bpo-30177: pathlib: include the full path in resolve(strict=False) (#1893) | Antoine Pietri | 2017-06-07 | 1 | -0/+1 | |
| | ||||||
* | bpo-30095: Make CSS classes used by calendar.HTMLCalendar customizable (GH-1439) | Oz N Tiram | 2017-06-06 | 1 | -0/+1 | |
| | | | Several class attributes have been added to calendar.HTMLCalendar that allow customization of the CSS classes used in the resulting HTML. This can be done by subclasses HTMLCalendar and overwriting those class attributes (Patch by Oz Tiram). | |||||
* | bpo-24899: Add comparison table for os.path -> pathlib (GH-1753) | Jamiel Almeida | 2017-06-02 | 1 | -4/+5 | |
| | ||||||
* | bpo-30245: Fix possible overflow when organize struct.pack_into error ↵ | Johan Liu | 2017-06-02 | 1 | -0/+1 | |
| | | | | message (#1682) | |||||
* | bpo-29851: Have importlib.reload() raise ImportError if the module's spec is ↵ | Garvit Khatri | 2017-05-24 | 1 | -0/+1 | |
| | | | | not found (GH-972) | |||||
* | bpo-30395 _PyGILState_Reinit deadlock fix (#1734) | Jason Fried | 2017-05-22 | 1 | -0/+1 | |
| | | | | head_lock could be held by another thread when fork happened. We should reset it to avoid deadlock. | |||||
* | bpo-27945: Fixed various segfaults with dict. (#1657) | Serhiy Storchaka | 2017-05-20 | 1 | -0/+1 | |
| | | | | Based on patches by Duane Griffin and Tim Mitchell. | |||||
* | bpo-17188: DOC: Document 'from None' in raise statement (#1671) | csabella | 2017-05-20 | 1 | -0/+1 | |
| | | | | | Original patch by Dennis Mårtensson. | |||||
* | bpo-30357: test_thread now uses threading_cleanup() (#1592) | Victor Stinner | 2017-05-15 | 1 | -0/+1 | |
| | | | | | | | test_thread: setUp() now uses support.threading_setup() and support.threading_cleanup() to wait until threads complete to avoid random side effects on following tests. Co-Authored-By: Grzegorz Grzywacz <grzegorz.grzywacz@nazwa.pl> | |||||
* | bpo-30178: Add Jim Fasarakis-Hilliard to Misc/ACKS (GH-1572) | Mariatta | 2017-05-13 | 1 | -0/+1 | |
| | ||||||
* | bpo-28787: Fix out of tree --with-dtrace builds (#135) | stratakis | 2017-05-10 | 1 | -0/+1 | |
| | | | | | | | | * bpo-28787: Fix out of tree --with-dtrace builds * Unsilence directory creation * Add Misc/NEWS and Misc/ACKS entries | |||||
* | bpo-29243: Fix Makefile with respect to --enable-optimizations (#1478) | torsava | 2017-05-05 | 1 | -0/+1 | |
| | | | | | | | | | | | | | * bpo-29243: Fix Makefile with respect to --enable-optimizations When using the Profile Guided Optimization (./configure --enable-optimizations) Python is built not only during `make` but rebuilt again during `make test`, `make install` and others. This patch fixes the issue. Note that this fix produces no change at all in the Makefile if configure is run witout --enable-optimizations. * !squash | |||||
* | bpo-30101: Add support for curses.A_ITALIC. (#1015) | Eijebong | 2017-04-26 | 1 | -0/+1 | |
| | ||||||
* | bpo-29751: add Cheryl Sabella to Misc/ACKS (GH-1268) | Mariatta | 2017-04-24 | 1 | -0/+1 | |
| | ||||||
* | bpo-29960 _random.Random corrupted on exception in setstate(). (#1019) | bladebryan | 2017-04-22 | 1 | -0/+1 | |
| | ||||||
* | bpo-12414: Update code_sizeof() to take in account co_extra memory. (#1168) | Dong-hee Na | 2017-04-20 | 1 | -0/+1 | |
| | ||||||
* | bpo-29738: Add Olivier Vielpeau to Misc/ACKS (GH-1146) | Mariatta | 2017-04-15 | 1 | -0/+1 | |
| | ||||||
* | bpo-29869: Add Nevada Sanchez to Misc/ACKS (GH-1125) | Mariatta | 2017-04-14 | 1 | -1/+2 | |
| | ||||||
* | bpo-29692: Add missing ACKS entry (#1079) | Nick Coghlan | 2017-04-11 | 1 | -0/+1 | |
| | ||||||
* | bpo-29506: Clarify deep copy note in copy module | Sanyam Khurana | 2017-04-09 | 1 | -0/+1 | |
| | | | | | | The reference to administrative data was confusing to readers, so this simplifies the note to explain that deep copying may copy more then you intended, such as data that you expected to be shared between copies. | |||||
* | bpo-28837: Fix lib2to3 handling of map/zip/filter calls when followed with a ↵ | Stuart Berg | 2017-04-06 | 1 | -0/+1 | |
| | | | | 'trailer', e.g. zip()[x] (#24) | |||||
* | bpo-19225: Add a table of warning names and missed exception names in C API ↵ | cocoatomo | 2017-04-02 | 1 | -0/+1 | |
| | | | | | doc (#881) Move the `.. index` directive to more appropriate place. | |||||
* | bpo-29957: change LBYL key lookup to dict.setdefault (#938) | Michael Selik | 2017-04-02 | 1 | -0/+1 | |
| | | | | | | | | | | | | | * change LBYL key lookup to dict.setdefault The ``results`` was constructed as a defaultdict and we could simply delete the check ``if key not in results``. However, I think it's safer to use dict.setdefault as I'm not sure whether the caller expects a regular dict or defaultdict. * add name to the acknowledgements file * use defaultdict to make the key-lookup cleaner | |||||
* | bpo-29913: deprecate compare_networks() in documentation (GH-865) | s-sanjay | 2017-03-30 | 1 | -0/+1 | |
| | ||||||
* | faulthandler: Restore the old sigaltstack during teardown (#777) | Christophe Zeitouny | 2017-03-23 | 1 | -0/+1 | |
| | ||||||
* | bpo-29800: Fix crashes in partial.__repr__ if the keys of partial.keywords ↵ | Michael Seifert | 2017-03-15 | 1 | -0/+1 | |
| | | | | are not strings (#649) | |||||
* | bpo-28624: Add a test that checks that cwd parameter of Popen() accepts ↵ | Sayan Chowdhury | 2017-02-26 | 1 | -0/+1 | |
| | | | | PathLike objects (#157) | |||||
* | bpo-26128: Added __init__to subprocess.STARTUPINFO (#171) | Subhendu Ghosh | 2017-02-25 | 1 | -0/+1 | |
| | | | | | | | The Windows-specific subprocess.STARTUPINFO class now accepts keyword-only arguments to its constructor to set the various data attributes. Patch by Subhendu Ghosh. | |||||
* | bpo-16285: Update urllib quoting to RFC 3986 (#173) | Ratnadeep Debnath | 2017-02-25 | 1 | -1/+3 | |
| | | | | | | | | | | * 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. | |||||
* | bpo-24241: Improve preferred webbrowser handling (#85) | David Steele | 2017-02-25 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | | | - 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. | |||||
* | bpo-29521 update Misc/ACKS (#106) | Mariatta | 2017-02-15 | 1 | -0/+1 | |
| | ||||||
* | Issue #29534: move Misc/NEWS entry to correct section; add Misc/ACS entry ↵ | Mark Dickinson | 2017-02-14 | 1 | -0/+1 | |
| | | | | for Andrew Nester. (#99) | |||||
* | Merge issue #26355 fix from 3.6 | Nick Coghlan | 2017-02-09 | 1 | -0/+1 | |
|\ | ||||||
| * | Merge issue #26355 fix from Python 3.5 | Nick Coghlan | 2017-02-09 | 1 | -0/+1 | |
| |\ | ||||||
| | * | Issue #26355: Specify canonical URLs in docs pages | Nick Coghlan | 2017-02-09 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | | | | | | Add canonical header link on each page to corresponding major version of the documentation. Patch by Matthias Bussonnier. | |||||
| | * | Issue #29119: Fix weakref in OrderedDict.move_to_end(). Work by Andra Bogildea. | Raymond Hettinger | 2016-12-31 | 1 | -0/+1 | |
| | | | ||||||
* | | | Issue #29326: Ignores blank lines in ._pth files (Patch by Alexey Izbyshev) | Steve Dower | 2017-02-04 | 1 | -0/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #29326: Ignores blank lines in ._pth files (Patch by Alexey Izbyshev) | Steve Dower | 2017-02-04 | 1 | -0/+1 | |
| | | | ||||||
* | | | merge | Raymond Hettinger | 2016-12-31 | 1 | -0/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #29119: Merge in ACK from 3.5 branch | Raymond Hettinger | 2016-12-31 | 1 | -0/+1 | |
| | | | ||||||
* | | | merge | Raymond Hettinger | 2016-12-30 | 1 | -0/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #29061: secrets.randbelow() would hang with a negative input | Raymond Hettinger | 2016-12-30 | 1 | -0/+1 | |
| | | | ||||||
* | | | Merge 3.6 | Victor Stinner | 2016-12-30 | 1 | -0/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Merge 3.5 | Victor Stinner | 2016-12-30 | 1 | -0/+1 | |
| |\ \ | | |/ | ||||||
| | * | Issue #29109: Enhance tracemalloc documentation | Victor Stinner | 2016-12-30 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Wrong parameter name, 'group_by' instead of 'key_type' * Don't round up numbers when explaining the examples. If they exactly match what can be read in the script output, it is to easier to understand (4.8 MiB vs 4855 KiB) * Fix incorrect method link that was pointing to another module Patch written by Loic Pefferkorn. | |||||
* | | | Issue #13051: Fixed recursion errors in large or resized curses.textpad.Textbox. | Serhiy Storchaka | 2016-12-28 | 1 | -0/+1 | |
|\ \ \ | |/ / | | | | | | | Based on patch by Tycho Andersen. | |||||
| * | | Issue #13051: Fixed recursion errors in large or resized curses.textpad.Textbox. | Serhiy Storchaka | 2016-12-28 | 1 | -0/+1 | |
| |\ \ | | |/ | | | | | | | Based on patch by Tycho Andersen. | |||||
| | * | Issue #13051: Fixed recursion errors in large or resized curses.textpad.Textbox. | Serhiy Storchaka | 2016-12-28 | 1 | -0/+1 | |
| | | | | | | | | | | | | Based on patch by Tycho Andersen. | |||||
* | | | Issue #29078: Merge 3.6. | Xiang Zhang | 2016-12-27 | 1 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #29078: Merge 3.5. | Xiang Zhang | 2016-12-27 | 1 | -1/+1 | |
| |\ \ | | |/ |