https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
2d8697f Preparing for 2.5 final. (damn, it's nice to see the line #define PY_VERSION "2.5" in patchlevel.h) 18 September 2006, 06:51:50 UTC
347f3cc better wording 18 September 2006, 06:45:59 UTC
cf783eb Mention that GCC 4.1 is also affected, and that adding -fwrapv helps. 18 September 2006, 06:23:06 UTC
885d8e7 Discourage using GCC 4.2 for Python. 18 September 2006, 06:00:52 UTC
736fc56 Workaround for bug #1558983 There is an issue with custom icons on directories in the 2.5c2 installer, don't set a custom icon on "/Applications/MacPython 2.5" for now. Also make sure that the installer doesn't crap out when the Makefile in the system's python installation has other customizations than we expect. 17 September 2006, 18:40:15 UTC
137c789 revise explanation of returns_unicode to reflect bool values and to include the default value 15 September 2006, 16:10:25 UTC
2e63dbe - fix module name in links in formatted documentation - minor markup cleanup 15 September 2006, 14:14:55 UTC
77aad9a Backport uuid doc cleanup from rev. 51883. 15 September 2006, 05:26:17 UTC
fe20482 Correct elementtree module index entry. (backport) 15 September 2006, 05:20:57 UTC
44850ea Backport rev 51866-51868 from trunk (sqlite3 documentation fixes). 14 September 2006, 05:05:42 UTC
af22c52 Add sgml_input.html. 12 September 2006, 09:16:28 UTC
29be054 Tagging for release of Python 2.5c2 12 September 2006, 01:00:45 UTC
72345f2 remove 2.5 final section from NEWS.txt until after rc2 (reduced confusion) 11 September 2006, 15:32:50 UTC
2d4183c preparing for 2.5c2 11 September 2006, 15:30:13 UTC
0bcafac Building with HP's cc on HP-UX turned up a couple of problems. _PyGILState_NoteThreadState was declared as static inconsistently. Make it static as it's not necessary outside of this module. Some tests failed because errno was reset to 0. (I think the tests that failed were at least: test_fcntl and test_mailbox). Ensure that errno doesn't change after a call to Py_END_ALLOW_THREADS. This only affected debug builds. This needs to be ported to HEAD. I'll try to remember to do that tomorrow. (Anyone, feel free to port it.) 11 September 2006, 08:51:17 UTC
ece448e Properly handle a NULL returned from PyArena_New(). Klocwork #364. Will port to head. 11 September 2006, 04:06:23 UTC
48829ba As mentioned on python-dev, reverting patch #1504333 because it introduced an infinite loop in rev 47154. This patch also adds a test to prevent the regression. Will backport to 2.4 and head later. 11 September 2006, 04:05:18 UTC
2e488fd Add NEWS entries for ctypes backports. 11 September 2006, 04:03:07 UTC
5728c27 Backport rev 51820 from Thomas Heller The cast function did not accept c_char_p or c_wchar_p instances as first argument, and failed with a 'bad argument to internal function' error message. 11 September 2006, 04:02:43 UTC
71e2aa0 Backport rev 51819 from Thomas Heller Anonymous structure fields that have a bit-width specified did not work, and they gave a strange error message from PyArg_ParseTuple: function takes exactly 2 arguments (3 given). 11 September 2006, 04:01:57 UTC
19d76c5 Remove __unicode__ method so that ``unicode(BaseException)`` succeeds. Fixes bug #1551432. 09 September 2006, 07:18:44 UTC
b3304c1 Fix typo in example 08 September 2006, 14:06:42 UTC
9cd0036 Use native SQLite types 08 September 2006, 14:03:19 UTC
f36ddda Explain SQLite a bit more clearly 08 September 2006, 13:36:57 UTC
62f19e4 Backport inspect.py fix from rev 51803 08 September 2006, 10:01:23 UTC
8de403a Backport rev. 51798 from trunk: fix setobject.c refcounts and error checks. 08 September 2006, 06:02:26 UTC
137ae0c Backport from trunk r51737: Fixed a few bugs on cjkcodecs: - gbk and gb18030 codec now handle U+30FB KATAKANA MIDDLE DOT correctly. - iso2022_jp_2 codec now encodes into G0 for KS X 1001, GB2312 codepoints to conform the standard. - iso2022_jp_3 and iso2022_jp_2004 codec can encode JIS X 0213:2 codepoints now. 07 September 2006, 12:50:38 UTC
d6872b1 Remove one glaring error and update several version numbers. 07 September 2006, 12:00:43 UTC
d83e799 No, the problem was actually because buildbot uses a StringIO in place of sys.stdout while running tests. Removing one more test to make buildbot happy. 06 September 2006, 23:15:24 UTC
d1b1b8c Fixed bug #1531862: Do not close standard file descriptors in subprocess. Let's try that once more. Buildbots were broken last time, but probably because tests were sending data to stderr for testing it (sending to a file doesn't touch the problem). The fix is still the same, but tests were reduced (removing tests to be able to fix something is weird, but oh well). 06 September 2006, 22:44:51 UTC
8a230b5 Backport bug fix for SF bug report #1546372. 06 September 2006, 20:38:50 UTC
4dc0952 Fix missing import of the types module in logging.config. (backport from rev. 51785) 06 September 2006, 20:06:27 UTC
291a1b8 Backport of r51379 from trunk: Add asserts to check for 'impossible' NULL values, with comments. In one place where I'm not 1000% sure about the non-NULL, raise a RuntimeError for safety. This should fix the klocwork issues that Neal sent me. If so, it should be applied to the release25-maint branch also. 06 September 2006, 17:48:56 UTC
ecab623 Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack. Also make sure that every exception class has __module__ set to 'exceptions'. (backport) 06 September 2006, 06:47:02 UTC
37a9e57 Bug #1550983: emit better error messages for erroneous relative imports (if not in package and if beyond toplevel package). (backport from rev. 51765) 06 September 2006, 06:09:34 UTC
b20cb33 Bug #1551427: fix a wrong NULL pointer check in the win32 version of os.urandom(). (backport from rev. 51762) 06 September 2006, 06:04:06 UTC
f3ce2ab Revert 51759 because it broke all the buildbots 06 September 2006, 03:58:59 UTC
63d675c Backporting fix for bug #1531862, committed in 51758, into 2.5, making subprocess not close standard file descriptors. 06 September 2006, 02:05:35 UTC
d735779 Fixing an improperly escaped grep in .spec file, pointed out by Neal Norwitz. 05 September 2006, 13:39:06 UTC
a8ed1b0 Rearrange example a bit, and show rpartition() when separator is not found 05 September 2006, 13:11:33 UTC
08f6f47 Bug #1552618: change docs of dict.has_key() to reflect recommendation to use "in". (backport from rev. 51740) 05 September 2006, 12:45:18 UTC
9a24479 Add another NEWS entry for a fix already in 2.5c1 05 September 2006, 04:49:45 UTC
24b6f20 Add some NEWS for fixes already in 2.5c1 05 September 2006, 04:43:56 UTC
fe50f8e Backport 51669: Make sure memory is properly cleaned up in file_init (even though this should not be able to happen since we already parsed the args) 05 September 2006, 04:32:06 UTC
3b3aae0 Bug #1520864 (again): unpacking singleton tuples in list comprehensions and generator expressions (x for x, in ... ) works again. Sigh, I only fixed for loops the first time, not list comps and genexprs too. I couldn't find any more unpacking cases where there is a similar bug lurking. 05 September 2006, 03:56:01 UTC
541a48b Patch #1540470, for OpenBSD 4.0. Backport candidate for 2.[34]. 05 September 2006, 02:54:42 UTC
716692f Backport fix from 51683. 05 September 2006, 02:33:44 UTC
7ae5f29 Backport fix for SF bug #1550714, itertools.tee raises SystemError 05 September 2006, 02:30:10 UTC
29a5fdb Fix str.rpartition(sep) when sep is not found in str. Partially from SF patch #1551339, but also taken from head. 05 September 2006, 02:21:38 UTC
8dc71f2 This was found by Guido AFAIK on p3yk (sic) branch. 05 September 2006, 02:00:21 UTC
d3da7d3 Fix SF bug #1546288, crash in dict_equal 05 September 2006, 01:54:06 UTC
8568752 Fix SF #1552093, eval docstring typo (3 ps in mapping) 05 September 2006, 01:52:00 UTC
cbdd350 i_divmod(): As discussed on Python-Dev, changed the overflow checking to live happily with recent gcc optimizations that assume signed integer arithmetic never overflows. 05 September 2006, 01:47:53 UTC
3467352 SF patch #1551340 ] Updated spec file for 2.5 release (c2) 05 September 2006, 01:36:43 UTC
8bd1c0d Backport docos 03 September 2006, 20:01:05 UTC
665a3ae Backport doco 03 September 2006, 20:00:39 UTC
08c496d NEWS entry for decimal module changes 03 September 2006, 01:13:06 UTC
c48daf5 Backport of decimal module context management updates from rev 51694 to 2.5 release branch 03 September 2006, 01:08:30 UTC
f07b590 Backport 51663: Doc fix: hashlib objects don't always return a digest of 16 bytes. 03 September 2006, 00:04:26 UTC
38b9460 SF #1547931, fix typo (missing and). Backport candidate for 2.3/2.4 too 02 September 2006, 02:45:43 UTC
097bbea evalfile() should be execfile(). (backport from rev. 51677) 01 September 2006, 22:30:56 UTC
2998a1c - SF patch #1550263: Enhance and correct unittest docs - various minor cleanups for improved consistency 01 September 2006, 03:56:22 UTC
58af7ef Patch #1545507: Exclude ctypes package in Win64 MSI file. 25 August 2006, 00:11:38 UTC
7b3c031 Alexander Belopolsky pointed out that pos is a size_t 22 August 2006, 13:57:07 UTC
ab7e5ef patch for documentation for recent uuid changes (from ping) 22 August 2006, 07:36:06 UTC
19c35bb - Patch #1541585: fix buffer overrun when performing repr() on a unicode string in a build with wide unicode (UCS-4) support. I will forward port to 2.6. Can someone backport to 2.4? 21 August 2006, 22:13:11 UTC
bebdc9e Backport 51443: Handle a few more error conditions. Klocwork 301 and 302. Will backport. 21 August 2006, 20:20:59 UTC
47f0ffa Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev 21 August 2006, 18:44:09 UTC
7443b80 Backport 51432: Fix bug #1543303, tarfile adds padding that breaks gunzip. Patch # 1543897. (remove the padding) 21 August 2006, 18:43:51 UTC
db232dc Patch #1542948: fix urllib2 header casing issue. With new test. (backport from rev. 51416) 20 August 2006, 13:15:43 UTC
d6f8629 SF #1542693: Remove semi-colon at end of PyImport_ImportModuleEx macro 19 August 2006, 04:19:43 UTC
3ba2478 Move initialization of interned strings to before allocating the object so we don't leak op. (Fixes an earlier patch to this code) Klockwork #350 19 August 2006, 04:19:14 UTC
03ee62c Move assert to after NULL check, otherwise we deref NULL in the assert. Klocwork #307 19 August 2006, 04:18:39 UTC
e12b9f6 Minor edits 18 August 2006, 13:54:33 UTC
1e8feed Typo in tp_clear docs. (backport from rev. 51368) 18 August 2006, 07:35:53 UTC
595d9b6 Bug #1541682: Fix example in the "Refcount details" API docs. Additionally, remove a faulty example showing PySequence_SetItem applied to a newly created list object and add notes that this isn't a good idea. (backport from rev. 51364) 18 August 2006, 07:28:03 UTC
2c3a256 Bug #1541863: uuid.uuid1 failed to generate unique identifiers on systems with low clock resolution. 18 August 2006, 03:40:13 UTC
5522624 Invoke debug mk1mf.pl after running Configure. 17 August 2006, 18:54:43 UTC
9f04e6a Leave tk build directory to restore original path. 17 August 2006, 17:27:31 UTC
e1d4fe6 Tagging for release of Python 2.5c1 17 August 2006, 03:08:55 UTC
86f5bf6 Branching release25-maint. All further 2.5 releases (including the release candidates, the final release and all bugfix releases) will be from this branch, not the trunk. 17 August 2006, 00:38:04 UTC
4c6b0d5 Fix a bug in the ``compiler`` package that caused invalid code to be generated for generator expressions. 16 August 2006, 23:38:05 UTC
7ae3548 File menu hotkeys: there were three 'p' assignments. Reassign the 'Save Copy As' and 'Print' hotkeys to 'y' and 't'. Change the Shell menu hotkey from 's' to 'l'. M Bindings.py M PyShell.py M NEWS.txt 16 August 2006, 21:45:59 UTC
f5af05a Tutorial: Clarify somewhat how parameters are passed to functions (especially explain what integer means). Correct the table - Python integers and longs can both be used. Further clarification to the table comparing ctypes types, Python types, and C types. Reference: Replace integer by C ``int`` where it makes sense. 16 August 2006, 18:02:11 UTC
c13324e Grammar fix 16 August 2006, 17:11:18 UTC
dc075b9 SF#1534630 ignore data that arrives before the opening start tag 16 August 2006, 16:47:07 UTC
574cfea Add NEWS item mentioning the reverted distutils version number patch. 16 August 2006, 16:11:01 UTC
b4a0cf1 Remove the special casing of Py_None when converting the return value of the Python part of a callback function to C. If it cannot be converted, call PyErr_WriteUnraisable with the exception we got. Before, arbitrary data has been passed to the calling C code in this case. (I'm not really sure the NEWS entry is understandable, but I cannot find better words) 16 August 2006, 15:10:12 UTC
f9b5b8e Wording/typo fixes 16 August 2006, 14:21:14 UTC
213e764 Update bug/patch counts 16 August 2006, 14:18:23 UTC
b0aa98f The __repr__ method of a NULL py_object does no longer raise an exception. Remove a stray '?' character from the exception text when the value is retrieved of such an object. Includes tests. 16 August 2006, 14:07:44 UTC
596fc9c Make cl build step compile-only (/c). Remove libs from source list. 16 August 2006, 13:58:51 UTC
ddf3788 Link to docs; remove an XXX comment 16 August 2006, 13:51:32 UTC
115ea43 Bump document version to 1.0; remove pystone paragraph 16 August 2006, 13:41:52 UTC
efd68c7 Add UnicodeWarning 16 August 2006, 13:22:20 UTC
5817959 news entry for 51307 16 August 2006, 13:08:25 UTC
d32e616 Add commented assert statements to check that the result of PyObject_stgdict() and PyType_stgdict() calls are non-NULL before dereferencing the result. Hopefully this fixes what klocwork is complaining about. Fix a few other nits as well. 16 August 2006, 13:03:11 UTC
a09fd6e Build _hashlib on Windows. Build OpenSSL with masm assembler code. Fixes #1535502. 16 August 2006, 12:55:10 UTC
604c864 Revert to having static version numbers again. 16 August 2006, 08:13:26 UTC
f137e1d Get quit() and exit() to work cleanly when not using subprocess. 16 August 2006, 07:04:17 UTC
back to top