cpython/Objects
Amaury Forgeot d'Arc c856c7a2f0 Merged revisions 64309 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r64309 | amaury.forgeotdarc | 2008-06-16 21:12:42 +0200 (lun., 16 juin 2008) | 8 lines

  Issue 3110: Crash with weakref subclass,
  seen after a "import multiprocessing.reduction"

  An instance of a weakref subclass can have attributes.
  If such a weakref holds the only strong reference to the object,
  deleting the weakref will delete the object. In this case,
  the callback must not be called, because the ref object is being deleted!
........
2008-06-16 19:50:09 +00:00
..
stringlib #2630: Implement PEP 3138. 2008-06-11 18:37:52 +00:00
abstract.c Remove locking from buffer protocol as-per discussion. 2008-06-06 20:52:38 +00:00
boolobject.c Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods 2008-06-11 20:21:57 +00:00
bytearrayobject.c Move the codec decode type checks to bytes/bytearray.decode(). 2008-06-06 12:18:17 +00:00
bytes_methods.c Renamed PyString to PyBytes 2008-05-26 13:28:38 +00:00
bytesobject.c Move the codec decode type checks to bytes/bytearray.decode(). 2008-06-06 12:18:17 +00:00
cellobject.c Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,61580-61582,61586,61591,61593,61595,61605-61606,61613-61616,61618,61621-61623,61625,61627,61631-61634 via svnmerge from 2008-03-19 21:50:51 +00:00
classobject.c #2964: fix missing INCREF. 2008-05-25 09:24:38 +00:00
cobject.c Merged revisions 56467-56482 via svnmerge from 2007-07-21 17:22:18 +00:00
codeobject.c Renamed PyString to PyBytes 2008-05-26 13:28:38 +00:00
complexobject.c Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods 2008-06-11 20:21:57 +00:00
descrobject.c Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-61464,61466-61467,61469-61470,61476-61477,61479,61481-61482,61485,61487,61490,61493-61494,61497,61499-61502,61505-61506,61508,61511-61514,61519,61521-61522,61530-61531,61533-61537,61541-61555,61557-61558,61561-61562,61566-61569,61572-61574,61578-61579,61583-61584,61588-61589,61592,61594,61598-61601,61603-61604,61607-61612,61617,61619-61620,61624,61626,61628-61630,61635-61638,61640-61643,61645,61648,61653-61655,61659-61662,61664,61666,61668-61671,61673,61675,61679-61680,61682,61685-61686,61689-61695,61697-61699,61701-61703,61706,61710,61713,61717,61723,61726-61730,61736,61738,61740,61742,61745-61752,61754-61760,61762-61764,61768,61770-61772,61774-61775,61784-61787,61789-61792,61794-61795,61797-61806,61808-61809,61811-61812,61814-61819,61824,61826-61833,61835-61840,61843-61845,61848,61850,61854-61862,61865-61866,61868,61872-61873,61876-61877,61883-61888,61890-61891,61893-61899,61901-61903,61905-61912,61914,61917,61920-61921,61927,61930,61932-61934,61939,61941-61942,61944-61951,61955,61960-61963,61980,61982-61983,61991,61994-61996,62001-62003,62008-62010,62016-62017,62022,62024,62027,62031-62034,62041,62045-62046,62055-62058,62060-62066,62068-62074,62076-62079,62081-62083,62086-62089,62092-62094,62098,62101,62104,62106-62109,62115-62122,62124-62125,62128,62130,62132,62134-62135,62137,62139-62140,62144,62146,62151,62155,62157,62162-62166,62171-62172,62175-62176,62178,62181-62186,62188-62192,62196,62200-62203,62206,62211-62213,62215-62218,62222,62224-62226,62228,62232,62236,62240-62245,62248,62250-62254,62256-62258,62262,62264-62265,62267-62270,62272-62276,62280-62288,62291-62292,62299-62301,62307,62312,62316-62318,62322-62331,62333-62337,62339-62344,62346-62348 via svnmerge from 2008-04-15 06:43:13 +00:00
dictnotes.txt Merged revisions 53623-53858 via svnmerge from 2007-02-23 15:07:44 +00:00
dictobject.c remove unused docstring 2008-06-04 21:39:15 +00:00
enumobject.c Merged revisions 63361-63373,63375,63377-63380 via svnmerge from 2008-05-16 18:15:12 +00:00
exceptions.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
fileobject.c Make stdprinter_write static. 2008-06-13 07:24:48 +00:00
floatobject.c Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods 2008-06-11 20:21:57 +00:00
frameobject.c #3021: Antoine Pitrou's Lexical exception handlers 2008-06-11 15:59:43 +00:00
funcobject.c #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. 2007-12-19 02:45:37 +00:00
genobject.c Merged revisions 63361-63373,63375,63377-63380 via svnmerge from 2008-05-16 18:15:12 +00:00
iterobject.c Move itertools izip() code to builtins as zip(). Complete the renaming. 2008-03-13 02:09:15 +00:00
listobject.c Merged revisions 63856-63857,63859-63860 via svnmerge from 2008-06-04 14:18:43 +00:00
listsort.txt Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
longobject.c Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods 2008-06-11 20:21:57 +00:00
memoryobject.c Remove locking from buffer protocol as-per discussion. 2008-06-06 20:52:38 +00:00
methodobject.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
moduleobject.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
object.c #2630: Implement PEP 3138. 2008-06-11 18:37:52 +00:00
obmalloc.c Merged revisions 56467-56482 via svnmerge from 2007-07-21 17:22:18 +00:00
rangeobject.c Issue 2582: Fix pickling of range objects. 2008-06-10 04:03:04 +00:00
setobject.c Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods 2008-06-11 20:21:57 +00:00
sliceobject.c #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. 2007-12-19 02:45:37 +00:00
structseq.c Merged revisions 59933-59951 via svnmerge from 2008-01-14 18:49:24 +00:00
tupleobject.c Fixed a bug in the representation of self-referential tuples. 2008-05-03 01:37:08 +00:00
typeobject.c Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from 2008-06-10 16:57:31 +00:00
unicodectype.c #2630: Implement PEP 3138. 2008-06-11 18:37:52 +00:00
unicodeobject.c #2630: Implement PEP 3138. 2008-06-11 18:37:52 +00:00
unicodetype_db.h #2630: Implement PEP 3138. 2008-06-11 18:37:52 +00:00
weakrefobject.c Merged revisions 64309 via svnmerge from 2008-06-16 19:50:09 +00:00