1. 18 Kas, 1997 1 kayıt (commit)
  2. 20 Eki, 1997 1 kayıt (commit)
  3. 07 Eki, 1997 1 kayıt (commit)
  4. 12 Eyl, 1997 1 kayıt (commit)
  5. 25 Agu, 1997 1 kayıt (commit)
    • Guido van Rossum's avatar
      Allow assignments to instance.__dict__ and instance.__class__. The · b2173c31
      Guido van Rossum yazdı
      former lets you give an instance a set of new instance vars.  The
      latter lets you give it a new class.  Both are typechecked and
      disallowed in restricted mode.
      
      For classes, the check for read-only special attributes is tightened
      so that only assignments to __dict__, __bases__, __name__,
      __getattr__, __setattr__, and __delattr__ (these could be made to work
      as well, but I don't know if that's useful -- let's see first whether
      mucking with instances will help).
      b2173c31
  6. 05 Agu, 1997 1 kayıt (commit)
  7. 23 May, 1997 1 kayıt (commit)
  8. 09 May, 1997 1 kayıt (commit)
  9. 02 May, 1997 1 kayıt (commit)
  10. 18 Ock, 1997 1 kayıt (commit)
  11. 05 Ara, 1996 1 kayıt (commit)
  12. 25 Eki, 1996 1 kayıt (commit)
  13. 21 Eki, 1996 1 kayıt (commit)
  14. 11 Eyl, 1996 1 kayıt (commit)
  15. 26 Agu, 1996 1 kayıt (commit)
  16. 22 Agu, 1996 1 kayıt (commit)
  17. 21 Agu, 1996 1 kayıt (commit)
  18. 20 Agu, 1996 1 kayıt (commit)
  19. 12 Agu, 1996 1 kayıt (commit)
  20. 09 Agu, 1996 1 kayıt (commit)
  21. 21 Tem, 1996 1 kayıt (commit)
  22. 23 May, 1996 1 kayıt (commit)
  23. 14 May, 1996 1 kayıt (commit)
  24. 18 Eyl, 1995 1 kayıt (commit)
  25. 28 Agu, 1995 1 kayıt (commit)
  26. 04 Agu, 1995 1 kayıt (commit)
  27. 26 Tem, 1995 1 kayıt (commit)
  28. 12 Tem, 1995 1 kayıt (commit)
  29. 06 Nis, 1995 1 kayıt (commit)
  30. 26 Ock, 1995 1 kayıt (commit)
  31. 10 Ock, 1995 2 kayıt (commit)
  32. 07 Ock, 1995 1 kayıt (commit)
  33. 04 Ock, 1995 1 kayıt (commit)
  34. 02 Ock, 1995 1 kayıt (commit)
  35. 10 Kas, 1994 1 kayıt (commit)
  36. 19 Eki, 1994 1 kayıt (commit)
  37. 28 Eyl, 1994 1 kayıt (commit)
    • Guido van Rossum's avatar
      * Include/classobject.h, Objects/classobject.c, Python/ceval.c: · 03093a24
      Guido van Rossum yazdı
      	entirely redone operator overloading.  The rules for class
      	instances are now much more relaxed than for other built-in types
      	(whose coerce must still return two objects of the same type)
      
      	* Objects/floatobject.c: add overflow check when converting float
      	to int and implement truncation towards zero using ceil/float
      
      	* Objects/longobject.c: change ValueError to OverflowError when
      	converting to int
      
      	* Objects/rangeobject.c: modernized
      
      	* Objects/stringobject.c: use HAVE_LIMITS instead of __STDC__
      
      	* Objects/xxobject.c: changed to use new style (not finished?)
      03093a24
  38. 05 Eyl, 1994 2 kayıt (commit)