Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-25684: ttk.OptionMenu radiobuttons weren't unique (GH-2276) (GH-2960) | Cheryl Sabella | 2017-09-10 | 1 | -0/+1 |
| | | | | | ttk.OptionMenu radiobuttons weren't unique between instances of OptionMenu. (cherry picked from commit a568e5273382a5dca0c27274f7d8e34c41a87d4d) | ||||
* | [2.7] bpo-31107: Fix copyreg mangled slot names calculation. (GH-2989). (#3004) | Shane Harvey | 2017-08-05 | 1 | -0/+1 |
| | | | (cherry picked from commit c4c9866064f03646c686d7e08b00aeb203c35c19) | ||||
* | [2.7] bpo-30964: Mention ensurepip in package installation docs (GH-2795) | Nicholas | 2017-07-21 | 1 | -0/+1 |
| | | | | | | | | Adds a new 'Pip not installed' section that covers running `ensurepip` manually, and also references the relevant section of the Python Packaging User Guide. (cherry picked from commit b3527bfefd7a0188d43a2d7515ac6addd97a8202) | ||||
* | bpo-30500: urllib: Simplify splithost by calling into urlparse. (#1849) (#2294) | Victor Stinner | 2017-06-20 | 1 | -0/+1 |
| | | | | | | | | | The current regex based splitting produces a wrong result. For example:: http://abc#@def Web browsers parse that URL as ``http://abc/#@def``, that is, the host is ``abc``, the path is ``/``, and the fragment is ``#@def``. (cherry picked from commit 90e01e50ef8a9e6c91f30d965563c378a4ad26de) | ||||
* | [2.7] bpo-30657: Check & prevent integer overflow in PyString_DecodeEscape ↵ | Jay Bosamiya | 2017-06-18 | 1 | -0/+1 |
| | | | | (#2174) | ||||
* | [2.7] bpo-29960 _random.Random corrupted on exception in setstate(). … (#1289) | Mariatta | 2017-05-27 | 1 | -0/+1 |
| | | | (cherry picked from commit 9616a82e7802241a4b74cf7ae38d43c37bf66e48) | ||||
* | bpo-30409: locale.getpreferredencoding doesn't return result (#1672) | Sean McCully | 2017-05-21 | 1 | -0/+1 |
| | |||||
* | [2.7] bpo-27945: Fixed various segfaults with dict. (GH-1657) (#1681) | Serhiy Storchaka | 2017-05-20 | 1 | -0/+1 |
| | | | | | Based on patches by Duane Griffin and Tim Mitchell. (cherry picked from commit 753bca3934a7618a4fa96e107ad1c5c18633a683) | ||||
* | bpo-30357 each test in test_thread waits until all spawned threads finish ↵ | grzgrzgrz3 | 2017-05-15 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | (#1583) * bpo-30357 each test in test_thread waits until all spawn threads finish * bpo-30357 each test in test_thread waits until all spawn threads finish * bpo-30357: test_thread now uses threading_cleanup() (#1592) 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: Victor Stinner <victor.stinner@gmail.com> * bpo-30357: test_thread now uses threading_cleanup() (#1592) 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: Victor Stinner <victor.stinner@gmail.com> | ||||
* | [2.7] bpo-29243: Fix Makefile with respect to --enable-optimizations ↵ | torsava | 2017-05-09 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | (GH-1478) (#1522) * 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. (cherry picked from commit a1054c3b0037d4c2a5492e79fc193f36245366c7) | ||||
* | bpo-29506: Clarify deep copy note in copy module | Nick Coghlan | 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. Patch by Sanyam Khurana. | ||||
* | [2.7] bpo-19225: Lack of c api exceptions doc (#964) | cocoatomo | 2017-04-08 | 1 | -0/+1 |
| | | | | | | * Keep the c-api exception doc up-to-date cherry-pick'ed from ec1f5df..e3d6db3 and fix conflict | ||||
* | Issue #28768: Fix implicit declaration of function _setmode. Patch by ↵ | Steve Dower | 2016-12-28 | 1 | -1/+2 |
| | | | | Masayuki Yamamoto | ||||
* | 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: Add the missing import in datetime.time doc example. | Xiang Zhang | 2016-12-27 | 1 | -0/+1 |
| | | | | Patch by Dhushyanth Ramasamy. | ||||
* | Issue #10656: Fix out-of-tree building on AIX | Martin Panter | 2016-11-20 | 1 | -0/+2 |
| | | | | | The ld_so_aix script and python.exp file are created in the build directory. Patch by Tristan Carel and Michael Haubenwallner. | ||||
* | Issue #28000: Fix gethostbyname_r() usage on AIX with _LINUX_SOURCE_COMPAT | Martin Panter | 2016-11-14 | 1 | -0/+1 |
| | | | | Patch by Matthieu S. | ||||
* | Issue #28616: Correct help for sys.version_info releaselevel component. | Ned Deily | 2016-11-04 | 1 | -0/+1 |
| | | | | Patch by Anish Tambe. | ||||
* | Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator when | Serhiy Storchaka | 2016-11-03 | 1 | -0/+1 |
| | | | | | the garbage collector is invoked in other thread. Based on patch by Sebastian Cufre. | ||||
* | Issue #26240: Clean up the subprocess module doc string | Martin Panter | 2016-10-26 | 1 | -0/+1 |
| | | | | Patch by Tim Mitchell. | ||||
* | Issue #28435: Avoid no_proxy environment variable interfering with tests | Martin Panter | 2016-10-22 | 1 | -0/+1 |
| | | | | Patch by Piotr Szczepaniak. | ||||
* | Issue #18287: PyType_Ready() now checks that tp_name is not NULL. | Serhiy Storchaka | 2016-10-07 | 1 | -0/+1 |
| | | | | Original patch by Niklas Koep. | ||||
* | Issue #28815: Change '?' to '<module>' in some doc examples. | Terry Jan Reedy | 2016-09-30 | 1 | -0/+1 |
| | | | | Patch by Mariatta Wijaya. | ||||
* | IDLE NEWS item and ack. | Terry Jan Reedy | 2016-09-29 | 1 | -0/+1 |
| | |||||
* | Issue #27806: add Aleks to Misc/ACKS. | Ned Deily | 2016-09-18 | 1 | -0/+1 |
| | |||||
* | Issue #27934: Use float.__repr__ instead of plain repr when JSON-encoding an ↵ | Mark Dickinson | 2016-09-03 | 1 | -0/+1 |
| | | | | instance of a float subclass. Thanks Eddie James. | ||||
* | # 2466: ismount now recognizes mount points user can't access. | R David Murray | 2016-08-23 | 1 | -0/+1 |
| | | | | Patch by Robin Roth, backport by Xiang Zhang. | ||||
* | Prevent HTTPoxy attack (CVE-2016-1000110) | Senthil Kumaran | 2016-07-30 | 1 | -0/+1 |
| | | | | | | | Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue reported and patch contributed by Rémi Rampin. | ||||
* | Issue #27490: Do not build pgen when cross-compiling | Martin Panter | 2016-07-28 | 1 | -0/+1 |
| | | | | | | | | The dependendency on the $(PGEN) variable must only be set when not cross-compiling. When cross-compiling, $(PGEN) will not be used, so no need to build it. Patch by Thomas Perl. | ||||
* | Issue #25393: Fix probable copy/paste error in resource docs | Zachary Ware | 2016-07-19 | 1 | -0/+1 |
| | | | | Patch by Alakshendra Yadav. | ||||
* | Issue #27238: Got rid of bare excepts in the turtle module. Original patch | Serhiy Storchaka | 2016-06-14 | 1 | -0/+1 |
| | | | | by Jelle Zijlstra. | ||||
* | #16484: Change PYTHONDOCS to "https:", and fix links to use lowercase | Martin Panter | 2016-06-12 | 1 | -0/+1 |
| | | | | Implementation by Sean Rodman; test by Kaushik Nadikuditi. | ||||
* | Issue #25738: Don’t send message body for 205 Reset Content | Martin Panter | 2016-06-08 | 1 | -0/+1 |
| | | | | Patch by Susumu Koshiba. | ||||
* | Issue 25926: Clarify that the pure python equivalents are only approximate. | Raymond Hettinger | 2016-05-28 | 1 | -0/+1 |
| | |||||
* | Issue #27076: Doc, comment and test function name spelling fixes | Martin Panter | 2016-05-26 | 1 | -0/+1 |
| | | | | Most fixes to Doc/ and Lib/ directories by Ville Skyttä. | ||||
* | Issue #27039: Fixed bytearray.remove() for values greater than 127. | Serhiy Storchaka | 2016-05-16 | 1 | -0/+1 |
| | | | | Patch by Joe Jevnik. | ||||
* | Fix python-gdb.py: get C types on demand | Victor Stinner | 2016-04-20 | 1 | -0/+1 |
| | | | | | | Issue #26799: Fix python-gdb.py: don't get C types once when the Python code is loaded, but get C types on demand. The C types can change if python-gdb.py is loaded before the Python executable. Patch written by Thomas Ilsche. | ||||
* | Issue #23735: Add SIGWINCH handler for Readline 6.3+ support, by Eric Price | Martin Panter | 2016-04-03 | 1 | -0/+1 |
| | |||||
* | #26250: document the sqlite3.Cursor.connection attribute. Initial patches ↵ | Ezio Melotti | 2016-03-18 | 1 | -0/+1 |
| | | | | by Aviv Palivoda and Varpu Rantala. | ||||
* | #24918: fix CSS for code blocks when a side box is present. Patch by Manvi B. | Ezio Melotti | 2016-03-13 | 1 | -0/+1 |
| | |||||
* | #25687: clarify that errors in tearDown increase the total number of ↵ | Ezio Melotti | 2016-03-13 | 1 | -0/+1 |
| | | | | reported errors. Initial patch by HyeSoo Park. | ||||
* | Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch by | Serhiy Storchaka | 2016-03-12 | 1 | -0/+1 |
| | | | | Tamás Bence Gedai. | ||||
* | Issue #16851: Add Anna Koroliuk to Misc/ACKS | Victor Stinner | 2016-03-11 | 1 | -0/+1 |
| | |||||
* | Issue #26505: Fix typos in getaddrinfo license text. | Ned Deily | 2016-03-07 | 1 | -0/+1 |
| | | | | Patch by Alex Willmer. | ||||
* | #26246: update copybutton.js after JQuery update. Patch by Liang-Bo Wang. | Ezio Melotti | 2016-02-27 | 1 | -0/+1 |
| | |||||
* | Issue #12923: Reset FancyURLopener's redirect counter even on exception | Martin Panter | 2016-02-04 | 1 | -0/+1 |
| | | | | Based on patches by Brian Brazil and Daniel Rocco. | ||||
* | Issue #26244: Clarify default zlib compression level in documentation | Martin Panter | 2016-02-03 | 1 | -0/+1 |
| | | | | Based on patch by Aviv Palivoda. | ||||
* | Issue #19023: Document ctypes array and pointer classes | Martin Panter | 2016-01-29 | 1 | -0/+1 |
| | | | | Also add some more tests. Based on patch by Sye van der Veen. | ||||
* | Issue #26106: doc: Move text of licenses to parsed literal block | Victor Stinner | 2016-01-21 | 1 | -0/+1 |
| | | | | | | | This change helps to ignore text of PSF, BEOPEN.com and CNRI licenses when translating the documentation. Patch written by Julien Palard who is translating Python 3.5 doc to french. Text of other licenses already used preformatted format. | ||||
* | Issue #25697: Fixed rough alphabetical order in Misc/ACKS. | Serhiy Storchaka | 2015-11-25 | 1 | -15/+14 |
| |