summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* revert a37cc3d926ec (#5322)Benjamin Peterson2016-12-141-97/+0
|
* update pydoc topicsBenjamin Peterson2016-12-031-13324/+80
|
* Issue #28440: No longer add /Library/Python/site-packages, the Apple-suppliedNed Deily2016-12-032-21/+1
| | | | | | | | | | 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.
* Try to fix test.test_support.rmtree() on Windows for fixing issue28847 tests.Serhiy Storchaka2016-12-031-2/+2
|
* increase test_smtplib timeoutsBenjamin Peterson2016-12-021-8/+8
|
* Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code.Serhiy Storchaka2016-12-021-0/+97
| | | | Original patch by Andreas Stührk.
* Issue #28847: dubmdbm no longer writes the index file in when it is notSerhiy Storchaka2016-12-022-4/+29
| | | | changed and supports reading read-only files.
* Issue #11145: Fixed miscellaneous issues with C-style formatting of typesSerhiy Storchaka2016-12-011-0/+38
| | | | with custom __oct__ and __hex__.
* Issue #25659: Change assert to TypeError in from_buffer/_copy()Martin Panter2016-11-201-0/+8
| | | | Based on suggestion by Eryk Sun.
* Issue #28666: Fix stat importMartin Panter2016-11-201-1/+1
|
* Issue #28666: Fix removing readonly directories on Windows.Serhiy Storchaka2016-11-201-1/+1
|
* Issue #28666: Now test.test_support.rmtree is able to remove unwritable orSerhiy Storchaka2016-11-201-15/+16
| | | | unreadable directories on Windows too.
* Issue #28666: Now test.support.rmtree is able to remove unwritable orSerhiy Storchaka2016-11-201-1/+32
| | | | unreadable directories.
* Upgrade pip to 9.0.1 and setuptools to 28.8.0Donald Stufft2016-11-163-2/+2
|
* Issue #28563: Make plural form selection more lenient and acceptingSerhiy Storchaka2016-11-142-8/+20
| | | | non-integer numbers. Django tests depend on this.
* Issue #28016: Skip /dev/tty seekable() test on AIXMartin Panter2016-11-141-1/+1
|
* Fixed the documentation of parse_constant argument in json.load().Serhiy Storchaka2016-11-121-1/+1
| | | | parse_constant doesn't get called on 'null', 'true', 'false' since 3.1/2.7.
* Issue #27854: Include idlelib/help.html in 2.7 Windows installer.Terry Jan Reedy2016-11-111-0/+6
| | | | Without this file, clicking Help => IDLE Help did nothing.
* Issue #19398: Extra slash no longer added to sys.path components in case ofSerhiy Storchaka2016-11-111-4/+4
| | | | | 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 Storchaka2016-11-111-24/+92
|
* Issue #25507: Add back import needed for 2.x encoding warning box.Terry Jan Reedy2016-11-101-0/+2
| | | | Add pointer to 'Encoding declaration' in Language Reference.
* Issue #28563: Fixed possible DoS and arbitrary code execution when handleSerhiy Storchaka2016-11-082-63/+211
| | | | | plural form selections in the gettext module. The expression parser now supports exact syntax supported by GNU gettext.
* pip 9.0 works fine without the ssl moduleDonald Stufft2016-11-022-90/+0
|
* Update pip to 9.0.0 and setuptools to 28.7.1Donald Stufft2016-11-024-2/+2
|
* Issue #28449: tarfile.open() with mode "r" or "r:" now tries to open a tarSerhiy Storchaka2016-10-302-2/+11
| | | | | 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 stringMartin Panter2016-10-261-377/+58
| | | | Patch by Tim Mitchell.
* Issue #28515: Fixed py3k warnings.Serhiy Storchaka2016-10-253-2/+6
|
* Issue #25464: Fixed HList.header_exists() in Tix module by addingSerhiy Storchaka2016-10-241-1/+5
| | | | a workaround to Tix library bug.
* Some distutils tests require zlib for creating tar.gz source distribution.Serhiy Storchaka2016-10-231-0/+7
|
* Issue #28115: ZIP creation test requires zlib.Serhiy Storchaka2016-10-231-0/+1
|
* Issue #28488: shutil.make_archive() no longer adds entry "./" to ZIP archive.Serhiy Storchaka2016-10-232-3/+17
|
* Issue #28115: Added tests for CLI of the zipfile module.Serhiy Storchaka2016-10-231-2/+72
|
* Issue #28435: Avoid no_proxy environment variable interfering with testsMartin Panter2016-10-221-0/+8
| | | | Patch by Piotr Szczepaniak.
* Issue #21720: Improve exception message when the type of fromlist is unicodeBerker Peksag2016-10-161-0/+8
|
* Issue #24452: Make webbrowser support Chrome on Mac OS X (backport to 2.7)Guido van Rossum2016-10-131-0/+1
|
* Issue #28394: Typo fixes in code comments and changelogMartin Panter2016-10-102-2/+2
| | | | Includes patch by Ville Skyttä.
* Issue #26293: Fixed writing ZIP files that starts not from the start of theSerhiy Storchaka2016-10-072-13/+58
| | | | | file. Offsets in ZIP file now are relative to the start of the archive in conforming to the specification.
* skip test on windowsBenjamin Peterson2016-10-061-0/+1
|
* fix bug in 48797808a302Benjamin Peterson2016-10-061-1/+1
|
* skip test if resizing is not supportedBenjamin Peterson2016-10-061-2/+5
|
* mmap: do all internal arithmetic with Py_ssize_t while being very careful ↵Benjamin Peterson2016-10-061-0/+10
| | | | about overflow
* Issue #28350: String constants with null character no longer interned.Serhiy Storchaka2016-10-041-3/+17
|
* Moved Unicode C API related tests to separate test class.Serhiy Storchaka2016-10-021-5/+7
|
* Issue #27358: Backported tests.Serhiy Storchaka2016-10-021-0/+15
|
* Issue #28257: Backported a test.Serhiy Storchaka2016-10-021-0/+5
|
* Issue #27942: String constants now interned recursively in tuples and ↵Serhiy Storchaka2016-09-301-1/+32
| | | | frozensets.
* Issue #25488: Stpp idle.py from adding a entry when it is a duplicate.Terry Jan Reedy2016-09-301-6/+8
| | | | Also, make idlelib.idle.main() work after import idlelib.idle.
* build_ext: correctly parse the link_objects user option (closes #1703178)Benjamin Peterson2016-09-292-0/+8
| | | | Patch by Valerie Lambert.
* Remove disabled ctypes testMartin Panter2016-09-291-24/+1
| | | | | | The test was commented out in 2005 before ctypes was added to Python, because the “cdll” attribute loading feature “will no longer work this way”: http://svn.python.org/view?view=revision&revision=49102
* IDLE NEWS item and ack.Terry Jan Reedy2016-09-291-0/+3
|