https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
07a4a38 Bump to 2.6b3. 21 August 2008, 01:15:08 UTC
cd3b74d Reverted r65900. See http://mail.python.org/pipermail/python-checkins/2008-August/073116.html 20 August 2008, 16:15:28 UTC
f840296 News for the tp_flags change. 20 August 2008, 15:01:50 UTC
84b1e0f News for the imageop fix. 20 August 2008, 14:57:20 UTC
73641d7 fix up the multiprocessing docs a little 20 August 2008, 14:07:59 UTC
838c79f Issue #3612: Added some missing basic types in ctypes.wintypes. 20 August 2008, 13:14:07 UTC
ccfdcd0 fixed get_file_system in test_os.py ('path' is unicode on py3k and ansi on trunk) 20 August 2008, 04:13:28 UTC
e6b5ba6 fix silly errors of mine 20 August 2008, 02:15:42 UTC
86da890 newSymbolTable is not public API 20 August 2008, 01:44:45 UTC
e977ad4 deprecate some useless, noop methods in symtable 20 August 2008, 01:42:01 UTC
f647dc1 add a NEWS note for new args syntax 20 August 2008, 01:27:30 UTC
67f24f1 follow-up of issue3473: update the compiler package to recognize the new syntax. 20 August 2008, 00:08:47 UTC
bd6a05f check that the parser module can handle the new keyword syntax 19 August 2008, 22:06:11 UTC
bd7bda4 Merged revisions 65876 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r65876 | benjamin.peterson | 2008-08-19 15:54:52 -0500 (Tue, 19 Aug 2008) | 1 line apply a fix I think will help Windows ........ 19 August 2008, 21:07:15 UTC
93ebfb1 Issue 1179: [CVE-2007-4965] Integer overflow in imageop module. 19 August 2008, 21:02:04 UTC
69ed101 Hopeful fix for issue 1878: remove Py_TPFLAGS_HAVE_VERSION_TAG from Py_TPFLAGS_DEFAULT when not building the core. 19 August 2008, 20:13:02 UTC
80f0ed5 allow keyword args to be passed in after *args #3473 19 August 2008, 19:52:46 UTC
d9ccf8c COM method code is windows specific 19 August 2008, 19:40:23 UTC
6b094a4 fix a little typo 19 August 2008, 19:27:53 UTC
0ad5ae0 Fix a regression introduced by rev. 63792: ctypes function pointers that are COM methods must have a boolean True value. 19 August 2008, 19:25:04 UTC
4348a25 silence callable warning in hmac 19 August 2008, 19:07:38 UTC
5bc9f4c issue3352: clean up the multiprocessing API to remove many get_/set_ methods and convert them to properties. Update the docs and the examples included. 19 August 2008, 19:06:19 UTC
7c972f9 get unparse to at least unparse its self 19 August 2008, 17:59:23 UTC
6626099 Fix strange character in the docstring. 19 August 2008, 17:47:13 UTC
d068ad5 Merged revisions 65853-65854 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r65853 | benjamin.peterson | 2008-08-19 11:09:09 -0500 (Tue, 19 Aug 2008) | 1 line apply a patch for #3131. this solves the problem for the moment, but we should do some refactoring to get display logic out of RefactoringTool ........ r65854 | benjamin.peterson | 2008-08-19 11:37:38 -0500 (Tue, 19 Aug 2008) | 1 line another quick fix to get lib2to3 to work ........ 19 August 2008, 16:41:34 UTC
25c3408 Fix grammar. 18 August 2008, 23:09:49 UTC
facdd6e update the threading docs to account for recent changes 18 August 2008, 22:29:19 UTC
6ee1a31 add py3k warnings for old threading APIs they will still live in 3.0 but it can't hurt 18 August 2008, 21:53:29 UTC
351ffb8 #2234 distutils failed with mingw binutils 2.18.50.20080109. Be less strict when parsing these version numbers, they don't necessarily follow the python numbering scheme. 18 August 2008, 19:23:47 UTC
26f5216 fix old API names in test_ssl 18 August 2008, 18:39:57 UTC
82aa201 patch up multiprocessing until it's API can be changed too 18 August 2008, 18:31:58 UTC
d810626 bring back the old API 18 August 2008, 18:13:17 UTC
a9b2222 change a few uses of the threading APIs 18 August 2008, 18:01:43 UTC
cbae869 backport threading property changes 18 August 2008, 17:45:09 UTC
d8a8972 change threading.getIdent to a property This is new in 2.6 so now need to worry about backwards compatibility :) 18 August 2008, 16:40:03 UTC
e5bdccc Backport of r63826. Optimization of str.format() for cases with str, unicode, int, long, and float arguments. This gives about 30% speed improvement for the simplest (but most common) cases. This patch skips the __format__ dispatch, and also avoids creating an object to hold the format_spec. Unfortunately there's a complication in 2.6 with int, long, and float because they always expect str format_specs. So in the unicode version of this optimization, just check for unicode objects. int, float, long, and str can be added later, if needed. 18 August 2008, 14:27:38 UTC
8e439a1 Fix typo 18 August 2008, 13:32:19 UTC
6e8fef0 Issue 2235: document PyObject_HashNotImplemented 18 August 2008, 13:14:22 UTC
f70385a Belated NEWS entry for r65642 18 August 2008, 12:42:46 UTC
4763f71 Restore Python 2.3 compatibility and remove "with" usage. 18 August 2008, 11:13:45 UTC
541f7da add a test for reduce's move 18 August 2008, 02:12:23 UTC
08336e3 follup to #3473: don't duplicate the reduce code 18 August 2008, 02:01:21 UTC
8692c79 correct version 18 August 2008, 01:27:05 UTC
88f801d Update __all__ for cookielib, csv, os, and urllib2 for objects imported into the module but exposed as part of the API. 18 August 2008, 00:46:22 UTC
7b96f07 Remove an unneeded import of abc.ABCMeta from 'inspect'. 18 August 2008, 00:41:11 UTC
46225e7 Remove two unneeded imports in 'io'. 18 August 2008, 00:36:52 UTC
25c9d6a Remove imports of 'warnings' that are no longer needed in dummy_thread, filecmp, and shelve. 17 August 2008, 22:10:11 UTC
313bda1 Fix a refleak in bytearray.split and bytearray.rsplit, detected by regrtest.py -R:: test_bytes 17 August 2008, 21:05:18 UTC
37553fd set svn:executable on a script 17 August 2008, 20:33:45 UTC
954ea64 #3580: fix a failure in test_os 17 August 2008, 20:15:07 UTC
7dd8547 get the symtable module back in working order - Fix broken functions - Add (hopefully) extensive tests - Modernize a little 17 August 2008, 17:13:26 UTC
fd7c43e #3556: test_raiseMemError consumes an insane amount of memory 17 August 2008, 17:01:49 UTC
bebb18b backport r65723: strengthen test_os.test_closerange 17 August 2008, 14:43:41 UTC
41a81eb Backport r65661, r65760: Issue #3575: Incremental decoder's decode function now takes bytearray by using 's*' instead of 't#'. 17 August 2008, 13:10:46 UTC
c534270 fix ZipFile.testzip() to work with very large embedded files 17 August 2008, 13:06:29 UTC
7f30a68 I forgot to update NEWS. 17 August 2008, 09:46:56 UTC
a0fdd72 Issue #2222: Fixed reference leak when occured os.rename() fails unicode conversion on 2nd parameter. (windows only) 17 August 2008, 09:19:52 UTC
047e4a9 Update distutils so that it triggers no warnings when run under -3. 17 August 2008, 04:16:04 UTC
94f243a Issue 2464. Supports a malformation in the URL received in a redirect. 17 August 2008, 03:38:39 UTC
25f2d89 uhh PySTEntry->ste_unoptimized has to be exposed too 17 August 2008, 02:23:43 UTC
025d939 fix compile errors 17 August 2008, 01:27:30 UTC
e3444c8 a few improvements 17 August 2008, 01:17:15 UTC
e0d4c7b expose PySTEntry.nested so the symtable module will work 17 August 2008, 01:09:17 UTC
1e45c58 Make test_ossaudiodev work. 17 August 2008, 00:36:03 UTC
e0d12eb PySTEntry's constructor is static; there's no point in a fancy API name 16 August 2008, 23:29:40 UTC
765812f Review symtable docs. 16 August 2008, 22:37:05 UTC
0847332 include filename and line number in SyntaxError 16 August 2008, 22:11:33 UTC
721b145 Silence DeprecationWarning raised by mimetools and rfc822 in cgi. 16 August 2008, 22:00:27 UTC
0a4128e Silence the DeprecationWarning raised in httplib when mimetools is imported. 16 August 2008, 21:56:03 UTC
abe423e Silence the DeprecationWarning raised by importing mimetools in BaseHTTPServer. This does have an unfortunate side-effect of silencing the warning for all subsequent code that imports mimetools as well since the warning is only executed upon the first import of mimetools. 16 August 2008, 21:47:07 UTC
1e296cc add some documentation for symtable 16 August 2008, 21:04:16 UTC
4acb189 #3424 rearrange the order of tests in imghdr to place more common types first 16 August 2008, 16:29:02 UTC
eb90b78 Issue #2776: fixed small issue when handling an URL with double slash after a 302 response in the case of not going through a proxy. 16 August 2008, 14:44:07 UTC
5b02ef3 note how os.utime should be used for emulating touch 16 August 2008, 03:13:07 UTC
4eb9939 fix markup 16 August 2008, 03:02:41 UTC
1b5c32c Merged revisions 65397 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r65397 | collin.winter | 2008-08-01 22:39:06 -0500 (Fri, 01 Aug 2008) | 5 lines Patch #3480 by Nick Edds. Dramatically simplifies the fix_imports pattern, resulting in a reduction of the test_all_fixers runtime from 122+ secs to 59 secs (a good predictor of 2to3 performance). ........ 15 August 2008, 23:51:24 UTC
59de7f5 document that waitpid raises OSError 15 August 2008, 23:14:00 UTC
b90a8be #2676: email/message.py [Message.get_content_type]: Trivial regex hangs on pathological input 15 August 2008, 21:03:21 UTC
a174a37 #3558: Attribute reference binds more tightly than subscription and call. 15 August 2008, 18:35:09 UTC
11ec65d Issue #3476: make BufferedReader and BufferedWriter thread-safe 14 August 2008, 21:04:30 UTC
63d325e Disable the test until I have one that works. 14 August 2008, 20:19:18 UTC
64034f9 Fix memory leak: Always DECREF obj in PyBuffer_Release. 14 August 2008, 20:12:06 UTC
6d2014e Try to fix the test on 64-bit platforms. 14 August 2008, 20:04:38 UTC
57adf22 issue #3554: ctypes.string_at and ctypes.wstring_at must use the pythonapi calling convention so that the GIL is held and error return values are checked. 14 August 2008, 19:10:48 UTC
67d1981 Issue 1432. Fixes a bug caused because of the evolution of the RFC that describes the behaviour. Note that we now have the same behaviour than the current browsers. 14 August 2008, 16:51:00 UTC
8401eec Properly INCREF reference in Py_buffer. 14 August 2008, 15:56:07 UTC
241b834 Make obj an owned reference in Py_buffer; this checkin was missing from the patch for #3139. 14 August 2008, 15:54:27 UTC
9f4e7fe Added _multiprocessing module support. (VC6) 14 August 2008, 11:26:34 UTC
9329846 Fix markup for various binary operation examples where the operands were bolded and the operator was made literal, leading to non-valid reST. Changed to have the entire expression just be a literal bit of text. 14 August 2008, 05:55:18 UTC
41a4f46 Fixed test_distutils error (test_build_ext) on VC6. 14 August 2008, 05:50:43 UTC
bf3157b Silence the DeprecationWarning of rfc822 triggered by its importation in mimetools. This has an unfortunate side-effect of potentially not letting any warning about rfc822's deprecation be seen by user-visible code if rfc822 is not imported before mimetools. This is because modules are cached in sys.modules and thus do not have their deprecation triggered more than once. But this silencing would have happened by other code that silences the use of mimetools or rfc822 anyway in the stdlib or user code, and thus seems justified to be done here. 14 August 2008, 05:00:03 UTC
eea8eda Issue #2065: VC6 related fix. - PC/VC6/_bsddb.dsp: removed '/nodefaultlib:"msvcrt"' to fix linker error. - PC/VC6/_msi.dsp, PC/VC6/pcbuild.dsw: added new module support. - PC/VC6/_sqlite3.dsp: /D "MODULE_NAME=\"sqlite3\"" caused extra leading space like #define MODULE_NAME " sqlite3" so uses /D MODULE_NAME=\"sqlite3\" instead. - PC/VC6/python.dsp: changed stack size to 2MB to avoid stack overflow on some tests. 14 August 2008, 01:33:44 UTC
581a149 Add Hirokazu Yamamoto. 12 August 2008, 20:45:21 UTC
5bfbd76 update ssl documentation 12 August 2008, 17:09:57 UTC
39295c2 remove duplicate close() from ssl.py; expose unwrap and add test for it 12 August 2008, 16:31:21 UTC
f91d46a Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple, by denying s# to parse objects that have a releasebuffer procedure, and introducing s*. More module might need to get converted to use s*. 12 August 2008, 14:49:50 UTC
aa8efbf Another fix for 4-way universal builds, use the right #ifndef guard to detect the OSX 10.5 SDK. 12 August 2008, 12:41:45 UTC
a4cb472 Fix typo in the `arch` commandline 12 August 2008, 12:29:13 UTC
5d35373 Fix the connection refused error part of issue 3419, use errno module instead of a static list of possible connection refused messages. 11 August 2008, 19:00:15 UTC
9fcd4b3 #3134: shutil referenced undefined WindowsError symbol 11 August 2008, 17:21:36 UTC
back to top