Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #8024: Update the Unicode database to 5.2 | Florent Xicluna | 2010-03-18 | 1 | -2/+2 |
| | |||||
* | #8155: Preserve backward compatibility for test_support.check_warnings(). ↵ | Florent Xicluna | 2010-03-18 | 2 | -15/+34 |
| | | | | Add regression tests. | ||||
* | Fix for Issue8135 - urllib.unquote to support mixed percent escapes | Senthil Kumaran | 2010-03-18 | 1 | -0/+26 |
| | |||||
* | Make test_pwd more stable in the face of unusual LDAP/NIS/Kerberos ↵ | Collin Winter | 2010-03-18 | 1 | -5/+8 |
| | | | | deployments (the old test was flaky on Google buildslaves). | ||||
* | Issue #8104: socket.recv_into() and socket.recvfrom_into() now support | Antoine Pitrou | 2010-03-17 | 1 | -4/+40 |
| | | | | | writing into objects supporting the new buffer API, for example bytearrays or memoryviews. | ||||
* | Fix a race condition in test_asynchat uncovered by the Unladen Swallow JIT. | Collin Winter | 2010-03-17 | 1 | -0/+13 |
| | |||||
* | prevent lambda functions from having docstrings #8164 | Benjamin Peterson | 2010-03-17 | 1 | -0/+4 |
| | |||||
* | Fix and check cgi module deprecation warnings. Revert an unwanted rename in ↵ | Florent Xicluna | 2010-03-17 | 2 | -6/+7 |
| | | | | test_import. | ||||
* | Cleanup some test cases using check_warnings and check_py3k_warnings. | Florent Xicluna | 2010-03-17 | 6 | -79/+53 |
| | |||||
* | Cleanup in test_import and test_coding. | Florent Xicluna | 2010-03-17 | 2 | -80/+57 |
| | |||||
* | Use "x in y" instead of y.find(x) != -1. | Ezio Melotti | 2010-03-17 | 4 | -4/+4 |
| | |||||
* | #7092: silence some more py3k warnings. | Ezio Melotti | 2010-03-17 | 8 | -55/+83 |
| | |||||
* | Delete unused import. | Collin Winter | 2010-03-17 | 1 | -1/+0 |
| | |||||
* | Style cleanup in test_import. | Collin Winter | 2010-03-17 | 1 | -70/+73 |
| | |||||
* | Fix a trivial class of (hypothetical, future) false-positive refleaks, ↵ | Collin Winter | 2010-03-17 | 1 | -2/+3 |
| | | | | discovered by an optimization in Unladen Swallow's past (which will become CPython's future). | ||||
* | Issue #7783 and #7787: open_urlresource invalidates the outdated files from ↵ | Florent Xicluna | 2010-03-15 | 2 | -13/+31 |
| | | | | | | the local cache. Use this feature to fix test_normalization. | ||||
* | - Issue #8140: extend compileall to compile single files. Add -i option. | Matthias Klose | 2010-03-15 | 1 | -0/+19 |
| | |||||
* | Do not hardcode Expat version. It's possible to build Python with ↵ | Florent Xicluna | 2010-03-14 | 1 | -2/+2 |
| | | | | --with-system-expat option. | ||||
* | Minor documentation updates for xml.etree. | Florent Xicluna | 2010-03-14 | 1 | -2/+2 |
| | |||||
* | Do not chdir when running test_xml_etree, and enhance the findfile helper. | Florent Xicluna | 2010-03-13 | 4 | -27/+12 |
| | |||||
* | Move the xml test data to their own directory. | Florent Xicluna | 2010-03-13 | 8 | -28/+41 |
| | |||||
* | Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set. | Victor Stinner | 2010-03-13 | 1 | -1/+1 |
| | |||||
* | remove shebang line from non-executable test | Benjamin Peterson | 2010-03-11 | 1 | -2/+0 |
| | |||||
* | normalize shebang lines to #!/usr/bin/env python | Benjamin Peterson | 2010-03-11 | 2 | -2/+2 |
| | |||||
* | Fix repr of tree Element on windows. | Florent Xicluna | 2010-03-11 | 1 | -3/+4 |
| | |||||
* | Issue #6472: The xml.etree package is updated to ElementTree 1.3. The ↵ | Florent Xicluna | 2010-03-11 | 4 | -255/+1552 |
| | | | | cElementTree module is updated too. | ||||
* | Another fix to test_executable() of test_sys: set the current working to avoid | Victor Stinner | 2010-03-11 | 1 | -1/+4 |
| | | | | the #7774 bug. | ||||
* | Fix test_executable introduce in previous commit (r78835): Windows is able to | Victor Stinner | 2010-03-11 | 1 | -2/+2 |
| | | | | | retrieve the absolute Python path even if argv[0] has been set to a non existent program name. | ||||
* | Issue #7774: Set sys.executable to an empty string if argv[0] has been | Victor Stinner | 2010-03-11 | 1 | -0/+11 |
| | | | | | | | | set to an non existent program name and Python is unable to retrieve the real program name. Fix also sysconfig: if sys.executable is an empty string, use the current working directory. | ||||
* | Revert r78830: realpath() should really be applied to sys.executable. | Florent Xicluna | 2010-03-11 | 1 | -1/+1 |
| | |||||
* | It is not optimal to test sys.stderr on a debug build. | Florent Xicluna | 2010-03-11 | 1 | -2/+1 |
| | |||||
* | Fix the test_subprocess failure when sys.executable is meaningless: '' or a ↵ | Florent Xicluna | 2010-03-11 | 1 | -1/+1 |
| | | | | | | directory. It does not fix #7774. | ||||
* | Issue #7880: Fix sysconfig when the python executable is a symbolic link. | Florent Xicluna | 2010-03-10 | 1 | -1/+19 |
| | |||||
* | #7772: Fix test_py3kwarn. Now the test suite could pass with "-3" flag. | Florent Xicluna | 2010-03-09 | 2 | -18/+33 |
| | |||||
* | #7624: Fix isinstance(foo(), collections.Callable) for old-style classes. | Florent Xicluna | 2010-03-08 | 1 | -2/+30 |
| | |||||
* | Move some tests from test_macpath to test_genericpath.CommonTest | Florent Xicluna | 2010-03-08 | 2 | -10/+12 |
| | |||||
* | Replace the stderr logging with assertNotEqual(returncode, 0). | Florent Xicluna | 2010-03-08 | 1 | -4/+2 |
| | |||||
* | Addition of setUpClass and setUpModule shared fixtures to unittest. | Michael Foord | 2010-03-07 | 1 | -1/+395 |
| | |||||
* | Fix for potentials errors in constructing unittest failure messages. Plus ↵ | Michael Foord | 2010-03-07 | 1 | -0/+47 |
| | | | | skipped test methods no longer run setUp and tearDown (Issue 8059) | ||||
* | Refresh the documentation for the test.test_support module. | Florent Xicluna | 2010-03-07 | 1 | -5/+5 |
| | |||||
* | #2777: Try hard to make Win7 buildbot happy... | Florent Xicluna | 2010-03-07 | 1 | -2/+3 |
| | |||||
* | Issue #1530559: When packing a non-integer with any integer conversion | Mark Dickinson | 2010-03-07 | 1 | -22/+47 |
| | | | | | | | | | code using struct.pack, attempt to convert to an integer first using the argument's __int__ method (if present). Also raise a DeprecationWarning for any such usage of __int__. This fixes a regression from 2.6, where some (but not all) integer conversion codes already used __int__. | ||||
* | Do not fail if returncode is 0 on send_signal/kill/terminate, for win32 ↵ | Florent Xicluna | 2010-03-07 | 1 | -39/+44 |
| | | | | | | platforms. Do not hide the KeyboardInterrupt on POSIX platforms. | ||||
* | #2777: Enable test_send_signal, test_terminate and test_kill on win32 platforms. | Florent Xicluna | 2010-03-07 | 1 | -3/+0 |
| | |||||
* | Issue #7849: Now the utility ``check_warnings`` verifies if the warnings are | Florent Xicluna | 2010-03-07 | 7 | -26/+98 |
| | | | | effectively raised. A new utility ``check_py3k_warnings`` deals with py3k warnings. | ||||
* | Fix some py3k warnings in the standard library. | Florent Xicluna | 2010-03-07 | 2 | -11/+5 |
| | |||||
* | Reverting the change made in r78431. | Senthil Kumaran | 2010-03-07 | 1 | -1/+0 |
| | |||||
* | eliminate py3k warnings in argparse | Benjamin Peterson | 2010-03-07 | 1 | -0/+10 |
| | |||||
* | Skip test_send_signal, test_kill, test_terminate on win32 platforms, for ↵ | Florent Xicluna | 2010-03-06 | 1 | -5/+11 |
| | | | | 2.7a4 release. | ||||
* | Minor tweaking of previous r78734, and add a NEWS entry. | Florent Xicluna | 2010-03-06 | 4 | -52/+58 |
| |