summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | Issue #27473: Fixed possible integer overflow in bytes and bytearraySerhiy Storchaka2016-07-103-16/+14
| |/ / / / | | | | | | | | | | | | | | | concatenations. Patch by Xiang Zhang.
* | | | | Merge: #20647: Update dictobject.c comments to account for randomized string ↵R David Murray2016-07-101-8/+5
|\ \ \ \ \ | |/ / / / | | | | | | | | | | hashes.
| * | | | #20647: Update dictobject.c comments to account for randomized string hashes.R David Murray2016-07-101-8/+5
| | | | | | | | | | | | | | | | | | | | Patch by Jaysinh Shukla.
* | | | | Issue #27027: Added test.support.is_android that is True when this is anXavier de Gaye2016-07-102-1/+9
| | | | | | | | | | | | | | | | | | | | Android build.
* | | | | [merge from 3.5] - Issue #27466: Change time format returned bySenthil Kumaran2016-07-103-1/+27
|\ \ \ \ \ | |/ / / / | | | | | | | | | | http.cookie.time2netscape, confirming the netscape cookie format.
| * | | | Issue #27466: Change time format returned by http.cookie.time2netscape,Senthil Kumaran2016-07-103-1/+27
| | | | | | | | | | | | | | | | | | | | confirming the netscape cookie format.
* | | | | Issue #27474: Unified error messages in the __contains__ method of bytes andSerhiy Storchaka2016-07-102-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | bytearray for integers in and out of the Py_ssize_t range. Patch by Xiang Zhang.
* | | | | Issue #27442: Expose the Android API level in sysconfig.get_config_vars()Xavier de Gaye2016-07-094-0/+51
| | | | | | | | | | | | | | | | | | | | as 'ANDROID_API_LEVEL'.
* | | | | Update frozen importlib codeBrett Cannon2016-07-082-1440/+1440
| | | | |
* | | | | Issue #26972: Fix some mistakes in importlib-related docstrings.Brett Cannon2016-07-082-12/+12
| | | | | | | | | | | | | | | | | | | | Thanks to Oren Milman for the patch.
* | | | | Issue #26896: Disambiguate uses of "importer" with "finder".Brett Cannon2016-07-089-32/+32
| | | | | | | | | | | | | | | | | | | | Thanks to Oren Milman for the patch.
* | | | | Issue #27285: Document the deprecation of the pyvenv script.Brett Cannon2016-07-089-186/+227
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As part of the update, the documentation was updated to normalize around the term "virtual environment" instead of relying too heavily on "venv" for the same meaning and leading to inconsistent usage of either. Thanks to Steve Piercy for the patch.
* | | | | Issue #22624: Python 3 requires clock() to buildVictor Stinner2016-07-081-0/+1
| | | | |
* | | | | WhitespaceTerry Jan Reedy2016-07-081-1/+1
| | | | |
* | | | | Issue #27380: IDLE: add query.HelpSource class and tests.Terry Jan Reedy2016-07-086-368/+342
| | | | | | | | | | | | | | | | | | | | Remove modules that are combined in new module.
* | | | | Automated merge with ssh://hg.python.org/cpythonSteven D'Aprano2016-07-071-0/+16
|\ \ \ \ \
| * | | | | Issue27139 patch by Julio C Cardoza.Steven D'Aprano2016-07-071-0/+16
| | | | | |
* | | | | | Issue #27434: Version of interpreter running a cross-build and source ↵Xavier de Gaye2016-07-073-2/+5
|/ / / / / | | | | | | | | | | | | | | | version must be the same.
* | | | | - Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-0771-1839/+1818
|\ \ \ \ \ | |/ / / / | | | | | | | | | | generated by Argument Clinic. Patch by Petr Viktorin.
| * | | | Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-0771-1835/+1814
| | | | | | | | | | | | | | | | | | | | generated by Argument Clinic. Patch by Petr Viktorin.
* | | | | merge 3.5 (#24557)Benjamin Peterson2016-07-076-134/+147
|\ \ \ \ \ | |/ / / /
| * | | | assume egd unless OPENSSL_NO_EGD is defined—remove configure check (closes ↵Benjamin Peterson2016-07-076-135/+160
| | | | | | | | | | | | | | | | | | | | #24557)
* | | | | merge 3.5 (#27248)Benjamin Peterson2016-07-071-3/+9
|\ \ \ \ \ | |/ / / / | | | | | | | | | | Patch from Xiang Zhang.
| * | | | fix refleaks in PyDict_SetItem error cases (closes #27248)Benjamin Peterson2016-07-071-3/+9
| | | | |
* | | | | merge 3.5Donald Stufft2016-07-061-1/+1
|\ \ \ \ \ | |/ / / /
| * | | | Fix a test with the new upload URLDonald Stufft2016-07-061-1/+1
| | | | |
* | | | | merge 3.5Benjamin Peterson2016-07-060-0/+0
|\ \ \ \ \ | |/ / / /
| * | | | merge 3.4Benjamin Peterson2016-07-060-0/+0
| |\ \ \ \ | | |/ / /
| | * | | merge 3.3Benjamin Peterson2016-07-060-0/+0
| | |\ \ \ | | | |/ /
| | | * | Switch to the new upload url for PyPIDonald Stufft2016-07-063-4/+4
| | | | |
| | | * | Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.Serhiy Storchaka2015-12-023-0/+27
| | | | |
* | | | | merge 3.5Benjamin Peterson2016-07-063-5/+5
|\ \ \ \ \ | |/ / / /
| * | | | merge 3.4Benjamin Peterson2016-07-063-5/+5
| |\ \ \ \ | | |/ / /
| | * | | Switch to the new upload url for PyPIDonald Stufft2016-07-063-5/+5
| | | | |
* | | | | Issue #27460: Unified error messages in bytes constructor for integersSerhiy Storchaka2016-07-061-2/+2
| | | | | | | | | | | | | | | | | | | | in and out of the Py_ssize_t range. Patch by Xiang Zhang.
* | | | | Issue #21708: Deprecated dbm.dumb behavior that differs from common dbmSerhiy Storchaka2016-07-065-1/+57
| | | | | | | | | | | | | | | | | | | | | | | | | behavior: creating a database in 'r' and 'w' modes and modifying a database in 'r' mode.
* | | | | Issue #27452: make command line idle-test> python test_help.py work.Terry Jan Reedy2016-07-061-1/+1
| | | | | | | | | | | | | | | | | | | | __file__ is relative in this case.
* | | | | Issue #27452: add line counter and crc to IDLE config test dump.Terry Jan Reedy2016-07-061-9/+20
|\ \ \ \ \ | |/ / / /
| * | | | Issue #27452: add line counter and crc to IDLE configHandler test dump.Terry Jan Reedy2016-07-061-10/+21
| | | | |
* | | | | Merge from 3.5Berker Peksag2016-07-051-0/+1
|\ \ \ \ \ | |/ / / /
| * | | | Add versionadded to PyDict_SetDefault documentationBerker Peksag2016-07-051-0/+1
| | | | | | | | | | | | | | | | | | | | It was added for Python 3.4 in a0b750ea3397.
* | | | | Issue 27437: Add query.ModuleName and use it for file => Load Module.Terry Jan Reedy2016-07-035-77/+185
| | | | | | | | | | | | | | | | | | | | Users can now edit bad entries instead of starting over.
* | | | | Issue #19527: Fixed tests with defined COUNT_ALLOCS.Serhiy Storchaka2016-07-0311-6/+29
|\ \ \ \ \ | |/ / / /
| * | | | Issue #19527: Fixed tests with defined COUNT_ALLOCS.Serhiy Storchaka2016-07-0310-6/+26
| | | | |
* | | | | Issue #23034: The output of a special Python build with defined COUNT_ALLOCS,Serhiy Storchaka2016-07-037-1/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SHOW_ALLOC_COUNT or SHOW_TRACK_COUNT macros is now off by default. It can be re-enabled using the "-X showalloccount" option. It now outputs to stderr instead of stdout.
* | | | | Issue #27443: __length_hint__() of bytearray itearator no longer returnSerhiy Storchaka2016-07-033-1/+18
|\ \ \ \ \ | |/ / / / | | | | | | | | | | negative integer for resized bytearray.
| * | | | Issue #27443: __length_hint__() of bytearray itearator no longer returnSerhiy Storchaka2016-07-033-1/+18
| | | | | | | | | | | | | | | | | | | | negative integer for resized bytearray.
* | | | | Backed out changeset b0087e17cd5e (issue #26765)Serhiy Storchaka2016-07-033-77/+138
| | | | | | | | | | | | | | | | | | | | For unknown reasons it perhaps caused a crash on 32-bit Windows (issue #).
* | | | | Issue #26765: Fixed parsing Py_ssize_t arguments on 32-bit Windows.Serhiy Storchaka2016-07-031-0/+1
| | | | |
* | | | | Issue #26765: Moved wrappers for bytes and bytearray methods to common headerSerhiy Storchaka2016-07-013-138/+77
| | | | | | | | | | | | | | | | | | | | file.