1. 32855b6 Overhaul of Demo/xml. by Georg Brandl · 15 years ago
  2. b3f9d66 Remove ftpstats script, the daemon whose log files it reads is long gone. by Georg Brandl · 15 years ago
  3. 393c823 Update lpwatch script. by Georg Brandl · 15 years ago
  4. 8ec30e8 Fix variable. by Georg Brandl · 15 years ago
  5. ce662d0 Use getopt in script.py demo. by Georg Brandl · 15 years ago
  6. 9bb7965 Set missing executable property on scripts by Mark Dickinson · 15 years ago
  7. ab6d373 Fix 'primes 0 1' by Mark Dickinson · 15 years ago
  8. 4271eca Update primes script. by Georg Brandl · 15 years ago
  9. 6e62c56 Remove useless script "mkrcs" and update README. by Georg Brandl · 15 years ago
  10. 86d38e9 Update markov demo. by Georg Brandl · 15 years ago
  11. 30fd2bb Update morse script, avoid globals, use iterators. by Georg Brandl · 15 years ago
  12. 723fb3a Modernize all around (dont ask me how useful that script is nowadays...) by Georg Brandl · 15 years ago
  13. ffc87d5 Style fixes. by Georg Brandl · 15 years ago
  14. a0bcc27 Modernize factorisation demo (mostly augassign.) by Georg Brandl · 15 years ago
  15. 3d072c9 Show use of range() step argument nicely. by Georg Brandl · 15 years ago
  16. 0b798a9 Remove outdated comment and fix a few style issues. by Georg Brandl · 15 years ago
  17. 75b32c9 remove script which uses long gone module by Benjamin Peterson · 15 years ago
  18. 69f81a8 Remove unneeded "L" suffixes. by Georg Brandl · 15 years ago
  19. 18cb949 Bring old demo up-to-date. by Georg Brandl · 15 years ago
  20. ddfb6cd Applying patches backported from 3.1, by Gregor Lingl. by R. David Murray · 15 years ago
  21. 1666f19 Issue 6340: update by Gregor Lingl of his tdemo_chaos demo program. by R. David Murray · 15 years ago
  22. 388637d Remove last remnants of the ipaddr package. by Amaury Forgeot d'Arc · 15 years ago
  23. 6493d78 Issue 5379 - applies patch supplied by philipp hagemeister to fix by Gregory P. Smith · 15 years ago
  24. 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 15 years ago
  25. 4eae078 Demos for ttk added. by Guilherme Polo · 15 years ago
  26. e563aa4 Issue #3965: Allow repeated calls to turtle.Screen, by making it a by Martin v. Löwis · 16 years ago
  27. d9a9c10 Update uses of string exceptions by Andrew M. Kuchling · 16 years ago
  28. 0bef158 Fix SyntaxError by Andrew M. Kuchling · 16 years ago
  29. c997f17 Subclass exception by Andrew M. Kuchling · 16 years ago
  30. dda0ce7 Remove semicolon by Andrew M. Kuchling · 16 years ago
  31. 2a9b9cb #687648 from Robert Schuppenies: use classic division. by Andrew M. Kuchling · 16 years ago
  32. e91fcbd #687648 from Robert Schuppenies: use classic division. From me: remove two stray semicolons by Andrew M. Kuchling · 16 years ago
  33. 8bd9a2f #687648 from Robert Schuppenies: use classic division. From me: don't use string exception; add __main__ section by Andrew M. Kuchling · 16 years ago
  34. c2dc269 #687648 from Robert Schuppenies: use classic division. From me: don't use string exception; flush stdout after printing by Andrew M. Kuchling · 16 years ago
  35. 949f71b #687648 from Robert Schuppenies: use classic division. (RM Barry gave permission to update the demos.) by Andrew M. Kuchling · 16 years ago
  36. 7c972f9 get unparse to at least unparse its self by Benjamin Peterson · 16 years ago
  37. 8692c79 correct version by Benjamin Peterson · 16 years ago
  38. 74bbc79 Replace all map(None, a) with list(a). by Georg Brandl · 16 years ago
  39. 8718459 Patch #1513695: New turtle module, with demos. by Martin v. Löwis · 16 years ago
  40. 2ee0e8e Revert the renaming of repr to reprlib. by Brett Cannon · 16 years ago
  41. 50a1acb Changed references to the reprlib module to use its new name. by Alexandre Vassalotti · 16 years ago
  42. 5b63acd #2503 make singletons compared with "is" not == or != by Benjamin Peterson · 16 years ago
  43. c76ea27 Use os.closerange(). by Georg Brandl · 16 years ago
  44. 900b783 Remove reference to Rational by Mark Dickinson · 16 years ago
  45. d7b0033 Add rational.Rational as an implementation of numbers.Rational with infinite by Jeffrey Yasskin · 16 years ago
  46. c756d00 Replaced import of the 'new' module with 'types' module and added a deprecation warning to the 'new' module. by Christian Heimes · 17 years ago
  47. 41f0392 A thread-less variant of brownian.py, submitted by Michele Simoniato. by Guido van Rossum · 17 years ago
  48. 25e4461 Remove references to stdwin which was removed long ago. by Neal Norwitz · 17 years ago
  49. 35c7bb2 Whitespace normalization. by Tim Peters · 17 years ago
  50. 124df83 Patch #1683328: fixes and enhancements for "unparse" demo. by Georg Brandl · 17 years ago
  51. 2756278 Patch #1552024: add decorator support to unparse.py demo script. by Georg Brandl · 18 years ago
  52. 215f13d Normalized a few cases of whitespace in function declarations. by Martin Blais · 18 years ago
  53. 9fef9b1 Add more whitespace; use a better socket name by Andrew M. Kuchling · 18 years ago
  54. 46df918 Remove dangling reference by Andrew M. Kuchling · 18 years ago
  55. 84b9cbc Remove xmlrpc/ directory by Andrew M. Kuchling · 18 years ago
  56. 65ff561 Remove xmlrpc demo -- it duplicates the SimpleXMLRPCServer module. by Andrew M. Kuchling · 18 years ago
  57. 7b1ddca This demo requires Medusa (not just asyncore); remove it by Andrew M. Kuchling · 18 years ago
  58. 0b4e554 Use functions; modernize code by Andrew M. Kuchling · 18 years ago
  59. 3550613 Put code in a main() function; loosen up the spacing to match current code style by Andrew M. Kuchling · 18 years ago
  60. 3725dea Docstring fix; use True by Andrew M. Kuchling · 18 years ago
  61. 311562a Use true division, and the True value by Andrew M. Kuchling · 18 years ago
  62. 98900bc Use True; value returned from main is unused by Andrew M. Kuchling · 18 years ago
  63. 510b46f Some code tidying; use curses.wrapper by Andrew M. Kuchling · 18 years ago
  64. 6f159b1 Drop 0 parameter by Andrew M. Kuchling · 18 years ago
  65. 08bcfc2 Update readme by Andrew M. Kuchling · 18 years ago
  66. 3daf304 Whitespace normalization. by Tim Peters · 18 years ago
  67. 3fa6c09 Patch #1441452: Add more AST nodes. by Martin v. Löwis · 18 years ago
  68. b04dee9 Patch #1462222: Fix Tix.Grid. Closes #1036406. by Martin v. Löwis · 18 years ago
  69. 10be10c Remove regsub, reconvert, regex, regex_syntax and everything under lib-old. by Neal Norwitz · 18 years ago
  70. 87a8b4f unparse.py can now unparse itself. by Martin v. Löwis · 18 years ago
  71. 400cbc3 Set EOL style to native. by Tim Peters · 18 years ago
  72. 710ab3b Whitespace normalization. by Tim Peters · 18 years ago
  73. 5fec904 Start of a source code unparser. by Martin v. Löwis · 18 years ago
  74. 286d747 SF Bug #1348477, regextest can't be pydoc'ed. Will backport. by Neal Norwitz · 19 years ago
  75. ab0f947 Remove .cvsignore files, as they live in svn:ignore properties now. by Martin v. Löwis · 19 years ago
  76. 3e98736 Minor spelling nit. by Georg Brandl · 19 years ago
  77. 0e21be7 Update version. by Michael W. Hudson · 19 years ago
  78. f2dbeff Fix HTTP method handler example so that method names in uppercases by Hye-Shik Chang · 19 years ago
  79. c672f8c SF patch 1179503: Fix typos in rpc.py by Raymond Hettinger · 19 years ago
  80. bdaad8c * Fix error in definition of Im() which returned self instead of 0 by Raymond Hettinger · 19 years ago
  81. 4a1e48c Patch #1177597: Correct various bugs, add comments. by Martin v. Löwis · 19 years ago
  82. 75b64e6 Use decorators. by Guido van Rossum · 19 years ago
  83. 7a8c43e Add 'if __name__ == "__main__":' to files already as a usable as a module. by Johannes Gijsbers · 20 years ago
  84. 6a507a1 Remove mpzpi demo by Andrew M. Kuchling · 20 years ago
  85. 68a323c Whitespace normalization. Had to break guido's lock on rev 1.1 to do by Tim Peters · 20 years ago
  86. 182b5ac Whitespace normalization, via reindent.py. by Tim Peters · 20 years ago
  87. e6ddc8b Whitespace normalization. Ran reindent.py over the entire source tree. by Tim Peters · 20 years ago
  88. 0ec0b72 Fix comment typo by Andrew M. Kuchling · 20 years ago
  89. c2b151c Add code for a range function that uses generators. by Brett Cannon · 20 years ago
  90. 09659fb fix error message; closes SF patch #932796 by Fred Drake · 20 years ago
  91. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  92. bbd290a Revert previous change which didn't make sense the next day :-) by Raymond Hettinger · 21 years ago
  93. e807da8 Update to use python ints and int/long unification. by Raymond Hettinger · 21 years ago
  94. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  95. fe63faa SF patch #803449: modernize demo scripts (Contributed by George Yoshida.) by Raymond Hettinger · 21 years ago
  96. 9463792 To be a good citizen, it should really delete its socket when done. by Skip Montanaro · 21 years ago
  97. 7890c26 Patch #748846: Let Demo/classes/Date.py mention DateTime module. by Martin v. Löwis · 21 years ago
  98. bb640c1 Patch #748849: Update to current tools and demos. by Martin v. Löwis · 21 years ago
  99. e81866e Remove unneeded continuation chars by Andrew M. Kuchling · 21 years ago
  100. f64509e Move all the imports to the top; use md5.new() by Andrew M. Kuchling · 21 years ago