summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge with 3.5Zachary Ware2016-08-301-1/+5
|\
| * Skip test_tools.test_i18n when pygettext.py is missingZachary Ware2016-08-301-1/+5
| |
* | Merge with 3.5Zachary Ware2016-08-301-1/+1
|\ \ | |/
| * Include test/test_warnings/data as wellZachary Ware2016-08-301-1/+1
| |
* | Merge with 3.5Zachary Ware2016-08-301-0/+1
|\ \ | |/
| * Include test_tools and test_warnings in installZachary Ware2016-08-301-0/+1
| | | | | | | | | | | | | | test_tools is pretty much useless unless somebody copies the scripts it tests into the proper location, but we might as well install it anyway to make sure it skips properly. test_warnings just didn't get included when it was turned into a package in 94966dfd3bd3.
* | Merge with 3.5Zachary Ware2016-08-301-1/+1
|\ \ | |/
| * Fix typoZachary Ware2016-08-301-1/+1
| |
* | Merge headsMark Dickinson2016-08-292-0/+4
|\ \
| * | - Issue #23968, keep platform_triplet and multiarch macros in syncdoko@ubuntu.com2016-08-292-0/+4
| | |
* | | Issue #27870: A left shift of zero by a large integer no longer attempts to ↵Mark Dickinson2016-08-293-0/+23
|/ / | | | | | | allocate large amounts of memory.
* | Issue #25402: in int-to-decimal-string conversion, reduce intermediate ↵Mark Dickinson2016-08-292-8/+15
| | | | | | | | storage requirements and relax restriction on converting large integers. Patch by Serhiy Storchaka.
* | Issue #27214: Fix potential bug and remove useless optimization in ↵Mark Dickinson2016-08-292-2/+8
| | | | | | | | long_invert. Thanks Oren Milman.
* | Merge headsSerhiy Storchaka2016-08-294-0/+103
|\ \
| * | Issue 23229: add cmath.inf, cmath.nan, cmath.infj and cmath.nanj.Mark Dickinson2016-08-294-0/+103
| | |
* | | Issue #27818: Speed up parsing width and precision in format() strings forSerhiy Storchaka2016-08-291-9/+16
|/ / | | | | | | numbers. Patch by Stefan Behnel.
* | Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factorySerhiy Storchaka2016-08-294-9/+35
|\ \ | |/ | | | | creates not a cursor. Patch by Xiang Zhang.
| * Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factorySerhiy Storchaka2016-08-294-9/+35
| | | | | | | | creates not a cursor. Patch by Xiang Zhang.
* | Issue #26027: Fix test_path_t_converter on WindowsBerker Peksag2016-08-271-1/+1
| |
* | Don't test for path-like bytes paths on WindowsBrett Cannon2016-08-271-2/+7
| |
* | Issue #27506: Support bytes/bytearray.translate() delete as keyword argumentMartin Panter2016-08-277-80/+76
| | | | | | | | Patch by Xiang Zhang.
* | Issue #25825: Merge $(LIBPL) fix from 3.5Martin Panter2016-08-273-2/+8
|\ \ | |/
| * Issue #25825: Fix references to $(LIBPL) installation path on AIXMartin Panter2016-08-273-4/+6
| | | | | | | | | | In Subversion r86731, the path was changed from $(BINLIBDEST)/config to $(LIBDEST)/config-$(LDVERSION).
* | Issue #19884: Merge Readline updates from 3.5Martin Panter2016-08-273-13/+18
|\ \ | |/
| * Issue #19884: Avoid spurious output on OS X with Gnu ReadlineMartin Panter2016-08-273-13/+18
| | | | | | | | | | Also adjust the test condition, because enable-meta-key was only added in 6.1, not 6.0.
* | Issue #12319: Always send file request bodies using chunked encodingMartin Panter2016-08-277-82/+96
| | | | | | | | | | | | | | The previous attempt to determine the file’s Content-Length gave a false positive for pipes on Windows. Also, drop the special case for sending zero-length iterable bodies.
* | Issue #26027: Don't test for bytearray in path_t as that's nowBrett Cannon2016-08-271-7/+2
| | | | | | | | deprecated.
* | Add a What's New entry for PEP 519Brett Cannon2016-08-261-0/+67
| |
* | Issue #26027, #27524: Add PEP 519/__fspath__() support to os andBrett Cannon2016-08-2611-52/+424
| | | | | | | | | | | | os.path. Thanks to Jelle Zijlstra for the initial patch against posixmodule.c.
* | Issue #10513: Merge from 3.5Berker Peksag2016-08-263-1/+34
|\ \ | |/
| * Issue #10513: Fix a regression in Connection.commit()Berker Peksag2016-08-263-1/+34
| | | | | | | | | | | | Statements should not be reset after a commit. Backported from https://github.com/ghaering/pysqlite/commit/029050896b1e6058573abeef5a8970384c0c7faa
* | MergeRaymond Hettinger2016-08-268-11/+11
|\ \ | |/
| * Issue 19504: Change "customise" to "customize" American spelling.Raymond Hettinger2016-08-268-11/+11
| |
* | Add version to title of IDLE help window.Terry Jan Reedy2016-08-261-1/+2
|\ \ | |/
| * Add version to title of IDLE help window.Terry Jan Reedy2016-08-261-1/+2
| |
* | Issue #27830: Revert, remove _PyFunction_FastCallKeywords()Victor Stinner2016-08-254-74/+6
| |
* | Closes #23746: merged update from 3.5.Vinay Sajip2016-08-251-1/+3
|\ \ | |/
| * Issue #23746: Clarified is_python_build() documentation.Vinay Sajip2016-08-251-1/+3
| |
* | Merge with 3.5Terry Jan Reedy2016-08-252-24/+25
|\ \ | |/
| * Issue #25564: Mention exec and __builtins__ in IDLE-console difference section.Terry Jan Reedy2016-08-252-24/+25
| |
* | Issue #27821: Fix bug in idlelib.comfig function and add new tests.Terry Jan Reedy2016-08-252-23/+85
| |
* | method_call() and slot_tp_new() now uses fast callVictor Stinner2016-08-244-40/+55
| | | | | | | | | | | | | | Issue #27841: Add _PyObject_Call_Prepend() helper function to prepend an argument to existing arguments to call a function. This helper uses fast calls. Modify method_call() and slot_tp_new() to use _PyObject_Call_Prepend().
* | Issue #27830: Fix _PyObject_FastCallKeywords()Victor Stinner2016-08-241-1/+1
| | | | | | | | Pass stack, not unrelated and uninitialized args!
* | _pickle: remove outdated commentVictor Stinner2016-08-241-11/+0
| | | | | | | | | | | | | | _Pickle_FastCall() is now fast again! The optimization was introduced in Python 3.2, removed in Python 3.4 and reintroduced in Python 3.6 (thanks to the new generic fastcall functions).
* | _PyObject_FastCallDict(): avoid _Py_CheckFunctionResult()Victor Stinner2016-08-241-2/+2
| | | | | | | | | | _PyObject_FastCallDict() only requires _Py_CheckFunctionResult() for the slow-path. Other cases already check for the result.
* | Add _PyObject_FastCallKeywords()Victor Stinner2016-08-244-9/+116
| | | | | | | | | | | | Issue #27830: Similar to _PyObject_FastCallDict(), but keyword arguments are also passed in the same C array than positional arguments, rather than being passed as a Python dict.
* | Closes #27595: Document PEP 495 (Local Time Disambiguation) features.Alexander Belopolsky2016-08-242-104/+181
| |
* | Fix typo in test nameBerker Peksag2016-08-241-1/+1
| | | | | | | | Noticed by Xiang Zhang.
* | Use Py_ssize_t type for number of argumentsVictor Stinner2016-08-247-90/+128
| | | | | | | | | | Issue #27848: use Py_ssize_t rather than C int for the number of function positional and keyword arguments.
* | Merge with 3.5Terry Jan Reedy2016-08-241-1/+1
|\ \ | |/