| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #25624: ZipFile now always writes a ZIP_STORED header for directory ↵ | Benjamin Peterson | 2015-11-23 | 1 | -0/+23 |
| | | | | | entries. Patch by Dingyuan Wang. | ||||
| * | Issue #25686: test_shutil no longer uses the distutils package for running | Serhiy Storchaka | 2015-11-21 | 1 | -6/+4 |
| | | | | | external archivers. | ||||
| * | Issue #25678: Copy buffer objects to null-terminated strings. | Serhiy Storchaka | 2015-11-20 | 3 | -4/+64 |
| | | | | | | | | | Avoid buffer overreads when int(), long(), float(), and compile() are passed buffer objects. Similar code is removed from the complex() constructor, where it was not reachable. Patch backported from issue #24802 by Eryk Sun. | ||||
| * | Issue #25388: Fixed tokenizer hang when processing undecodable source code | Serhiy Storchaka | 2015-11-14 | 1 | -0/+16 |
| | | | | | with a null byte. | ||||
| * | Issue #25590: Make rlcompleter only call getattr() once per attribute | Martin Panter | 2015-11-13 | 1 | -0/+13 |
| | | | | | | | Previously it was called another time via hasattr(), and both calls were made once for dir(f) and again for dir(f.__class__). This includes a backport of changing from a list to a set from revision 4dbb315fe667. | ||||
| * | Issue #25607: Restore old distutils logging threshold after running tests that | Serhiy Storchaka | 2015-11-12 | 1 | -1/+1 |
| | | | | | parse command line arguments. | ||||
| * | Issue #22995: Backported additional tests for non-pickleable types. | Serhiy Storchaka | 2015-11-12 | 2 | -0/+29 |
| | | |||||
| * | always set OP_NO_SSLv3 by default (closes #25530) | Benjamin Peterson | 2015-11-12 | 1 | -9/+9 |
| | | |||||
| * | Issue #7267: format(int, 'c') now raises OverflowError when the argument is not | Victor Stinner | 2015-11-09 | 1 | -0/+5 |
| | | | | | in range(0, 256). | ||||
| * | Issue #892902: Disable newly added tests in test_xpickle. | Serhiy Storchaka | 2015-11-07 | 1 | -0/+8 |
| | | |||||
| * | Issue #892902: Fixed pickling recursive objects. | Serhiy Storchaka | 2015-11-07 | 2 | -29/+115 |
| | | |||||
| * | Issue #25523: Backported a-to-an corrections. | Serhiy Storchaka | 2015-11-02 | 4 | -4/+4 |
| | | |||||
| * | Issue #21827: Fixed textwrap.dedent() for the case when largest common | Serhiy Storchaka | 2015-10-28 | 1 | -0/+5 |
| | | | | | | whitespace is a substring of smallest leading whitespace. Based on patch by Robert Li. | ||||
| * | Issue #25188: Clean up code to pass the --pgo flag to subprocesses | Brett Cannon | 2015-10-16 | 1 | -4/+2 |
| | | | | | | | when running the test suite. Patch by Arfrever Frehtes Taifersar Arahesis. | ||||
| * | Issue #24848: Fixed yet one bug in UTF-7 decoder. Testing for BASE64 character | Serhiy Storchaka | 2015-10-10 | 1 | -8/+8 |
| | | | | | was locale depending. | ||||
| * | merge heads | Benjamin Peterson | 2015-10-07 | 1 | -251/+295 |
| |\ | |||||
| | * | Issue #25317: Converted doctests in test_tokenize to unittests. | Serhiy Storchaka | 2015-10-06 | 1 | -251/+295 |
| | | | |||||
| * | | prevent unacceptable bases from becoming bases through multiple inheritance ↵ | Benjamin Peterson | 2015-10-07 | 1 | -0/+31 |
| |/ | | | | (#24806) | ||||
| * | reinitialize an Event's Condition with a regular lock (closes #25319) | Benjamin Peterson | 2015-10-06 | 1 | -0/+8 |
| | | |||||
| * | Make error report in test_codecs more informative. | Serhiy Storchaka | 2015-10-04 | 1 | -10/+26 |
| | | |||||
| * | Issue #24657: Prevent CGIRequestHandler from collapsing the URL query | Martin Panter | 2015-10-03 | 1 | -0/+7 |
| | | | | | | Initial patch from Xiang Zhang. Also fix out-of-date _url_collapse_path() doc string. | ||||
| * | Issue #25232: Fix CGIRequestHandler's splitting of URL query | Martin Panter | 2015-10-03 | 1 | -0/+22 |
| | | | | | Patch from Xiang Zhang. | ||||
| * | Fix indentation | Brett Cannon | 2015-10-02 | 1 | -4/+4 |
| | | |||||
| * | Issue #25188: Add -P/--pgo to test.regrtest for PGO building. | Brett Cannon | 2015-10-02 | 1 | -33/+50 |
| | | | | | Initial patch by Alecsandru Patrascu of Intel. | ||||
| * | Removed the "b" string prefix to make test_xpickle compatible with Python 2.5. | Serhiy Storchaka | 2015-10-02 | 1 | -33/+33 |
| | | |||||
| * | Issue #24848: Fixed bugs in UTF-7 decoding of misformed data: | Serhiy Storchaka | 2015-10-02 | 2 | -0/+60 |
| | | | | | | 1. Non-ASCII bytes were accepted after shift sequence. 2. A low surrogate could be emitted in case of error in high surrogate. | ||||
| * | Issue #22958: Constructor and update method of weakref.WeakValueDictionary | Serhiy Storchaka | 2015-09-29 | 1 | -0/+25 |
| | | | | | now accept the self keyword argument. | ||||
| * | Issue #22609: Constructor and the update method of collections.UserDict now | Serhiy Storchaka | 2015-09-29 | 1 | -1/+34 |
| | | | | | accept the self keyword argument. | ||||
| * | Backported additional unpickling tests from 3.x. | Serhiy Storchaka | 2015-09-29 | 1 | -4/+160 |
| | | |||||
| * | Moved unpickling tests with prepickled data to separate class. | Serhiy Storchaka | 2015-09-29 | 3 | -47/+88 |
| | | |||||
| * | Issue #25249: Remove unneeded mkstemp helper in test_subprocess | Berker Peksag | 2015-09-28 | 1 | -17/+7 |
| | | | | | | | | The helper was added in 76641824cf05 11 years ago and it can be removed now since all supported Python versions have tempfile.mkstemp(). Patch by Nir Soffer. | ||||
| * | Issue #25211: Fix error message code in test_long; patch from s-wakaba | Martin Panter | 2015-09-24 | 1 | -19/+19 |
| | | |||||
| * | Issue #25108: Fixed test_traceback in the case when this test is run twice. | Serhiy Storchaka | 2015-09-20 | 1 | -6/+9 |
| | | | | | In this case __file__ is the name of precompiled file (*.py[co]). | ||||
| * | Issue #25101: Try to create a file to test write access in test_zipfile. | Serhiy Storchaka | 2015-09-19 | 1 | -0/+7 |
| | | |||||
| * | Issue #25108: Backported tests for traceback functions print_stack(), | Serhiy Storchaka | 2015-09-18 | 1 | -2/+44 |
| | | | | | format_stack(), and extract_stack() called without arguments. | ||||
| * | test_gdb: fix regex to parse the GDB version | Victor Stinner | 2015-09-14 | 1 | -2/+3 |
| | | | | | Fix the regex to support the version 7.10: minor version with two digits | ||||
| * | Marked keystrokes with the :kbd: role. | Serhiy Storchaka | 2015-09-12 | 1 | -2/+2 |
| | | | | | Fixed the case of the "Ctrl-" prefixes. | ||||
| * | Issue #16473: Fix byte transform codec documentation; test quotetabs=True | Martin Panter | 2015-09-12 | 1 | -0/+8 |
| | | | | | | | This changes the equivalent functions listed for the Base-64, hex and Quoted- Printable codecs to reflect the functions actually used. Also mention and test the "quotetabs" setting for Quoted-Printable encoding. | ||||
| * | Remove and enable misplaced codecs tests ported from Python 3 | Martin Panter | 2015-09-12 | 1 | -45/+8 |
| | | | | | | | Most of these tests are about blacklisted non-text codecs, which are not relevant in Python 2. The only one remaining is TransformCodecTest.test_uu_ invalid(). | ||||
| * | Don't encode unicode dirname in test_support.temp_cwd() if unicode file names | Serhiy Storchaka | 2015-09-09 | 1 | -1/+2 |
| | | | | | | are supported by the filesystem. On Windows the encoding can convert some characters to '?' that is not legal in file name. | ||||
| * | Fixed tests for shutil.make_archive() with relative base_name in the case when | Serhiy Storchaka | 2015-09-08 | 1 | -2/+2 |
| | | | | | the path of the directory for temporary files contains symlinks. | ||||
| * | Issue #24982: shutil.make_archive() with the "zip" format now adds entries | Serhiy Storchaka | 2015-09-08 | 1 | -2/+29 |
| | | | | | | for directories (including empty directories) in ZIP file. Added test for comparing shutil.make_archive() with the "zip" command. | ||||
| * | Backported new tests for attribute setting of expat parser. | Serhiy Storchaka | 2015-09-07 | 1 | -18/+35 |
| | | |||||
| * | Issue #25018: Fixed testing shutil.make_archive() with relative base_name on | Serhiy Storchaka | 2015-09-07 | 1 | -9/+19 |
| | | | | | | Windows. The test now makes sense on non-Windows. Added similar test for zip format. | ||||
| * | Explicitly test archive name in shutil.make_archive() tests to expose failure | Serhiy Storchaka | 2015-09-07 | 1 | -11/+11 |
| | | | | | details in issue25018. | ||||
| * | Issue #17849: Raise sensible exception for invalid HTTP tunnel response | Martin Panter | 2015-09-07 | 1 | -0/+10 |
| | | | | | Initial patch from Cory Benfield. | ||||
| * | Fix, refactor and extend tests for shutil.make_archive(). | Serhiy Storchaka | 2015-09-06 | 1 | -73/+66 |
| | | |||||
| * | Backport support.change_cwd() and use it in tests. | Serhiy Storchaka | 2015-09-06 | 7 | -86/+60 |
| | | |||||
| * | Issue #16180: Exit pdb if file has syntax error, instead of trapping user | Terry Jan Reedy | 2015-09-05 | 1 | -0/+11 |
| | | | | | in an infinite loop. Patch by Xavier de Gaye. | ||||
| * | merge heads. | Senthil Kumaran | 2015-09-03 | 2 | -15/+169 |
| |\ | |||||
