Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
4cc80ca #3426: os.path.abspath now returns unicode when its arg is unicode. 20 February 2010, 08:09:39 UTC
61afd26 logging: Documented warnings module integration. 19 February 2010, 23:53:17 UTC
74cbd66 #7967: PyXML is no more. 19 February 2010, 19:36:08 UTC
4e78de8 Fix for Issue7904. urlparse.urlsplit to handle schemes in the way defined by RFC3986 19 February 2010, 07:32:48 UTC
cc43b56 - apply patch from issue 7005 - add corresponding documentation 19 February 2010, 05:24:30 UTC
c2294dd Fix unittest.TestCase.assertDictContainsSubset so it can't die with unicode issues when constructing failure messages. Issue 7956 18 February 2010, 21:37:07 UTC
225a099 unittest.TestCase uses safe_repr for producing failure messages. Partial fix for issue 7956 18 February 2010, 20:30:09 UTC
456e165 Doctest fixes for decimal.py: add an integer-argument doctest for logical_invert; don't use integer literals with a leading zero. 18 February 2010, 14:45:33 UTC
6d8effb Issue #7633: Context method in the decimal module (with the exception of the 'canonical' and 'is_canonical' methods) now consistently accept integer arguments wherever a Decimal instance is accepted. Thanks Juan José Conti for the patch. 18 February 2010, 14:27:02 UTC
e41e4db Add various items 18 February 2010, 14:16:48 UTC
c0de8bb Move bsddb47 macros before their use, to make VS 2010 happy. 18 February 2010, 12:45:45 UTC
413fabc Stop providing crtassem.h symbols when compiling with Visual Studio 2010, as msvcr100.dll is not a platform assembly anymore. 18 February 2010, 09:22:20 UTC
6f90303 #7941: fix error message 16 February 2010, 23:58:49 UTC
e511fc7 #7930: fix stripid 16 February 2010, 23:26:09 UTC
6dfe662 Make the references to Popen in the description of Call and check_call into links. 16 February 2010, 17:55:26 UTC
7875ef6 Issue #7903: Define _BSD_SOURCE through OpenBSD 4.9. 15 February 2010, 21:41:12 UTC
cef3409 Remove incorrect apostrophe. 15 February 2010, 11:55:38 UTC
5e2dd86 Issue #3920: Define _BSD_SOURCE on OpenBSD 4.4. 15 February 2010, 08:32:00 UTC
d5fdc06 Silence more 'comparison between signed and unsigned' warnings. 14 February 2010, 13:40:30 UTC
f0f6bd6 #7926: fix-up wording. 14 February 2010, 13:38:12 UTC
2d7911e Silence more compiler warnings; fix an instance of potential undefined behaviour from signed overflow. 14 February 2010, 12:31:26 UTC
ac5685e Silence some 'comparison between signed and unsigned' compiler warnings. 14 February 2010, 12:16:43 UTC
4a670c5 #7926: fix stray parens. 14 February 2010, 08:18:23 UTC
a68f7b8 #7921: fix links. Patch by Brian Curtin. 14 February 2010, 02:50:23 UTC
876473b Check that 'd' isn't allowed as an exponent specifier in inputs to the float function. 12 February 2010, 21:16:38 UTC
6164d7a #7907: fix wrong function name in doc. Patch by Brian Curtin. 11 February 2010, 23:50:57 UTC
e5e7696 Adding TextTestResult to unittest.__all__ 11 February 2010, 14:12:07 UTC
bc0e83c Finish fix for issue 7715, after explicit search for calls to `arch` 11 February 2010, 13:26:54 UTC
9922f17 Fix copy&paste error in the definition of ARCH_RUN_32BIT for a 3-way universal build (all other definition where correct). 11 February 2010, 13:19:34 UTC
333fca9 Add guard around the prototype for completion_matches to enable compilition with libedit on OSX 10.5 11 February 2010, 13:13:08 UTC
031ae6e Improve issue 7835 fix per MAL to handle the case that the module dictionary has also been cleared. 11 February 2010, 01:56:42 UTC
7c29f07 Issue 5754: tweak shelve doc wording to make it clearer that even when writeback=True values are written to the backing store when assigned to the shelf. Add test to confirm that this happens. Doc patch and added test by Robert Lehmann. I also fixed the cross references to the sync and close methods. 11 February 2010, 01:38:42 UTC
63e4fd7 Issue 7835: Shelve's __del__ method calls its close method, and its close method refers to an identifier in the global module namespace. This means that when __del__ is called during interpreter shutdown (if, for example, the calling program still has a pointer to the shelf), sometimes that global identifier would wind up being None, causing mysterious 'ignored' exceptions. This patch checks for the possible None value first before using the global, thus avoiding the error messages. 10 February 2010, 22:42:04 UTC
8f6a287 #7712: add a temp_cwd context manager to test_support and use it in regrtest to run all the tests in a temporary directory, saving the original CWD in test_support.SAVEDCWD. Thanks to Florent Xicluna who helped with the patch. 10 February 2010, 21:40:33 UTC
1c3abf4 Fix for unittest tests, to be merged to py3k 10 February 2010, 15:50:58 UTC
67dfc77 Remove deprecation on assert_. It is used too frequently. 10 February 2010, 14:31:30 UTC
db43b5a Issue 7893 and Issue 7588 10 February 2010, 14:25:12 UTC
42fb6ab Issue #2746: Don't escape ampersands and angle brackets ("&", "<", ">") in XML processing instructions and comments. These raw characters are allowed by the XML specification, and are necessary when outputting e.g. PHP code in a processing instruction. Patch by Neil Muller. 09 February 2010, 17:08:05 UTC
7b5aa46 Doc fix for unittest. 08 February 2010, 23:15:22 UTC
11f5c9e Convert test failure from output-producing to self.fail(). 08 February 2010, 22:48:37 UTC
fe6349c Make assertMultiLineEqual the default for comparing unicode strings. 08 February 2010, 22:41:16 UTC
0c4783a Fix missing string formatting placeholder. 08 February 2010, 22:40:51 UTC
e64c442 Fix undefined local. 08 February 2010, 22:37:52 UTC
616e8fc Fix missing string formatting argument. 08 February 2010, 22:37:20 UTC
1247775 Fix typo 08 February 2010, 22:22:41 UTC
cd4f657 Fix exc_value -> exception in docstring 08 February 2010, 21:52:08 UTC
cfc43e9 logging: gingerly re-enabling skipped tests after improving thread sync code in configurator. 08 February 2010, 21:18:15 UTC
dde96e6 Clarify and correct description for ccbench and iobench. 08 February 2010, 20:25:47 UTC
9a164ac Issue #7857: Another attempt to keep the buildbots happy. 08 February 2010, 16:05:50 UTC
e1ec841 logging: skipped listening tests because they're not working reliably. 08 February 2010, 15:32:08 UTC
0e7123f Add two items; move a subsection 08 February 2010, 13:22:24 UTC
7ed8001 Removed spurious print statement in test. 08 February 2010, 06:50:14 UTC
9e483ef Move distutils into its own subsection; add various items 08 February 2010, 01:35:35 UTC
6eedef6 Fix test_fnmatch. 08 February 2010, 00:04:54 UTC
841e7f3 Skip test_strtod entirely when correctly-rounded string->float isn't implemented 07 February 2010, 20:31:10 UTC
dd25e86 Issue 6003: ZipFile.writestr "compression_type" argument 07 February 2010, 20:18:02 UTC
2bd52dc assertRaises as context manager now allows you to access exception as documented 07 February 2010, 18:44:12 UTC
a4f46e1 Remove unused imports in test modules. 07 February 2010, 17:03:15 UTC
dc3694b Rename "exc_value" attribute on assertRaises context manager to "exception". 07 February 2010, 17:02:22 UTC
4ad752d Issue #7870: Remove duplicate test methods. Reported by Georg Brandl. 07 February 2010, 16:56:23 UTC
1224f4a Actually raise on failure, instead of doing nothing. 07 February 2010, 13:09:52 UTC
7ce5c83 logging: Removed some more 1.5.2 support code. 07 February 2010, 13:06:51 UTC
4dcba97 Add missing global declarations for 'overflowok'; remove 'overflowrequired', which is no longer needed. 07 February 2010, 13:01:56 UTC
64e8b97 Issue #7869: logging: improved format-time diagnostics and removed some 1.5.2 support code. 07 February 2010, 12:56:54 UTC
b86d3fa Remove duplicate test method. 07 February 2010, 12:55:12 UTC
308e18b Add a minimal test for fnmatchcase(). 07 February 2010, 12:34:26 UTC
a34f87f Fix a redefined test method. 07 February 2010, 12:27:06 UTC
41dc63f Fix two redefined test methods. 07 February 2010, 12:25:50 UTC
b3cda98 Fix wrong usage of "except X, Y:". 07 February 2010, 12:19:43 UTC
7ae6018 Fix another duplicated test method. 07 February 2010, 12:16:12 UTC
ab3f5cb A number of APIs in macostools cannot work in 64-bit mode because they use Carbon APIs that aren't available there. This patch disables tests for the affected entrypoints in macostools and mentions this in the documentation. In theory it is possible to replace the implementation by code that does work in 64-bit mode, but that would require further updates to the Carbon wrappers because the modern APIs aren't wrapped properly. 07 February 2010, 11:38:28 UTC
b0eb4d3 Use "regexp" consistently. 07 February 2010, 11:34:15 UTC
9341ad2 Remove call to gestalt('sysu') from platform.py. This gestalt call is not available on OSX an appearently causes problems for some users. Fixes issue 7812 07 February 2010, 11:29:31 UTC
657514a Issue #7868: logging: added loggerClass attribute to Manager. 07 February 2010, 01:37:08 UTC
12cad20 Add missing import. 06 February 2010, 23:58:25 UTC
1f6176e Fix some name errors in Mac modules. 06 February 2010, 23:54:43 UTC
7e1902b Add missing import when running these tests standalone. 06 February 2010, 23:54:04 UTC
28aeb0d Add missing import when running these tests standalone. 06 February 2010, 23:53:52 UTC
cd4a21b Fix more unbound locals in code paths that do not seem to be used. 06 February 2010, 23:34:10 UTC
bd564c3 Fix import/access for some identifiers. _TestSharedCTypes does not seem to be executed? 06 February 2010, 23:33:33 UTC
c7ca56d We heard you like test failures so we put unbound locals in your test so that you can fail while you fail. 06 February 2010, 23:23:45 UTC
d10d8ee Fix various missing import/unbound name errors. 06 February 2010, 23:18:00 UTC
1a0ffe1 Remove duplicate test method. 06 February 2010, 23:12:19 UTC
d1fa76e Add missing import. 06 February 2010, 23:12:12 UTC
28d4f9e testCopysign was defined twice in test_math; combine the definitions 06 February 2010, 23:11:25 UTC
df8a303 Fix a few UnboundLocalErrors in test_long. 06 February 2010, 23:08:00 UTC
8fd107f Add missing imports. 06 February 2010, 23:06:24 UTC
7224350 Add a missing import. 06 February 2010, 23:02:29 UTC
84fedf7 No need to assign the results of expressions used only for side effects. 06 February 2010, 22:59:15 UTC
7d4b759 Remove unused import. 06 February 2010, 22:49:47 UTC
48e65f5 Fix duplicate import. 06 February 2010, 22:44:17 UTC
239f138 make waiting for the server to start robust 06 February 2010, 22:08:15 UTC
26a1f72 Remove unused imports from test_logging. 06 February 2010, 21:54:40 UTC
7f22443 Issue #7857: Gave server thread more time to get ready, and re-enabled a skipped test. 06 February 2010, 20:28:36 UTC
42d5947 check type_getattro for correctness in a descriptor corner case 06 February 2010, 20:14:10 UTC
5749d88 Issue #7857: Tentatively re-enabling one test to see effect on buildbots. 06 February 2010, 20:00:43 UTC
ee46101 remove pointless error checking 06 February 2010, 19:40:18 UTC
6f82cd3 #5341: fix "builtin" where used as an adjective ("built-in" is correct). 06 February 2010, 18:44:44 UTC
2d798ac post release updates 06 February 2010, 18:26:27 UTC
d065b0e tag 2.7 alpha 3 06 February 2010, 16:41:20 UTC
back to top