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

sort by:
Revision Author Date Message Commit Date
1c52475 Apply patch from Ray Allen for issue 9296 21 July 2010, 12:29:04 UTC
6dfbff3 Minor clarification about importlib.abc.SourceLoader.get_filename. 21 July 2010, 09:48:31 UTC
3283973 Fix #9316. if/is grammar corrections. 21 July 2010, 01:44:19 UTC
20f9c3c revert unintended changes 20 July 2010, 22:39:34 UTC
013783c move test_trace.py so as not to conflict with future tests for the trace module 20 July 2010, 22:37:19 UTC
533a167 Issue #9282: Fixed --listfuncs option of trace.py. Thanks Eli Bendersky for the patch. 20 July 2010, 19:55:18 UTC
d21886c Without this patch the value of sysconfig.get_config_var('LDSHARED') 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. 20 July 2010, 16:07:10 UTC
41e6c3d Fixes Issue #3704: http.cookiejar was not properly handling URLs with a / in the parameters. (This is jjlee's issue3704.patch ported to py3k) 19 July 2010, 23:17:22 UTC
79e17f6 Fix Issue9301 - urllib.parse.unquote and unquote_to_byte to raise TypeError for None. 19 July 2010, 18:17:19 UTC
99212f6 Sub-issue of #9036: Fix incorrect use of Py_CHARMASK. 19 July 2010, 17:58:26 UTC
9542cc6 Issue #9265: Incorrect name passed as arg[0] when shell=True and executable specified. 19 July 2010, 14:20:53 UTC
f4ebe2e This patch adds a testcase that demonstrates a problem with the expansion of LDSHARED when accessing that value through sysconfig. The problem is probably caused by the 9189. A fix will follow shortly. 19 July 2010, 13:00:36 UTC
36d2e67 Issue #9036: Throughout the code base, Py_CHARMASK is used on 8-bit wide signed/unsigned chars or on integers directly derived from those. In all cases, it could be replaced by a simple cast to (unsigned char). Reasons for the change: a) Make the comment more explicit. b) If char is unsigned, the cast is optimized away. c) If char is unsigned, gcc emits spurious "array subscript has type 'char'" warnings. 19 July 2010, 12:36:57 UTC
0674255 Clarification. Yay importlib! 19 July 2010, 11:28:05 UTC
55353ca pydoc.pager does not promise to use $PAGER. 19 July 2010, 08:02:46 UTC
9cec307 Remove temporary debugging code. 19 July 2010, 07:31:40 UTC
a5ed401 Clarify :option: description. 19 July 2010, 06:57:52 UTC
70f355d Clarify. 19 July 2010, 06:52:35 UTC
7f54dce Document the extra epoll flags 18 July 2010, 16:30:31 UTC
7f94f39 There is no method named "register(fd, eventmask)"; fix markup to just indicate this is code. 18 July 2010, 16:13:27 UTC
c951119 Add configure check for a bug with gcc soft floating-point and subnormals, to help debug issue 8265. 18 July 2010, 16:01:36 UTC
d319ad5 nest method and attribute doc 18 July 2010, 14:27:02 UTC
0b9fb80 use classmethod 18 July 2010, 14:23:36 UTC
86e78d1 #9110: update to ContextDecorator doc. 18 July 2010, 13:43:32 UTC
02053ee #9279: remove the pdb.doc file, put its contents in pdb.__doc__. Also sync this and the pdb docs, introduce a new directive for pdb commands and a role to link to them. 18 July 2010, 10:11:03 UTC
1b3c262 Clarify Misc/NEWS entry. 18 July 2010, 08:03:10 UTC
e26660f Misc/NEWS entry for r82941. 18 July 2010, 07:48:20 UTC
eff5d85 Issue #9277: Struct module: standard bool packing was incorrect if char is unsigned. Thanks Stefan Krah for the patch. 18 July 2010, 07:29:02 UTC
d92f040 Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x python when they contain instances of old-style classes. 17 July 2010, 22:50:45 UTC
bbda0c5 sharedinstall should depend on sharedmods #9280 17 July 2010, 20:39:23 UTC
929d384 Issue #9268: Add annotation option to pickletools.dis 17 July 2010, 15:51:21 UTC
f4e7a35 Issue #7384: On Gentoo, libreadline.so is a "fake library", so ldd fails. In that case, do not attempt to parse stderr output. 17 July 2010, 11:46:52 UTC
45bf773 #1555570: correctly handle a \r\n that is split by the read buffer. Patch and test by Tony Nelson. 17 July 2010, 01:19:57 UTC
cbe1a4e Add comma grouping to max result so it's easier to read. 16 July 2010, 19:26:23 UTC
448acd0 Fix possible failure in pickling tests due to different instantiations of the random module being around. 16 July 2010, 19:10:38 UTC
3b0a19e Add benchmarks for importing just source w/o writing bytecode, importing source while writing bytecode, and importing bytecode with source existing (don't care about sourceless imports). 16 July 2010, 19:04:29 UTC
44c2ffd Corrected TUPLE<N> opcodes' docs. 16 July 2010, 14:39:45 UTC
7b9bcb8 Touch up comments and code along with outputting what the unit of measure is. 15 July 2010, 06:24:04 UTC
0736767 Fix issue9132 - Documentation for comparing dictionaries is out of date 14 July 2010, 20:30:02 UTC
04f31b8 Fix a mistake, https proxy shoud be https:// 14 July 2010, 20:10:52 UTC
e4004a6 Fix: Issue6853 - Get HTTPS system proxy in Windows. 14 July 2010, 19:15:23 UTC
4988d7a PEP 8 conformance: class_ -> cls 14 July 2010, 13:46:57 UTC
1f9dea0 Issue #9251: test_threaded_import didn't fail when run through regrtest if the import lock was disabled. 14 July 2010, 11:52:38 UTC
aa69d4d Fix Issue5842 - Moving the tests out of urllib.parse module 14 July 2010, 10:21:22 UTC
fc9e08d High byte is the exit status. 14 July 2010, 10:16:11 UTC
b639c14 #9235: fix missing import of sys. 14 July 2010, 08:54:40 UTC
b0eb5da Remove unused code that would raise a NameError. 14 July 2010, 08:53:36 UTC
49b31d0 Remove XXX from text. 14 July 2010, 08:53:18 UTC
e767e04 #9258: fix copy-paste errors. 14 July 2010, 08:00:22 UTC
9969031 Woops, test_sndhdr.py contains the same code twice: fix it 13 July 2010, 23:08:01 UTC
e9ebde4 Issue #9243: Fix sndhdr module and add unit tests, contributed by James Lee. 13 July 2010, 23:04:56 UTC
903396e Set sys.modules[name] to None instead of 0 to block module import. 13 July 2010, 14:50:16 UTC
9c558bc Fix documentation typo: wprite() -> write(). 13 July 2010, 14:47:01 UTC
85f2177 Add bytes in literal_eval doc. 13 July 2010, 06:38:10 UTC
94628ee Yield more information on failure in test_struct boolean test. 12 July 2010, 20:03:24 UTC
c779515 Fix definition of len() and indexing for memoryview objects (part of #7696). 12 July 2010, 20:01:52 UTC
2efaf96 #6026: skip test_get_file_list when zlib is not available. 12 July 2010, 19:49:41 UTC
0bddfd0 Regenerate Python/graminit.c. 12 July 2010, 14:18:21 UTC
1c50d11 Issue #2009: refactor varargslist and typedargslist productions to make them more friendly for third-party parsers. 12 July 2010, 14:14:18 UTC
cf48e44 Remove mention of execfile from the tutorial. 12 July 2010, 09:37:40 UTC
db4e939 Use raw string literals for regexes containing backlash. 12 July 2010, 09:06:13 UTC
4abda54 Take care of duplicate target name warnings. 12 July 2010, 09:00:29 UTC
b5085d8 Remove myself. 12 July 2010, 06:03:18 UTC
c014448 Put my name down for winreg. 11 July 2010, 23:32:11 UTC
5ef96e5 allow byte literals 11 July 2010, 23:06:06 UTC
c762242 Include versionadded in (c)math.isfinite docs (thanks Ezio Melotti). Other minor doc cleanups. 11 July 2010, 19:47:37 UTC
68c5de6 assertEquals -> assertEqual 11 July 2010, 19:12:10 UTC
b214e90 Issue #9137: Fix issue in MutableMapping.update, which incorrectly treated keyword arguments called 'self' or 'other' specially. 11 July 2010, 18:53:06 UTC
226f544 Improve docstrings for isnan, isinf and isfinite. 11 July 2010, 18:13:41 UTC
25fcd39 Issue #8974: fix print calls in msgfmt.py. 11 July 2010, 17:39:46 UTC
8e0c996 Issue #9165: Add math.isfinite and cmath.isfinite. 11 July 2010, 17:38:24 UTC
3e74289 test for set literals 11 July 2010, 12:59:24 UTC
1ac745b Issue #7616: Fix copying of overlapping memoryview slices with the Intel compiler. 11 July 2010, 12:12:00 UTC
349d558 #9223: link to Command class reference, and move Command interface docs nearer to class docs. 11 July 2010, 10:22:44 UTC
05bfcc5 #7935: cross-reference to ast.literal_eval() from eval() docs. 11 July 2010, 09:42:10 UTC
492f3fc Allow set literals in literal_eval(). 11 July 2010, 09:41:21 UTC
e40ee50 #9184: fix default value for "buffering" param of open(). 11 July 2010, 09:33:39 UTC
de41bf3 Fix typo. 11 July 2010, 09:26:57 UTC
0104bcd #6774: explain shutdown() behavior varying with platform. 11 July 2010, 09:23:11 UTC
d395052 Fix for issue 9164 11 July 2010, 09:05:07 UTC
8a1c254 #3214 followup: add link to ABC entry. 11 July 2010, 08:36:20 UTC
692b3f8 Silence makeindex. 11 July 2010, 08:33:16 UTC
aba088e Issue2007: Removing reference to MSIE Cookie handling by mechanize. Suggested by John J Lee. 11 July 2010, 05:01:52 UTC
3b107f9 remove unneeded error check 11 July 2010, 03:36:35 UTC
2ef1632 Stricter verification for file based url scheme and reliance on ftp protocol. 11 July 2010, 03:12:43 UTC
0d62f5b ValueError is eventually what we want to move to, I suppose 10 July 2010, 15:14:45 UTC
522c32a Add missing docs for re module 'purge' function. 10 July 2010, 14:23:36 UTC
c653ce3 Fix error message for comparing single line strings in unittest.TestCase.assertEqual. Issue 9174. 10 July 2010, 13:52:22 UTC
0425a8e Fix 'refleak' introduced by fnmatch cache purge tests. This introduces a 'purge' function for the fnmatch module analogous to the 'purge' function in the re module. 10 July 2010, 13:52:13 UTC
a851483 #8564: update docs on integrating doctest/unittest with unittest(2) test discovery. 10 July 2010, 12:20:38 UTC
1c616a5 #8456: fix signature of sqlite3.connect(). 10 July 2010, 12:01:34 UTC
47d48bb #8338: fix outdated class name. 10 July 2010, 11:51:06 UTC
297d972 #1434090: properly append child in expatbuilder doctype handler. 10 July 2010, 11:40:13 UTC
73b1c7b #3214: improve description of duck-typing in glossary. 10 July 2010, 10:39:57 UTC
0310a83 #3071: tell how many values were expected when unpacking too many. 10 July 2010, 10:32:36 UTC
93eb42e Emphasize role of count for Pascal string. 10 July 2010, 10:23:40 UTC
b382337 Fix markup. 10 July 2010, 08:58:37 UTC
61c061a Oops. Fix distutils tests that r82746 broke. 09 July 2010, 19:55:05 UTC
b669221 be more robust across platforms 09 July 2010, 19:37:00 UTC
10de93a Silence gcc warning. (In function 'bytearray_init': warning: 'value' may be used uninitialized in this function). 09 July 2010, 19:25:48 UTC
back to top