cpython/Objects
Guido van Rossum 7eaf8223a0 Merged revisions 55962-56019 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk

................
  r55985 | neal.norwitz | 2007-06-14 20:14:38 -0700 (Thu, 14 Jun 2007) | 2 lines

  All these tests have been flaky wrt reporting leaks.  Disable them.
................
  r56003 | neal.norwitz | 2007-06-15 19:41:09 -0700 (Fri, 15 Jun 2007) | 1 line

  Fix typo (certain).
................
  r56004 | neal.norwitz | 2007-06-15 20:54:18 -0700 (Fri, 15 Jun 2007) | 4 lines

  Fix it so test_os no longer reports ref leaks by clearing all the caches
  the ABCMeta stores on the class.  Apply this to all the ABC collections
  as well as the class of os.environ which inherits from an ABC collection.
................
  r56013 | neal.norwitz | 2007-06-17 19:56:31 -0700 (Sun, 17 Jun 2007) | 4 lines

  This should make it a little easier when adding new collections which use ABCs.
  The new subclass won't need to be listed in regrtest.
  It will be even better when Guido adds weakrefs. :-)
................
  r56014 | martin.v.loewis | 2007-06-17 20:15:51 -0700 (Sun, 17 Jun 2007) | 1 line

  Drop inline, as it's not support by VS 2003.
................
  r56015 | martin.v.loewis | 2007-06-17 20:17:19 -0700 (Sun, 17 Jun 2007) | 1 line

  Expect long objects for DWORD values.
................
  r56016 | martin.v.loewis | 2007-06-17 20:18:01 -0700 (Sun, 17 Jun 2007) | 1 line

  Drop modules that have been deleted.
................
  r56017 | martin.v.loewis | 2007-06-17 20:18:55 -0700 (Sun, 17 Jun 2007) | 1 line

  Bump DLL version number to 30.
................
  r56018 | neal.norwitz | 2007-06-17 20:55:43 -0700 (Sun, 17 Jun 2007) | 62 lines

  Merged revisions 55951-56013 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r55956 | thomas.heller | 2007-06-13 00:07:03 -0700 (Wed, 13 Jun 2007) | 2 lines

    Do not hardcode the buildbot's directory name.
  ........
    r55957 | thomas.heller | 2007-06-13 00:07:41 -0700 (Wed, 13 Jun 2007) | 2 lines

    Notes about building tcl/tk for windows/AMD64.
  ........
    r55958 | thomas.heller | 2007-06-13 00:54:57 -0700 (Wed, 13 Jun 2007) | 2 lines

    Build bzip2.
  ........
    r55962 | walter.doerwald | 2007-06-13 09:57:12 -0700 (Wed, 13 Jun 2007) | 8 lines

    Add T_PYSSIZET in structmember.h: This can be used for
    Py_ssize_t members.

    Simplify the implementation of UnicodeError objects:
    start and end attributes are now stored directly as
    Py_ssize_t members, which simplifies various get and
    set functions.
  ........
    r55975 | martin.v.loewis | 2007-06-14 13:46:25 -0700 (Thu, 14 Jun 2007) | 3 lines

    Patch #1734014: Use _I64_MAX instead of LLONG_MAX.
    Will backport to 2.5.
  ........
    r55984 | neal.norwitz | 2007-06-14 20:11:41 -0700 (Thu, 14 Jun 2007) | 4 lines

    urllib2_localnet says it leaks probably due to threads. So ignore it.
    popen2 is also complaining probably for similar reasons.
    make install always reports failure, so don't mail in this case.
  ........
    r56001 | andrew.kuchling | 2007-06-15 15:43:03 -0700 (Fri, 15 Jun 2007) | 1 line

    Add a word
  ........
    r56005 | martin.v.loewis | 2007-06-16 03:08:43 -0700 (Sat, 16 Jun 2007) | 2 lines

    Mention Senthil Kumaran.
  ........
    r56006 | georg.brandl | 2007-06-16 10:10:12 -0700 (Sat, 16 Jun 2007) | 2 lines

    Add missing \versionadded.
  ........
    r56009 | neal.norwitz | 2007-06-17 11:48:32 -0700 (Sun, 17 Jun 2007) | 1 line

    SF #1738670, make example in doc work
  ........
    r56011 | neal.norwitz | 2007-06-17 19:46:36 -0700 (Sun, 17 Jun 2007) | 1 line

    SF #1738754, remove extra backslash in string
  ........
    r56012 | neal.norwitz | 2007-06-17 19:50:15 -0700 (Sun, 17 Jun 2007) | 1 line

    Revert last change for SF #1738754, there's no print in there.
  ........
