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

sort by:
Revision Author Date Message Commit Date
6b5c14f Remove an old SF reference. 19 November 2007, 18:56:54 UTC
f481598 Backport r59049: Fix for #1444: utf_8_sig.StreamReader was (indirectly through decode()) calling codecs.utf_8_decode() with final==True, which falled with incomplete byte sequences. Fix and test by James G. Sack. 19 November 2007, 12:43:39 UTC
ad91c78 Backport r59047: Fix typo in comment. 19 November 2007, 12:23:44 UTC
e15fab4 Backport revision 58471, replace PyErr_Print() with PyErr_Clear(). 15 November 2007, 20:39:53 UTC
c572dc3 Backport for issue1265 (pdb bug with "with" statement). When an unfinished generator-iterator is garbage collected, PyEval_EvalFrameEx is called with a GeneratorExit exception set. This leads to funny results if the sys.settrace function itself makes use of generators. A visible effect is that the settrace function is reset to None. Another is that the eventual "finally" block of the generator is not called. It is necessary to save/restore the exception around the call to the trace function. This happens a lot with py3k: isinstance() of an ABCMeta instance runs def __instancecheck__(cls, instance): """Override for isinstance(instance, cls).""" return any(cls.__subclasscheck__(c) for c in {instance.__class__, type(instance)}) which lets an opened generator expression each time it returns True. And the problem can be reproduced in 2.5 with pure python code. 13 November 2007, 22:43:05 UTC
f5ccd45 News about list_repeat() fix. 13 November 2007, 05:23:21 UTC
809123c Issue 1704621. Fix segfaults in list_repeat() and list_inplace_repeat(). The C changes aren't quite the same as the patch given there; the test is. 12 November 2007, 20:04:41 UTC
50bbcc2 Fixed #1254: pdb fails to launch some script. 12 November 2007, 17:28:45 UTC
ad7363b Backport r58942: Fix TextCalendar.prweek(). This closes issue #1427. 12 November 2007, 10:03:39 UTC
d66350a Fix for #1427: Error in standard module calendar merge -r58935:58936 ../trunk 12 November 2007, 01:25:08 UTC
c2e0e07 when talking about an imminent 2.5.2c1, the build should identify itself as being some form of 2.5.2 (this is admittedly a bit conservative); we can make this 2.5.2c1 when making the release 09 November 2007, 16:53:20 UTC
e53fcfd Fix issue #1705170 (backport from trunk) 07 November 2007, 12:26:40 UTC
2e49f78 * fix failing test_recno.py - backport from trunk. * bump _bsddb patch version number. 07 November 2007, 07:25:20 UTC
e6a6f39 Backport r58892. Add missing "return NULL" in overflow check in PyString_Repr(). 07 November 2007, 01:19:49 UTC
a1e5387 Backport r58868: Fixes Issue 1385: The hmac module now computes the correct hmac when using hashes with a block size other than 64 bytes (such as sha384 and sha512). 06 November 2007, 00:32:04 UTC
ca74140 Note change to get_dialect semantics in 2.5. 04 November 2007, 15:57:43 UTC
1dcb9c9 Backport r58709 from trunk: Backport fixes for the code that decodes octal escapes (and for PyString also hex escapes) -- this was reaching beyond the end of the input string buffer, even though it is not supposed to be \0-terminated. This has no visible effect but is clearly the correct thing to do. (In 3.0 it had a visible effect after removing ob_sstate from PyString.) Also fixes #1098. 02 November 2007, 22:46:38 UTC
2c3e0d9 Backport r58757, r58758, r58759. Undoes incorrect dbtables fix and errant strdup introduced as described below: r58757 | gregory.p.smith | 2007-11-01 14:08:14 -0700 (Thu, 01 Nov 2007) | 4 lines Fix bug introduced in revision 58385. Database keys could no longer have NULL bytes in them. Replace the errant strdup with a malloc+memcpy. Adds a unit test for the correct behavior. r58758 | gregory.p.smith | 2007-11-01 14:15:36 -0700 (Thu, 01 Nov 2007) | 3 lines Undo revision 58533 58534 fixes. Those were a workaround for a problem introduced by 58385. r58759 | gregory.p.smith | 2007-11-01 14:17:47 -0700 (Thu, 01 Nov 2007) | 2 lines false "fix" undone as correct problem was found and fixed. 01 November 2007, 21:22:40 UTC
bf75c51 #1364: os.lstat is available on Windows too, as an alias to os.stat. 01 November 2007, 17:19:36 UTC
cf81e06 Sets are marshalable. 31 October 2007, 22:16:25 UTC
9afdaff Clarify the reasons why pickle is almost always better than marshal 31 October 2007, 22:02:21 UTC
9b12e00 - Build using system ffi library on arm*-linux*, pass --with-system-ffi to CONFIG_ARGS 25 October 2007, 06:38:01 UTC
e467dbc - Build using system ffi library on arm*-linux*. 24 October 2007, 20:34:07 UTC
5d512fa Bug #1321: Fixed logic error in TimedRotatingFileHandler.__init__() 24 October 2007, 10:49:50 UTC
4b2a6db Backport 58618: Issue 1307 by Derek Shockey, fix the same bug for RCPT. 24 October 2007, 03:52:50 UTC
4aa5f4b Bug #1313, fix typo (wrong variable name) in example. 23 October 2007, 05:42:38 UTC
1046af6 Backport 58594: Issue #1307, patch by Derek Shockey. When "MAIL" is received without args, an exception happens instead of sending a 501 syntax error response. 23 October 2007, 05:35:11 UTC
35a9f90 Backport r58545. 19 October 2007, 17:39:18 UTC
051aa77 Backport r58542. 19 October 2007, 12:34:20 UTC
dd4b025 Backport 58539: squelch the warning that this test is intended to raise. 19 October 2007, 07:35:22 UTC
0dcc3cc Backport 58532, 58533, 58534: - Fix bsddb.dbtables: Don't randomly corrupt newly inserted rows by picking a rowid string with null bytes in it. Such rows could not later be deleted, modified or individually selected. Existing bsdTableDb databases created with such rows are out of luck. - Use mkdtemp for the test_dbtables test database environment and clean it up afterwards using shutil.rmtree. 18 October 2007, 17:15:20 UTC
574e1ba Backport 58450: fix uncollectable reference leak in bsddb.db.DBShelf.append 13 October 2007, 23:05:54 UTC
57da2de Fix email example. 13 October 2007, 13:19:45 UTC
137bdfa Merge trunk 58434: Fixes http://bugs.python.org/issue1233 - bsddb.dbshelve.DBShelf.append was useless due to inverted logic. Also adds a test case for RECNO dbs to test_dbshelve. 12 October 2007, 18:49:36 UTC
8012e9c Silence a compiler warning about a function definition not being a prototype. 12 October 2007, 17:41:08 UTC
d79fa9e Bug #1216: Restore support for Visual Studio 2002. 12 October 2007, 08:58:48 UTC
d6f6381 Fix ctypes on 32-bit systems when Python is configured --with-system-ffi. See also https://bugs.launchpad.net/bugs/72505. 12 October 2007, 06:53:32 UTC
163048e Backport 58424: Fix Coverity 185-186: If the passed in FILE is NULL, uninitialized memory would be accessed. 12 October 2007, 03:59:09 UTC
7d9c00e Backport 58385 from trunk: fix a double free bug in the _bsddb module on DBCursor.get (and a friends) when passing in a string key. 09 October 2007, 07:25:24 UTC
381e1a4 Backport rev 58343: fix DBSequence.get_key() to not crash/fail/etc. 06 October 2007, 16:05:18 UTC
76ee227 Backport 58348: use a reliable host in the test. 06 October 2007, 15:55:25 UTC
4a08ec3 Backport 58344: allow BerkeleyDB 4.6.x >= 4.6.21 for the bsddb module 06 October 2007, 08:11:29 UTC
c9f22b9 Backport 58332: Fix Coverity #159. This code was broken if save() returned a negative number since i contained a boolean value and then we compared i < 0 which should never be true. 05 October 2007, 05:05:24 UTC
14f848b Backport 58330: Fix Coverity #158: Check the correct variable. 05 October 2007, 03:45:42 UTC
0ac4b27 move descriptions of ac_(in|out)_buffer_size to the right place http://bugs.python.org/issue1053 05 October 2007, 03:12:00 UTC
2f2bd3e #1196: document default radix for int(). 24 September 2007, 17:58:18 UTC
cdceeb8 Fix -- being converted to - in HTML. #1186. 24 September 2007, 17:56:12 UTC
dfecfdb Fix #1169: remove docstrings in functions for -OO. (backport from rev. 58204) 19 September 2007, 06:37:26 UTC
5e84e80 issue1172: Documentation of "done" attribute in cgi module. 18 September 2007, 23:38:15 UTC
e8dd31a issue1082: Fixing system and platform names for Vista. 17 September 2007, 20:58:46 UTC
1644e6e issue1140: Guido's patch from revision 58098 (2.6) applied to 2.5. 17 September 2007, 09:43:11 UTC
b5ec587 issue1597011: Fix for bz2 module corner-case error due to error checking bug. 17 September 2007, 05:45:20 UTC
5cf6ef8 ctypes.util.find_library uses dump(1) instead of objdump(1) on Solaris. Fixes issue #1777530; backported from trunk. 14 September 2007, 20:05:26 UTC
3af4220 Backport 58150: Rename debug import lib to _msi_d.lib. 14 September 2007, 07:02:51 UTC
782c417 Backport r58149: Clean Release projects as well. 14 September 2007, 07:01:59 UTC
9a85f04 Add 2.5 MSI builder. 13 September 2007, 18:26:13 UTC
fed6bb7 Bug #1153: repr.repr() now doesn't require set and dictionary items to be orderable to properly represent them. (backport from rev. 58122) 12 September 2007, 19:00:10 UTC
226910f bug #1154: release memory allocated by "es" PyArg_ParseTuple format specifier. (backport from rev. 58119) 12 September 2007, 18:29:21 UTC
b8c23fb Fix #1139: PyFile_Encoding really is PyFile_SetEncoding. (backport from rev. 58117). 12 September 2007, 18:11:03 UTC
5d30e75 Fix #1122: wrong return type documented for various _Size() functions. (backport from rev. 58115). 12 September 2007, 18:08:54 UTC
13bfa3a Cause passing a string to generator.throw() to raise a deprecation warning. 11 September 2007, 21:12:14 UTC
18726be Backport: #1095: ln -f doesn't work portably. 07 September 2007, 20:12:59 UTC
339a3ad backport of r58023 to fix unit test suite issue1112 on windows 06 September 2007, 23:01:32 UTC
c4f5a15 Fix typo: c_float represents to C float type. 06 September 2007, 20:26:03 UTC
303d350 Backport of r58004. 06 September 2007, 08:35:34 UTC
a326ab2 Patch #786737: Allow building in a tree of symlinks pointing to a readonly source. 05 September 2007, 11:47:22 UTC
5cb86a2 - Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify to include some information about the build environment. 05 September 2007, 06:45:57 UTC
7303f70 Patch #1105: Explain that one needs to build the solution to get dependencies right. 05 September 2007, 06:39:02 UTC
b084402 - Fix libffi configure for hppa*-*-linux* | parisc*-*-linux*. 04 September 2007, 23:47:16 UTC
fc787d5 Patch #1031213: Decode source line in SyntaxErrors back to its original source encoding. 04 September 2007, 14:20:25 UTC
cf754ba - Added support for linking the bsddb module against BerkeleyDB 4.6.x. 03 September 2007, 22:13:48 UTC
df65f9b Backport of rev. 57904 02 September 2007, 09:48:20 UTC
fe2cb59 Bug #1737210: Change Manufacturer of Windows installer to PSF. 01 September 2007, 06:36:38 UTC
738032f Mark registry components as 64-bit on Win64. 31 August 2007, 10:00:06 UTC
b9ff669 Warn about possible risks when extracting untrusted archives. 30 August 2007, 20:25:13 UTC
39f1f45 Bug #1709599: Run test_1565150 only if the file system is NTFS. 30 August 2007, 18:58:29 UTC
aa1e005 Bug #1746880: Correctly install DLLs into system32 folder on Win64. 30 August 2007, 18:37:41 UTC
d4c0969 . 29 August 2007, 01:34:15 UTC
51cf112 backport r57626 28 August 2007, 23:26:55 UTC
a9bad98 TarFile.__init__() no longer fails if no name argument is passed and the fileobj argument has no usable name attribute (e.g. StringIO). (backported from r57616) 28 August 2007, 12:33:15 UTC
1ab6a25 Backport this change to get test_sqlite working on Macs. Same change Thomas made to the trunk awhile ago I believe. 27 August 2007, 03:00:59 UTC
906f735 Bug #1010: docs url points to SF.net, now points to bugs.python.org. 24 August 2007, 17:20:41 UTC
8e3315d Bug #1765375: fix stripping of unwanted LDFLAGS. (backport from rev. 57389) 24 August 2007, 11:48:37 UTC
79af4af On systems with both the ancient bsddb 1.85 library and a recent BerkeleyDB 4.x library installed both were detected so both modules were enabled. But the include path causes the recent BerkeleyDB's db.h file to be included causing the bsddb185 compile to fail. This disables building bsddb185 when both are present. 24 August 2007, 05:38:31 UTC
838c332 backport of r57378 to fix bug 1725856 24 August 2007, 05:26:15 UTC
eec47f3 Backport fix of #1752175. 23 August 2007, 18:08:33 UTC
7d108b8 Bug #1766421: "return code" vs. "status code". 23 August 2007, 17:57:53 UTC
e468ada Back port of r57286 from py3k and trunk ------------------------------------------------------------------------ r57286 | gregory.p.smith | 2007-08-22 14:32:34 -0700 (Wed, 22 Aug 2007) | 3 lines stop leaving log.0000001 __db.00* and xxx.db turds in developer sandboxes when bsddb3 tests are run. 23 August 2007, 05:05:12 UTC
b354e3d Fix a typo in a comment 21 August 2007, 04:55:11 UTC
2da880a - mark the findCaller 2-element tuple/3-element tuple change as new in 2.4 16 August 2007, 12:00:56 UTC
f294460 Fix #1771558 (already fixed in trunk). 10 August 2007, 17:29:51 UTC
de469d6 Fix compilation warning. (backport from rev. 56833) 08 August 2007, 13:50:04 UTC
eb4b738 Revert the fix for #1548891, it broke backwards compatibility with arbitrary read buffers. Fixes #1730114. (backport from rev. 56830) 08 August 2007, 13:03:45 UTC
e51d1d1 Bug #1769002: fix a now-wrong sentence in the tutorial. (backport from rev. 56797) 07 August 2007, 07:13:27 UTC
36fe3c0 Backport from trunk r56727: Fix gb18030 codec's bug that doesn't map two-byte characters on GB18030 extension in encoding. (bug reported by Bjorn Stabell) 04 August 2007, 04:15:04 UTC
979f5cd - Allow Emacs 22 for building the documentation in info format. 02 August 2007, 21:28:57 UTC
858c809 Define _BSD_SOURCE, to get access to POSIX extensions on OpenBSD 4.1+. 31 July 2007, 19:54:20 UTC
b4d100c Bug #1763149: use proper slice syntax in docstring. (backport) 29 July 2007, 17:37:22 UTC
00247d8 try-except-finally is new in 2.5. (backport from rev. 56614) 29 July 2007, 09:11:19 UTC
22c1525 Clarify PEP 343 description. (backport from rev. 56611) 29 July 2007, 08:26:15 UTC
back to top