1. d553d85 Beef-up docs and tests for itertools. Fix-up end-case for product(). by Raymond Hettinger · 17 years ago
  2. 3fe1843 Add versionadded tags by Andrew M. Kuchling · 17 years ago
  3. 684868a Fix sentence fragment by Andrew M. Kuchling · 17 years ago
  4. ece10b4 Grammar fix; markup fix by Andrew M. Kuchling · 17 years ago
  5. 3e9d66f There are now sixteen isfoo functions. by Georg Brandl · 17 years ago
  6. 608c1d8 Since abc._Abstract was replaces by a new type flags the regression test suite fails. I've added a new function inspect.isabstract(). Is the mmethod fine or should I check if object is a instance of type or subclass of object, too? by Christian Heimes · 17 years ago
  7. e6dab2a Fix factual error. by Georg Brandl · 17 years ago
  8. 72780a4 Make clear that the constants are strings. by Georg Brandl · 17 years ago
  9. 2b7a5c4 Tighten example code. by Raymond Hettinger · 17 years ago
  10. f287f17 Finish-up docs for combinations() and permutations() in itertools. by Raymond Hettinger · 17 years ago
  11. 330958e Document impending updates to itertools. by Raymond Hettinger · 17 years ago
  12. 18750ab Add repeat keyword argument to itertools.product(). by Raymond Hettinger · 17 years ago
  13. c105289 Simply the sample code for combinations(). by Raymond Hettinger · 17 years ago
  14. 93e804d Add itertools.combinations(). by Raymond Hettinger · 17 years ago
  15. ca37661 Add a timing flag to Trace so you can see where slowness occurs by Neal Norwitz · 17 years ago
  16. 1b3e41c Banish tab. by Georg Brandl · 17 years ago
  17. 3fa41d5 Docs for itertools.combinations(). Implementation in forthcoming checkin. by Raymond Hettinger · 17 years ago
  18. fd42906 Revert r61029. by Georg Brandl · 17 years ago
  19. 499969a Add minor markup for a string. by Brett Cannon · 17 years ago
  20. f1699cd Document import ./. threading issues. #1720705. by Georg Brandl · 17 years ago
  21. ebcfd11 #1506171: added operator.methodcaller(). by Georg Brandl · 17 years ago
  22. e2065c6 #1826: allow dotted attribute paths in operator.attrgetter. by Georg Brandl · 17 years ago
  23. b0b0317 #1825: correctly document msilib.add_data. by Georg Brandl · 17 years ago
  24. ffada76 Add examples to modulefinder docs. Written for GHOP by Josip Dzolonga. by Georg Brandl · 17 years ago
  25. 7d00992 #2101: fix removeAttribute docs. by Georg Brandl · 17 years ago
  26. 8887e54 #835521: Add index entries for various pickle-protocol methods and attributes by Andrew M. Kuchling · 17 years ago
  27. 085f75a #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances. by Andrew M. Kuchling · 17 years ago
  28. 5972493 #2161: Fix opcode name. by Georg Brandl · 17 years ago
  29. b678f98 #2072: correct documentation for .rpc_paths by Andrew M. Kuchling · 17 years ago
  30. 080b094 More difflib examples. Written for GHOP by Josip Dzolonga. by Georg Brandl · 17 years ago
  31. 7e251e8 Issue 1089358. Adds the siginterrupt() function, that is just a by Facundo Batista · 17 years ago
  32. 1647923 #1492: allow overriding BaseHTTPServer's content type for error messages. by Georg Brandl · 17 years ago
  33. b12f0b5 Issue 1781. Now ConfigParser.add_section does not let you add a by Facundo Batista · 17 years ago
  34. 7832d4d Add recipe using itertools.product(). by Raymond Hettinger · 17 years ago
  35. c5705a8 Document itertools.product(). by Raymond Hettinger · 17 years ago
  36. 1699db1 Another fix. by Georg Brandl · 17 years ago
  37. 907a720 A lot more typo fixes by Ori Avtalion. by Georg Brandl · 17 years ago
  38. 12db865 Part of #2154: minimal syntax fixes in doc example snippets. by Georg Brandl · 17 years ago
  39. 359b9e9 #2079: typo in userdict docs. by Georg Brandl · 17 years ago
  40. 759bfc6 Issue #1916. Added isgenerator() and isgeneratorfunction() to by Facundo Batista · 17 years ago
  41. 5e203f5 #2131: note that codecs.open() always opens files in binary mode. by Georg Brandl · 17 years ago
  42. e7fb0c5 Try to correct a markup error that does hide the following paragraph. by Thomas Heller · 17 years ago
  43. 5111c52 Fix markup by Raymond Hettinger · 17 years ago
  44. 0cd7170 Simplify moneyfmt() recipe. by Raymond Hettinger · 17 years ago
  45. 50361d4 Fix markup. by Raymond Hettinger · 17 years ago
  46. d68bf02 Show how to remove exponents. by Raymond Hettinger · 17 years ago
  47. 27a90d9 Improve rst markup by Raymond Hettinger · 17 years ago
  48. 4631481 Add fixed-point examples to the decimal FAQ by Raymond Hettinger · 17 years ago
  49. abe3237 Fix decimal repr which should have used single quotes like other reprs. by Raymond Hettinger · 17 years ago
  50. a06a1a8 Add pickle support to ctypes types. by Thomas Heller · 17 years ago
  51. 0a40ffb #2063: correct order of utime and stime in os.times() result on Windows. by Georg Brandl · 17 years ago
  52. e1b8247 Implementation of Fraction.limit_denominator. by Mark Dickinson · 17 years ago
  53. 596fdd0 Restore fractions.rst to the document tree. by Raymond Hettinger · 17 years ago
  54. bc4ffc1 Backport ABC docs by Raymond Hettinger · 17 years ago
  55. 2ddbd80 Fix markup by Raymond Hettinger · 17 years ago
  56. d058cd2 Rename rational.Rational to fractions.Fraction, to avoid name clash by Mark Dickinson · 17 years ago
  57. da614dc Complete an open todo on pickletools -- add a pickle optimizer. by Raymond Hettinger · 17 years ago
  58. 3a94ee0 Typos in decimal comment and documentation by Mark Dickinson · 17 years ago
  59. 13a7075 Clarify that decimal also supports fixed-point arithmetic. by Raymond Hettinger · 17 years ago
  60. 97fac3e Issue 2021: Allow NamedTemporaryFile and SpooledTemporaryFile to be used as context managers. (The NamedTemporaryFile fix should be considered for backporting to 2.5) by Nick Coghlan · 17 years ago
  61. 7e33663 Add advice on choosing between DictMixin and MutableMapping by Raymond Hettinger · 17 years ago
  62. 23bdcc9 Fix typo by Raymond Hettinger · 17 years ago
  63. ff1f973 The float conversion recipe is simpler in Py2.6 by Raymond Hettinger · 17 years ago
  64. a53800e Fix documentation for Calendar.iterweekdays(): firstweekday is a property. by Walter Dörwald · 17 years ago
  65. 97bf449 Clarify that the output of TextCalendar.formatmonth() and by Walter Dörwald · 17 years ago
  66. 00c2e65 IEEE 754 should be IEEE 854; give precise reference for by Mark Dickinson · 17 years ago
  67. ff6672f Fix broken link in decimal documentation. by Mark Dickinson · 17 years ago
  68. bafa942 Remove incorrect usage of :const: in documentation. by Mark Dickinson · 17 years ago
  69. 2fc9263 Issue 1979: Make Decimal comparisons (other than !=, ==) involving NaN by Mark Dickinson · 17 years ago
  70. c16c57c Remove month parameter from Calendar.yeardatescalendar(), by Walter Dörwald · 17 years ago
  71. 3c0f309 correct object name by Skip Montanaro · 17 years ago
  72. 1cf0522 Convert external links to internal links. Fixes #2010. by Georg Brandl · 17 years ago
  73. 422051a Patch #1953 by Christian Heimes · 17 years ago
  74. 89dfbe3 Remove extra tick marks and add a missing closing parenthesis. by Brett Cannon · 17 years ago
  75. bbc4fc2 Add email example how to send a multipart message. by Georg Brandl · 17 years ago
  76. 586a57a Amendments to the urllib2 docs, written for GHOP by Thomas Lamb. by Georg Brandl · 17 years ago
  77. 2a5d1c3 Update IPv6 RFC number. by Georg Brandl · 17 years ago
  78. ca2b69f Move __builtins__.trunc() to math.trunc() per by Jeffrey Yasskin · 17 years ago
  79. b23dea6 Added more documentation on how mixed-mode arithmetic should be implemented. I by Jeffrey Yasskin · 17 years ago
  80. a44327a Update itertool recipes by Raymond Hettinger · 17 years ago
  81. 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 17 years ago
  82. 9bba7b7 Removed an unnecessary and confusing paragraph from the namedtuple docs. by Raymond Hettinger · 17 years ago
  83. d006380 Update docs for new callpack params added in r60188 by Gregory P. Smith · 17 years ago
  84. 0522548 Slashes allowed on Windows. by Georg Brandl · 17 years ago
  85. fe7dd50 #1934: fix os.path.isabs docs. by Georg Brandl · 17 years ago
  86. f38ba78 Added documentation for optional delay argument to FileHandler and subclasses. by Vinay Sajip · 17 years ago
  87. 7b7ce78 Fix issue1789: The tutorial contained a misuse of the struct module. by Gregory P. Smith · 17 years ago
  88. c226c31 Let pprint() support sets and frozensets (suggested by David Mertz). by Raymond Hettinger · 17 years ago
  89. 2dec48d Improve variable name in sample code by Raymond Hettinger · 17 years ago
  90. 9ed5b57 Give zip() the same guarantee as izip() for left-to-right evaluation. by Raymond Hettinger · 17 years ago
  91. 48c6293 Document when to use izip_longest(). by Raymond Hettinger · 17 years ago
  92. 733024a Minor documentation change - hyperlink tidied up. by Vinay Sajip · 17 years ago
  93. 0751d1a Adapt pydoc to new doc URLs. by Georg Brandl · 17 years ago
  94. f8dd5b3 Removing bundlebuilder docs again -- it's not to be used anymore (see #779825). by Georg Brandl · 17 years ago
  95. d7e3e60 Add a stub for bundlebuilder documentation. by Georg Brandl · 17 years ago
  96. 864de82 #1555501: document plistlib and move it to the general library. by Georg Brandl · 17 years ago
  97. 960b186 Fix example. by Georg Brandl · 17 years ago
  98. 845c403 #1087741: make mmap.mmap the type of mmap objects, not a by Georg Brandl · 17 years ago
  99. 5235398 #1669: don't allow shutil.rmtree() to be called on a symlink. by Georg Brandl · 17 years ago
  100. 5611289 #1648: add sys.gettrace() and sys.getprofile(). by Georg Brandl · 17 years ago