................
2007-06-18 17:58:50 +00:00
..
stringlib Four months of trunk changes (including a few releases...) 2006-12-13 04:49:30 +00:00
abstract.c Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
boolobject.c Add interning of unicode strings by copying the functionality from 2007-05-25 13:52:07 +00:00
bufferobject.c Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
bytesobject.c Make identifiers str (not str8) objects throughout. 2007-06-10 09:51:05 +00:00
cellobject.c Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror 2007-05-18 17:15:44 +00:00
classobject.c Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U, 2007-06-11 16:36:59 +00:00
cobject.c Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
codeobject.c Make identifiers str (not str8) objects throughout. 2007-06-10 09:51:05 +00:00
complexobject.c Make identifiers str (not str8) objects throughout. 2007-06-10 09:51:05 +00:00
descrobject.c Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U, 2007-06-11 16:36:59 +00:00
dictnotes.txt Merged revisions 53623-53858 via svnmerge from 2007-02-23 15:07:44 +00:00
dictobject.c Make identifiers str (not str8) objects throughout. 2007-06-10 09:51:05 +00:00
enumobject.c Merged revisions 53623-53858 via svnmerge from 2007-02-23 15:07:44 +00:00
exceptions.c Merged revisions 55962-56019 via svnmerge from 2007-06-18 17:58:50 +00:00
fileobject.c Rip out the file object's implementation. 2007-06-12 23:30:11 +00:00
floatobject.c Change float.__str__() and complex.__str__() to return 2007-05-31 15:51:35 +00:00
frameobject.c Make identifiers str (not str8) objects throughout. 2007-06-10 09:51:05 +00:00
funcobject.c Simplify error formatting (no default encoding required). 2007-06-11 15:00:18 +00:00
genobject.c Quite a few fixes to make the library and test suite more robust when 2006-08-17 20:24:18 +00:00
intobject.c Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
iterobject.c Remove bogus INCREF of ziptuple: it is a 2007-02-06 21:30:59 +00:00
listobject.c Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror 2007-05-18 17:15:44 +00:00
listsort.txt Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
longobject.c Merged revisions 55962-56019 via svnmerge from 2007-06-18 17:58:50 +00:00
methodobject.c Make identifiers str (not str8) objects throughout. 2007-06-10 09:51:05 +00:00
moduleobject.c Make identifiers str (not str8) objects throughout. 2007-06-10 09:51:05 +00:00
object.c Simplify error formatting. 2007-06-11 15:37:20 +00:00
obmalloc.c Four months of trunk changes (including a few releases...) 2006-12-13 04:49:30 +00:00
rangeobject.c Rename test_xrange.py to test_range.py and fix the 2007-05-21 18:01:17 +00:00
setobject.c Add a format specifier %R to PyUnicode_FromFormat(), which embeds 2007-05-19 21:49:49 +00:00
sliceobject.c Add a format specifier %R to PyUnicode_FromFormat(), which embeds 2007-05-19 21:49:49 +00:00
stringobject.c Patch by Ron Adam to make repr(str8(...)) return something looking like 2007-06-15 00:00:12 +00:00
structseq.c Merge current trunk into p3yk. This includes the PyNumber_Index API change, 2006-08-21 19:07:27 +00:00
tupleobject.c Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror 2007-05-18 17:15:44 +00:00
typeobject.c Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
unicodectype.c Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. 2006-05-27 19:21:47 +00:00
unicodeobject.c Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
unicodetype_db.h Update Unicode database to Unicode 4.1. 2006-03-09 23:38:20 +00:00
weakrefobject.c Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror 2007-05-18 17:15:44 +00:00