Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | reverted distutils its 3.1 state. All new work is now happening in ↵ | Tarek Ziadé | 2010-07-22 | 63 | -1649/+1597 |
| | | | | disutils2, and distutils is now feature-frozen. | ||||
* | Add importlib benchmarks which try to be "realistic" by importing the decimal | Brett Cannon | 2010-07-22 | 1 | -7/+50 |
| | | | | module which is the largest module in the stdlib. | ||||
* | Issue #9323: Fixed a bug in trace.py that resulted in loosing the name | Alexander Belopolsky | 2010-07-21 | 1 | -6/+3 |
| | | | | of the script being traced. Patch by Eli Bendersky. | ||||
* | Issue #5395: check that array.fromfile() re-raises an IOError instead of ↵ | Antoine Pitrou | 2010-07-21 | 1 | -0/+11 |
| | | | | | | | replacing it with EOFError. (this is only an added test, but 2.x will get a fix too) | ||||
* | Apply patch from Ray Allen for issue 9296 | Doug Hellmann | 2010-07-21 | 1 | -0/+9 |
| | |||||
* | revert unintended changes | Benjamin Peterson | 2010-07-20 | 1 | -8/+0 |
| | |||||
* | move test_trace.py so as not to conflict with future tests for the trace module | Benjamin Peterson | 2010-07-20 | 2 | -0/+8 |
| | |||||
* | Issue #9282: Fixed --listfuncs option of trace.py. Thanks Eli | Alexander Belopolsky | 2010-07-20 | 1 | -1/+2 |
| | | | | Bendersky for the patch. | ||||
* | Without this patch the value of sysconfig.get_config_var('LDSHARED') | Ronald Oussoren | 2010-07-20 | 1 | -7/+27 |
| | | | | | | | | | | | | | | is wrong when PY_LDFLAGS is not empty. The bug was caused by LDSHARED getting expanded *before* sysconfig renamed PY_LDSHARED (and simular values) to names without a PY_ prefix. The patch tries to maintain the intended behaviour of allowing users to set LDFLAGS in the environment and have that affect the build. Without this patch a universal build on OSX cannot build universal (fat binary) extensions. | ||||
* | Fixes Issue #3704: http.cookiejar was not properly handling URLs with a / in | Gregory P. Smith | 2010-07-19 | 2 | -35/+44 |
| | | | | the parameters. (This is jjlee's issue3704.patch ported to py3k) | ||||
* | Fix Issue9301 - urllib.parse.unquote and unquote_to_byte to raise TypeError ↵ | Senthil Kumaran | 2010-07-19 | 2 | -0/+7 |
| | | | | for None. | ||||
* | Sub-issue of #9036: Fix incorrect use of Py_CHARMASK. | Stefan Krah | 2010-07-19 | 1 | -0/+1 |
| | |||||
* | Issue #9265: Incorrect name passed as arg[0] when shell=True | Stefan Krah | 2010-07-19 | 2 | -0/+21 |
| | | | | and executable specified. | ||||
* | This patch adds a testcase that demonstrates a problem | Ronald Oussoren | 2010-07-19 | 1 | -0/+6 |
| | | | | | | | | | with the expansion of LDSHARED when accessing that value through sysconfig. The problem is probably caused by the 9189. A fix will follow shortly. | ||||
* | pydoc.pager does not promise to use $PAGER. | Georg Brandl | 2010-07-19 | 1 | -1/+1 |
| | |||||
* | #9279: remove the pdb.doc file, put its contents in pdb.__doc__. Also sync ↵ | Georg Brandl | 2010-07-18 | 2 | -215/+215 |
| | | | | this and the pdb docs, introduce a new directive for pdb commands and a role to link to them. | ||||
* | Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x | Alexander Belopolsky | 2010-07-17 | 2 | -16/+74 |
| | | | | python when they contain instances of old-style classes. | ||||
* | Issue #9268: Add annotation option to pickletools.dis | Alexander Belopolsky | 2010-07-17 | 1 | -5/+39 |
| | |||||
* | #1555570: correctly handle a \r\n that is split by the read buffer. | R. David Murray | 2010-07-17 | 2 | -0/+37 |
| | | | | Patch and test by Tony Nelson. | ||||
* | Add comma grouping to max result so it's easier to read. | Brett Cannon | 2010-07-16 | 1 | -1/+1 |
| | |||||
* | Fix possible failure in pickling tests due to different instantiations | Antoine Pitrou | 2010-07-16 | 1 | -0/+10 |
| | | | | of the random module being around. | ||||
* | Add benchmarks for importing just source w/o writing bytecode, importing source | Brett Cannon | 2010-07-16 | 1 | -14/+57 |
| | | | | | while writing bytecode, and importing bytecode with source existing (don't care about sourceless imports). | ||||
* | Corrected TUPLE<N> opcodes' docs. | Alexander Belopolsky | 2010-07-16 | 1 | -8/+11 |
| | |||||
* | Touch up comments and code along with outputting what the unit of measure is. | Brett Cannon | 2010-07-15 | 1 | -7/+10 |
| | |||||
* | Fix a mistake, https proxy shoud be https:// | Senthil Kumaran | 2010-07-14 | 1 | -1/+1 |
| | |||||
* | Fix: Issue6853 - Get HTTPS system proxy in Windows. | Senthil Kumaran | 2010-07-14 | 1 | -0/+1 |
| | |||||
* | PEP 8 conformance: class_ -> cls | Alexander Belopolsky | 2010-07-14 | 1 | -3/+3 |
| | |||||
* | Issue #9251: test_threaded_import didn't fail when run through regrtest | Antoine Pitrou | 2010-07-14 | 1 | -55/+50 |
| | | | | if the import lock was disabled. | ||||
* | Fix Issue5842 - Moving the tests out of urllib.parse module | Senthil Kumaran | 2010-07-14 | 2 | -64/+32 |
| | |||||
* | Woops, test_sndhdr.py contains the same code twice: fix it | Victor Stinner | 2010-07-13 | 1 | -24/+0 |
| | |||||
* | Issue #9243: Fix sndhdr module and add unit tests, contributed by James Lee. | Victor Stinner | 2010-07-13 | 11 | -4/+63 |
| | |||||
* | Set sys.modules[name] to None instead of 0 to block module import. | Alexander Belopolsky | 2010-07-13 | 1 | -1/+1 |
| | |||||
* | Yield more information on failure in test_struct boolean test. | Mark Dickinson | 2010-07-12 | 1 | -2/+7 |
| | |||||
* | #6026: skip test_get_file_list when zlib is not available. | Ezio Melotti | 2010-07-12 | 1 | -0/+1 |
| | |||||
* | allow byte literals | Benjamin Peterson | 2010-07-11 | 2 | -1/+2 |
| | |||||
* | assertEquals -> assertEqual | Mark Dickinson | 2010-07-11 | 1 | -1/+1 |
| | |||||
* | Issue #9137: Fix issue in MutableMapping.update, which incorrectly | Mark Dickinson | 2010-07-11 | 2 | -1/+22 |
| | | | | treated keyword arguments called 'self' or 'other' specially. | ||||
* | Issue #9165: Add math.isfinite and cmath.isfinite. | Mark Dickinson | 2010-07-11 | 2 | -0/+18 |
| | |||||
* | test for set literals | Benjamin Peterson | 2010-07-11 | 1 | -0/+1 |
| | |||||
* | Allow set literals in literal_eval(). | Georg Brandl | 2010-07-11 | 1 | -0/+2 |
| | |||||
* | Fix for issue 9164 | Ronald Oussoren | 2010-07-11 | 1 | -2/+1 |
| | |||||
* | Stricter verification for file based url scheme and reliance on ftp protocol. | Senthil Kumaran | 2010-07-11 | 2 | -1/+5 |
| | |||||
* | ValueError is eventually what we want to move to, I suppose | Benjamin Peterson | 2010-07-10 | 1 | -2/+2 |
| | |||||
* | Fix error message for comparing single line strings in ↵ | Michael Foord | 2010-07-10 | 2 | -3/+23 |
| | | | | | | unittest.TestCase.assertEqual. Issue 9174. | ||||
* | Fix 'refleak' introduced by fnmatch cache purge tests. | R. David Murray | 2010-07-10 | 2 | -2/+11 |
| | | | | | This introduces a 'purge' function for the fnmatch module analogous to the 'purge' function in the re module. | ||||
* | #1434090: properly append child in expatbuilder doctype handler. | Georg Brandl | 2010-07-10 | 1 | -1/+1 |
| | |||||
* | #3071: tell how many values were expected when unpacking too many. | Georg Brandl | 2010-07-10 | 1 | -3/+3 |
| | |||||
* | Oops. Fix distutils tests that r82746 broke. | Jeffrey Yasskin | 2010-07-09 | 1 | -1/+3 |
| | |||||
* | be more robust across platforms | Benjamin Peterson | 2010-07-09 | 1 | -1/+1 |
| | |||||
* | remove SocketIO.__del__; close() can handle it | Benjamin Peterson | 2010-07-09 | 1 | -4/+0 |
| |