Differences between revisions 1 and 2
Revision 1 as of 2006-11-28 06:06:59
Size: 1631
Comment:
Revision 2 as of 2006-11-28 06:15:50
Size: 1829
Comment:
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
 * ints - bug #1603312  * ints - http://jython.org/bugs/1603312
Line 7: Line 7:
 * pymods - PyModule is old style class - bug #1603314  * pymods - PyModule is old style class - http://jython.org/bugs/1603314
Line 10: Line 10:
 * keywords - bug #1603315
 * setdict - bug #1506749
 * descrdoc - bug #1604250
 * setclass - bug #1604252
 * copies - bug #
1604258
 * str_of_str_subclass - bug #1604264
 * dictproxyiterkeys - bug #1604265
 * dictproxyitervalues - bug #1604265
 * dictproxyiteritems - bug #1604265
 * keywords - http://jython.org/bugs/1603315
 * setdict - http://jython.org/bugs/1506749
 * descrdoc - http://jython.org/bugs/1604250
 * setclass - http://jython.org/bugs/1604252
 * copies - http://jython.org/bugs/
1604258
 * str_of_str_subclass - http://jython.org/bugs/1604264
 * dictproxyiterkeys - http://jython.org/bugs/1604265
 * dictproxyitervalues - http://jython.org/bugs/1604265
 * dictproxyiteritems - http://jython.org/bugs/1604265

Fixed

Filed

To File

  • methods - binding instance method to class calls class instead of instance
  • supers - subclassing super causes binding to break

To Fix

  • metaclass - new on metaclass not called
  • overloading - a[0:10] = "foo" doesn't call setslice on a

  • inherits - eq on inherited classes is not called. superclass is used in\stead

  • binopoverride - see inherits
  • str_subclass_as_dict_key - see inherits
  • rich_comparisons - see inherits
  • slotspecials - slots need weakref

Cpython Specific Tests

  • errors - not allowed to inherit CFunction?
  • slots - expects immediate gc
  • classic - expects attributes to be descriptors
  • specials - expects id == hash on object
  • subclasspropagation - see specials
  • weakref - expects immediate gc

To Investigate

  • pickles
  • delhook
  • pickleslots
  • docdescriptor
  • string_exceptions
  • copy_setstate
  • subtype_resurrection
  • slotmultipleinheritance
  • test_mutable_bases
  • test_mutable_bases_catch_mro_conflict
  • mutable_names
  • subclass_right_op
  • meth_class_get
  • isinst_isclass
  • proxysuper
  • carloverre

CharlieGroves/DescrFailures (last edited 2008-11-15 09:16:02 by localhost)