1. 31c2740 "Modernized" the demo a little. by Alexander Belopolsky · 14 years ago
  2. 5ada7c7 Update Vec class constructor, remove indirection via function, use operator module. by Georg Brandl · 14 years ago
  3. dc00a2a Remove Dbm. by Georg Brandl · 14 years ago
  4. 7cb6f2f Fixed the test by Alexander Belopolsky · 14 years ago
  5. 0636040 Fixed doctests by Alexander Belopolsky · 14 years ago
  6. be7a755 Remove old and unsafe Dbm demo class. by Georg Brandl · 14 years ago
  7. 74135d0 Made minimal modifications to pass included tests by Alexander Belopolsky · 14 years ago
  8. 401d856 Issue #9151: Demo/classes/Dates.py does not work in 3.x Converted by Alexander Belopolsky · 14 years ago
  9. bb3565d Issue #9151: Demo/classes/Dates.py does not work in 3.x by Alexander Belopolsky · 14 years ago
  10. 9c6bd77 Merged revisions 78779 via svnmerge from by Benjamin Peterson · 14 years ago
  11. c7d484d Remove __long__ methods from UserString and from Demo/ classes. by Mark Dickinson · 16 years ago
  12. d7b0328 Merged revisions 66394,66404,66412,66414,66424-66436 via svnmerge from by Benjamin Peterson · 16 years ago
  13. 0a7ac7d Create the dbm package from PEP 3108. #2881. by Georg Brandl · 16 years ago
  14. 2a691a8 Merged revisions 62021,62029,62035-62038,62043-62044,62052-62053 via svnmerge from by Benjamin Peterson · 16 years ago
  15. 3feef61 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60706,60708-60712,60714-60724 via svnmerge from by Christian Heimes · 16 years ago
  16. 7736b5b Merged revisions 59952-59984 via svnmerge from by Guido van Rossum · 17 years ago
  17. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  18. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  19. 3cd6537 Fix a lingering string exception. by Collin Winter · 17 years ago
  20. 1e8ce58 remove most uses of list(somedict.keys()) in Demo scripts by Skip Montanaro · 17 years ago
  21. 6f2df4d Run 2to3 over the Demo/ directory to shut up parse errors from 2to3 about lingering print statements. by Collin Winter · 17 years ago
  22. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  23. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  24. d910855 Remove apply() by Neal Norwitz · 18 years ago
  25. ac3625f Remove sys.exc_type, sys.exc_value, sys.exc_traceback by Neal Norwitz · 18 years ago
  26. bdaad8c * Fix error in definition of Im() which returned self instead of 0 by Raymond Hettinger · 19 years ago
  27. 4a1e48c Patch #1177597: Correct various bugs, add comments. by Martin v. Löwis · 19 years ago
  28. c2b151c Add code for a range function that uses generators. by Brett Cannon · 20 years ago
  29. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  30. fe63faa SF patch #803449: modernize demo scripts (Contributed by George Yoshida.) by Raymond Hettinger · 21 years ago
  31. 7890c26 Patch #748846: Let Demo/classes/Date.py mention DateTime module. by Martin v. Löwis · 21 years ago
  32. 946c53e Run these demo scripts through reindent.py to give them 4-space indents. I've verified that their output is unchanged. by Andrew M. Kuchling · 21 years ago
  33. 4f237b6 Modernize code by using isinstance() instead of type() checks by Andrew M. Kuchling · 21 years ago
  34. 64b3c83 Avoid TypeError by not comparing complex numbers by Andrew M. Kuchling · 21 years ago
  35. ecbb0ea Update docs. Remove old classes.doc. by Guido van Rossum · 22 years ago
  36. eda80ea Correct spelling of length, discovered by Christian Tismer. by Guido van Rossum · 25 years ago
  37. dcd038f nannified. by Guido van Rossum · 26 years ago
  38. 7ca9a1a Fix a bug where comparison of a rational with a float failed because by Guido van Rossum · 26 years ago
  39. 1a24bb5 Fix the test for pow() -- no more TypeErrors are raised! by Guido van Rossum · 27 years ago
  40. 0609f19 A completely new Rat.py by Sjoerd. by Guido van Rossum · 27 years ago
  41. 72ba616 Added note about Python's support of complex numbers. Added exp(z). by Guido van Rossum · 28 years ago
  42. 2e61103 adapted to new overloading scheme by Guido van Rossum · 30 years ago
  43. 81a12bc totally redone for new overloading scheme by Guido van Rossum · 30 years ago
  44. e69d3fe Use time.time() instead of time.millitimer() by Guido van Rossum · 30 years ago
  45. 62326f2 builtin -> __builtin__ by Guido van Rossum · 31 years ago
  46. 7565b93 *** empty log message *** by Guido van Rossum · 31 years ago
  47. 0a2fa75 Added Dates.py and Rev.py by Guido van Rossum · 31 years ago
  48. 102abab Initial revision by Guido van Rossum · 31 years ago
  49. becec31 Fix bug and use __init__ by Guido van Rossum · 31 years ago
  50. ed49c5e *** empty log message *** by Guido van Rossum · 31 years ago
  51. f1bbf9c Add coercions by Guido van Rossum · 31 years ago
  52. b6957e4 Initial revision by Guido van Rossum · 31 years ago
  53. e876949 Initial revision by Guido van Rossum · 32 years ago