summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge 3.5Serhiy Storchaka2016-04-242-16/+0
|\
| * Remove duplicated tests.Serhiy Storchaka2016-04-242-16/+0
| | | | | | | | There were duplicated methods with the same name and body.
* | Remove unused support.run_unittest imports.Serhiy Storchaka2016-04-2415-15/+6
| | | | | | | | It is not needed since tests use unittest.main().
* | Issue #26249: Mention PyMem_Malloc() change in What's New in Python 3.6 in theVictor Stinner2016-04-241-0/+7
| | | | | | | | Optimizations section.
* | Issue #23277: Remove unused imports in tests.Serhiy Storchaka2016-04-2479-117/+23
| |
* | Issue #23277: Remove unused support.run_unittest import.Serhiy Storchaka2016-04-2415-16/+4
| |
* | Issue #23277: Remove more unused sys and os imports.Serhiy Storchaka2016-04-2413-15/+0
| |
* | Issue #26801: shutil.get_terminal_size() now handles the case of stdout isSerhiy Storchaka2016-04-242-1/+32
|\ \ | |/ | | | | reopened on Windows. Added tests for fallbacks.
| * Issue #26801: shutil.get_terminal_size() now handles the case of stdout isSerhiy Storchaka2016-04-242-1/+32
| | | | | | | | reopened on Windows. Added tests for fallbacks.
* | Issue #24911: Merge socket context manager doc from 3.5Martin Panter2016-04-242-37/+30
|\ \ | |/
| * Issue #24911: All socket objects are context managers; update examplesMartin Panter2016-04-242-37/+30
| |
* | Issue #23277: Remove unused sys and os importsBerker Peksag2016-04-2445-48/+6
| | | | | | | | Patch by Jon Dufresne.
* | Issue #23806: Merge susp-ignored.csv from 3.5Martin Panter2016-04-241-0/+1
|\ \ | |/
| * Issue #23806: Update susp-ignored.csvMartin Panter2016-04-241-0/+1
| |
* | Issue #26041: Remove "will be removed in Python 3.7" from description messagesBerker Peksag2016-04-244-11/+10
|\ \ | |/ | | | | | | | | | | We will keep platform.dist() and platform.linux_distribution() to make porting from Python 2 easier. Patch by Kumaripaba Miyurusara Athukorala.
| * Issue #26041: Remove "will be removed in Python 3.7" from description messagesBerker Peksag2016-04-244-11/+10
| | | | | | | | | | | | | | We will keep platform.dist() and platform.linux_distribution() to make porting from Python 2 easier. Patch by Kumaripaba Miyurusara Athukorala.
* | Issue #19731: Update copyright year in docs.p.o footerBerker Peksag2016-04-241-1/+1
|\ \ | |/ | | | | | | | | | | See https://mail.python.org/pipermail/python-legal-sig/2013-November/000059.html for details. Patch by Antoine Pitrou.
| * Issue #19731: Update copyright year in docs.p.o footerBerker Peksag2016-04-241-1/+1
| | | | | | | | | | | | | | See https://mail.python.org/pipermail/python-legal-sig/2013-November/000059.html for details. Patch by Antoine Pitrou.
* | Issue #18572: Remove redundant note about surrogates in string escape docBerker Peksag2016-04-241-2/+1
|\ \ | |/
| * Issue #18572: Remove redundant note about surrogates in string escape docBerker Peksag2016-04-241-2/+1
| |
* | Issue #18353: Remove PyUnicode_WRITE_CHAR macro link from c-api/unicode.rstBerker Peksag2016-04-241-2/+1
|\ \ | |/ | | | | Patch by Corey Brune.
| * Issue #18353: Remove PyUnicode_WRITE_CHAR macro link from c-api/unicode.rstBerker Peksag2016-04-241-2/+1
| | | | | | | | Patch by Corey Brune.
* | Issue #21382: Clarify signal.signal() documentation on WindowsBerker Peksag2016-04-231-0/+3
|\ \ | |/ | | | | | | | | | | | | All signal.SIG* constants may not be defined on Windows so a call like signal.signal(signal.SIGPIPE, lambda signum, frame: sys.exit(1)) will raise an AttributeError.
| * Issue #21382: Clarify signal.signal() documentation on WindowsBerker Peksag2016-04-231-0/+3
| | | | | | | | | | | | | | | | All signal.SIG* constants may not be defined on Windows so a call like signal.signal(signal.SIGPIPE, lambda signum, frame: sys.exit(1)) will raise an AttributeError.
* | Issue #26089: Remove duplicate field 'license' from DistributionMetadataBerker Peksag2016-04-231-2/+1
| | | | | | | | | | | | It was renamed to 'license' in 178d19cff163. Patch by Augustin Laville.
* | Issue #20112: Improve BaseHTTPRequestHandler.error_message_format documentationBerker Peksag2016-04-231-18/+11
|\ \ | |/ | | | | | | | | | | | | * Explain how 'error_message_format' is used by 'send_error' method * Mention that 'responses' is used by 'send_response_only' and 'send_error' methods * Replace 'class variables' with 'attributes' Initial patch by Anastasia Filatova.
| * Issue #20112: Improve BaseHTTPRequestHandler.error_message_format documentationBerker Peksag2016-04-231-18/+11
| | | | | | | | | | | | | | | | * Explain how 'error_message_format' is used by 'send_error' method * Mention that 'responses' is used by 'send_response_only' and 'send_error' methods * Replace 'class variables' with 'attributes' Initial patch by Anastasia Filatova.
* | Issue #26822: itemgetter, attrgetter and methodcaller objects no longerSerhiy Storchaka2016-04-233-0/+18
|\ \ | |/ | | | | silently ignore keyword arguments.
| * Issue #26822: itemgetter, attrgetter and methodcaller objects no longerSerhiy Storchaka2016-04-233-0/+18
| | | | | | | | silently ignore keyword arguments.
* | merge 3.5 (#26827)Benjamin Peterson2016-04-231-1/+1
|\ \ | |/
| * fix python 3 mod init function declaration (closes #26827)Benjamin Peterson2016-04-231-1/+1
| |
* | Issue #26733: Disassembling a class now disassembles class and static methods.Serhiy Storchaka2016-04-234-8/+60
|\ \ | |/ | | | | Patch by Xiang Zhang.
| * Issue #26733: Disassembling a class now disassembles class and static methods.Serhiy Storchaka2016-04-234-8/+60
| | | | | | | | Patch by Xiang Zhang.
* | merge 3.5Senthil Kumaran2016-04-231-0/+5
|\ \ | |/ | | | | Document no_proxy environment variable in python 3.x #issue23806
| * Issue23806 - Document the no_proxy environment variable in Python 3 docs.Senthil Kumaran2016-04-231-0/+5
| |
* | Issue #22359: Merge cross-compilation fix from 3.5Martin Panter2016-04-234-7/+27
|\ \ | |/
| * Issue #22359: Disable running cross-compiled _freeze_importlib and pgenMartin Panter2016-04-234-7/+27
| | | | | | | | Patch by Xavier de Gaye.
* | Issue #26249: Try test_capi on WindowsVictor Stinner2016-04-221-6/+7
| |
* | PyMem_Malloc() now uses the fast pymalloc allocatorVictor Stinner2016-04-225-32/+58
| | | | | | | | | | | | | | Issue #26249: PyMem_Malloc() allocator family now uses the pymalloc allocator rather than system malloc(). Applications calling PyMem_Malloc() without holding the GIL can now crash: use PYTHONMALLOC=debug environment variable to validate the usage of memory allocators in your application.
* | [minor] Doc fix in old python doc.Senthil Kumaran2016-04-211-1/+1
| |
* | Merge 3.5Victor Stinner2016-04-201-10/+4
|\ \ | |/
| * gdb/libpython.py: inline _type_void_ptr()Victor Stinner2016-04-201-10/+4
| | | | | | | | The function was only called in _sizeof_void_p()
* | Merge 3.5Victor Stinner2016-04-201-2/+2
|\ \ | |/
| * Issue #26799: Fix typo in Misc/NEWSVictor Stinner2016-04-201-2/+2
| |
* | Merge 3.5: Issue #26799Victor Stinner2016-04-203-14/+39
|\ \ | |/
| * python-gdb.py: get C types at runtimeVictor Stinner2016-04-203-14/+39
| | | | | | | | | | | | | | | | Issue #26799: Fix python-gdb.py: don't get once C types when the Python code is loaded, but get C types on demande. The C types can change if python-gdb.py is loaded before the Python executable. Patch written by Thomas Ilsche.
* | Issue #21668: Add also Chi Hsuan Yen to Misc/ACKSVictor Stinner2016-04-201-0/+1
| |
* | Issue #21668: Fix author of the patch.Victor Stinner2016-04-201-1/+1
| | | | | | | | | | Sorry, it was hard to retrieve the original author of the patch in this issue with a long history and many authors.
* | Additional grammar fixMartin Panter2016-04-191-1/+1
| |
* | Merge doc and comment fixes from 3.5Martin Panter2016-04-1911-15/+15
|\ \ | |/