| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 2.7.13 final bumpv2.7.13 | Benjamin Peterson | 2016-12-17 | 1 | -1/+1 |
| | | |||||
| * | revert a37cc3d926ec (#5322) | Benjamin Peterson | 2016-12-14 | 1 | -3/+11 |
| | | |||||
| * | python 2.7.13rc1v2.7.13rc1 | Benjamin Peterson | 2016-12-03 | 1 | -3/+3 |
| | | |||||
| * | Issue #28440: No longer add /Library/Python/site-packages, the Apple-supplied | Ned Deily | 2016-12-03 | 1 | -0/+13 |
| | | | | | | | | | | | system Python site-packages directory, to sys.path for macOS framework builds. The coupling between the two Python instances often caused confusion and, as of macOS 10.12, changes to the site-packages layout can cause pip component installations to fail. This change reverts the effects introduced in 2.7.0 by Issue #4865. If you are using a package with both the Apple system Python 2.7 and a user-installed Python 2.7, you will need to ensure that copies of the package are installed with both Python instances. | ||||
| * | Issue #28847: Fix spelling | Martin Panter | 2016-12-03 | 1 | -1/+1 |
| | | |||||
| * | Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code. | Serhiy Storchaka | 2016-12-02 | 1 | -0/+3 |
| | | | | | Original patch by Andreas Stührk. | ||||
| * | Issue #28847: dubmdbm no longer writes the index file in when it is not | Serhiy Storchaka | 2016-12-02 | 1 | -0/+3 |
| | | | | | changed and supports reading read-only files. | ||||
| * | Issue #11145: Fixed miscellaneous issues with C-style formatting of types | Serhiy Storchaka | 2016-12-01 | 1 | -0/+3 |
| | | | | | with custom __oct__ and __hex__. | ||||
| * | Issue #24469: Fixed memory leak caused by int subclasses without overridden | Serhiy Storchaka | 2016-11-29 | 1 | -0/+3 |
| | | | | | tp_free (e.g. C-inherited Cython classes). | ||||
| * | Issue #25659: Change assert to TypeError in from_buffer/_copy() | Martin Panter | 2016-11-20 | 1 | -0/+3 |
| | | | | | Based on suggestion by Eryk Sun. | ||||
| * | Issue #10656: Fix out-of-tree building on AIX | Martin Panter | 2016-11-20 | 2 | -0/+5 |
| | | | | | | The ld_so_aix script and python.exp file are created in the build directory. Patch by Tristan Carel and Michael Haubenwallner. | ||||
| * | Rename the new --with-optimiations flag to --enable-optimizations. | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-11-20 | 1 | -0/+2 |
| | | |||||
| * | Issue #28666: Now test.support.rmtree is able to remove unwritable or | Serhiy Storchaka | 2016-11-20 | 1 | -0/+3 |
| | | | | | unreadable directories. | ||||
| * | 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 #28676: Prevent missing 'getentropy' declaration warning on macOS. | Ned Deily | 2016-11-12 | 1 | -0/+3 |
| | | | | | Initial patch by Gareth Rees. | ||||
| * | Issue #27854: Include idlelib/help.html in 2.7 Windows installer. | Terry Jan Reedy | 2016-11-11 | 1 | -0/+6 |
| | | | | | Without this file, clicking Help => IDLE Help did nothing. | ||||
| * | Issue #19398: Extra slash no longer added to sys.path components in case of | Serhiy Storchaka | 2016-11-11 | 1 | -0/+3 |
| | | | | | | empty compile-time PYTHONPATH components. This fixes some tests in -S or -I modes. | ||||
| * | Issue #23839: Various caches now are cleared before running every test file. | Serhiy Storchaka | 2016-11-11 | 1 | -0/+2 |
| | | |||||
| * | Issue #28563: Fixed possible DoS and arbitrary code execution when handle | Serhiy Storchaka | 2016-11-08 | 1 | -0/+4 |
| | | | | | | plural form selections in the gettext module. The expression parser now supports exact syntax supported by GNU gettext. | ||||
| * | 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 | 2 | -0/+5 |
| | | | | | | the garbage collector is invoked in other thread. Based on patch by Sebastian Cufre. | ||||
| * | Issue #28513: Documented command-line interface of zipfile. | Serhiy Storchaka | 2016-11-02 | 1 | -0/+2 |
| | | |||||
| * | Issue #28248: Update macOS installer build to use OpenSSL 1.0.2j. | Ned Deily | 2016-10-31 | 1 | -1/+1 |
| | | | | | Original patch by Mariatta Wijaya. | ||||
| * | Issue #28449: tarfile.open() with mode "r" or "r:" now tries to open a tar | Serhiy Storchaka | 2016-10-30 | 1 | -0/+4 |
| | | | | | | file with compression before trying to open it without compression. Otherwise it had 50% chance failed with ignore_zeros=True. | ||||
| * | Issue #26240: Clean up the subprocess module doc string | Martin Panter | 2016-10-26 | 1 | -0/+1 |
| | | | | | Patch by Tim Mitchell. | ||||
| * | Issue #25464: Fixed HList.header_exists() in Tix module by adding | Serhiy Storchaka | 2016-10-24 | 1 | -0/+3 |
| | | | | | a workaround to Tix library bug. | ||||
| * | Issue #28488: shutil.make_archive() no longer adds entry "./" to ZIP archive. | Serhiy Storchaka | 2016-10-23 | 1 | -0/+2 |
| | | |||||
| * | Issue #28435: Avoid no_proxy environment variable interfering with tests | Martin Panter | 2016-10-22 | 1 | -0/+1 |
| | | | | | Patch by Piotr Szczepaniak. | ||||
| * | Issue #28480: Avoid label at end of compound statement --without-threads | Martin Panter | 2016-10-20 | 1 | -0/+3 |
| | | |||||
| * | Issue #21720: Improve exception message when the type of fromlist is unicode | Berker Peksag | 2016-10-16 | 1 | -0/+5 |
| | | |||||
| * | Issue #24452: Make webbrowser support Chrome on Mac OS X (backport to 2.7) | Guido van Rossum | 2016-10-13 | 1 | -0/+2 |
| | | |||||
| * | Issue #28248: Update Windows build to use OpenSSL 1.0.2j | Zachary Ware | 2016-10-11 | 1 | -0/+2 |
| | | |||||
| * | Issue #28394: Typo fixes in code comments and changelog | Martin Panter | 2016-10-10 | 1 | -4/+4 |
| | | | | | Includes patch by Ville Skyttä. | ||||
| * | Issue #26906: Resolving special methods of uninitialized type now causes | Serhiy Storchaka | 2016-10-08 | 1 | -0/+3 |
| | | | | | implicit initialization of the type instead of a fail. | ||||
| * | Issue #18287: PyType_Ready() now checks that tp_name is not NULL. | Serhiy Storchaka | 2016-10-07 | 2 | -0/+4 |
| | | | | | Original patch by Niklas Koep. | ||||
| * | Issue #26293: Fixed writing ZIP files that starts not from the start of the | Serhiy Storchaka | 2016-10-07 | 1 | -0/+4 |
| | | | | | | file. Offsets in ZIP file now are relative to the start of the archive in conforming to the specification. | ||||
| * | Issue #24098: Fixed possible crash when AST is changed in process of | Serhiy Storchaka | 2016-10-07 | 1 | -0/+3 |
| | | | | | compiling it. | ||||
| * | mmap: do all internal arithmetic with Py_ssize_t while being very careful ↵ | Benjamin Peterson | 2016-10-06 | 1 | -0/+3 |
| | | | | | about overflow | ||||
| * | Issue #28350: String constants with null character no longer interned. | Serhiy Storchaka | 2016-10-04 | 1 | -0/+2 |
| | | |||||
| * | Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation() | Serhiy Storchaka | 2016-10-01 | 1 | -0/+3 |
| | | | | | if pass invalid string-like object as a name. Original patch by Xiang Zhang. | ||||
| * | Issue #28815: Change '?' to '<module>' in some doc examples. | Terry Jan Reedy | 2016-09-30 | 1 | -0/+1 |
| | | | | | Patch by Mariatta Wijaya. | ||||
| * | Issue #27942: String constants now interned recursively in tuples and ↵ | Serhiy Storchaka | 2016-09-30 | 1 | -0/+2 |
| | | | | | frozensets. | ||||
| * | Issue #28258: Fixed build with Estonian locale (distclean target in | Serhiy Storchaka | 2016-09-29 | 1 | -0/+3 |
| | | | | | Makefile). Patch by Arfrever Frehtes Taifersar Arahesis. | ||||
| * | build_ext: correctly parse the link_objects user option (closes #1703178) | Benjamin Peterson | 2016-09-29 | 1 | -0/+3 |
| | | | | | Patch by Valerie Lambert. | ||||
| * | IDLE NEWS item and ack. | Terry Jan Reedy | 2016-09-29 | 2 | -0/+4 |
| | | |||||
| * | Issue #28253: Fixed calendar functions for extreme months: 0001-01 and 9999-12. | Alexander Belopolsky | 2016-09-28 | 1 | -0/+7 |
| | | | | | | Methods itermonthdays() and itermonthdays2() are reimplemented so that they don't call itermonthdates() which can cause datetime.date under/overflow. | ||||
| * | Issue #27963: Fixed possible null pointer dereference in ↵ | Serhiy Storchaka | 2016-09-27 | 1 | -0/+3 |
| | | | | | | | ctypes.set_conversion_mode(). Patch by Xiang Zhang. | ||||
| * | be extremely careful about overflows in encode_basestring_ascii (closes #28284) | Benjamin Peterson | 2016-09-27 | 1 | -0/+3 |
| | | |||||
| * | Issue #27611: Fixed support of default root window in the Tix module. | Serhiy Storchaka | 2016-09-25 | 1 | -0/+2 |
| | | |||||
| * | Issue #27806: add Aleks to Misc/ACKS. | Ned Deily | 2016-09-18 | 2 | -1/+2 |
| | | |||||
