1. c0cf726 Add material about the "r" and "u" prefixes for string literals; should by Fred Drake · 23 years ago
  2. 3e2aca4 Add information about __floordiv__() and __truediv__() methods for by Fred Drake · 23 years ago
  3. a7d608d "Thin" version of floor division docs: add // to the list of operators by Fred Drake · 23 years ago
  4. 8dd6ffd User-defined methods *can* contain things other than user-defined functions by Fred Drake · 23 years ago
  5. 044bb4d Explain that __init__() methods do not get to return values. by Fred Drake · 23 years ago
  6. 9079164 Removed unnecessary section "Unicode literals"; all the discussion is by Fred Drake · 23 years ago
  7. 0825dc2 Fix typo in description of raw strings: "value" --> "valid" by Fred Drake · 23 years ago
  8. 6e5e1d9 Minor change to match the style guide. by Fred Drake · 23 years ago
  9. cb4638a Change the grammar productions to use the new productionlist environment; by Fred Drake · 23 years ago
  10. e7e03cd Fix typo by Andrew M. Kuchling · 23 years ago
  11. be9d10e Remove some bogus trailing whitespace. by Fred Drake · 23 years ago
  12. 93852ef Fix minor markup nits. by Fred Drake · 23 years ago
  13. deda9f3 Use a named reference to another chapter instead of hard coding the by Fred Drake · 23 years ago
  14. 2829f1c Fix a very minor (but annoying when looking for things!) markup nit. by Fred Drake · 23 years ago
  15. f5eae66 Add "yeild" to the list of keywords. by Fred Drake · 23 years ago
  16. d5df09c Update to include the license information in a less annoying place. by Fred Drake · 23 years ago
  17. 8838269 Update a "Programmer's note" about lambda forms and scoping to reflect by Fred Drake · 23 years ago
  18. 597bc1d Bring the notes on the relationship between __cmp__(), __eq__(), and by Fred Drake · 23 years ago
  19. b9879e1 Fix typo reported in SF bug #427783. by Fred Drake · 23 years ago
  20. b3384d3 Make sure we include all of Python's numeric types in the data model by Fred Drake · 23 years ago
  21. 7c116d7 Fix typo reported by David Goodger. This closes SF patch #422383. by Fred Drake · 23 years ago
  22. b8ac009 Fix the operator precedence table: exponentiation binds tighter than negation. by Fred Drake · 23 years ago
  23. 0dbb4fb Implement, test and document "key in dict" and "key not in dict". by Guido van Rossum · 23 years ago
  24. 62effc1 Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping. by Fred Drake · 23 years ago
  25. fb8ffe6 Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping. by Fred Drake · 23 years ago
  26. 24e7a29 Work around the conversion of ">>" and "<<" to guillemets. Reported by by Fred Drake · 23 years ago
  27. e264577 Typo: "ariables" --> "variables" This fixes SF bug #411118. by Fred Drake · 23 years ago
  28. aa90adc Add nested scopes spec to appendix. by Jeremy Hylton · 23 years ago
  29. a9d0450 No quotes around the "future" in the first use of the term "future statement". by Fred Drake · 23 years ago
  30. 557c1ae Include the futures appendix. by Fred Drake · 23 years ago
  31. 39778b7 Revise the markup so that this formats and uses markup consistently with by Fred Drake · 23 years ago
  32. 324cc6e Add some initial text for the appendix on future statements and nested scopes. by Jeremy Hylton · 23 years ago
  33. 2c84fc8 Note that assignments to __debug__ are illegal by Jeremy Hylton · 23 years ago
  34. e702481 Revert to ver 1.22, which was the version before the nested scopes by Jeremy Hylton · 23 years ago
  35. 859eb62 Do not refer to "sub-modules" since that is not a defined term. by Fred Drake · 23 years ago
  36. ac79e95 Re-word the explanation of the in/not in operators for increased content by Fred Drake · 23 years ago
  37. 7a5e80e Updates to describe function attributes. by Barry Warsaw · 23 years ago
  38. 230d17d Sequence indexes are non-negative, not natural (0 is not a natural number). by Fred Drake · 23 years ago
  39. 7530208 Feeble attempt to repair obsolete info about hex escapes. by Tim Peters · 23 years ago
  40. 667c9e4 Minor markup adjustments. by Fred Drake · 24 years ago
  41. 3faa52e Allow 'continue' inside 'try' clause SF patch 102989 by Thomas Wouters by Jeremy Hylton · 24 years ago
  42. c2e35e6 Remove spurious "\end{description}" that caused formatting to fail. by Fred Drake · 24 years ago
  43. 0eb1070 update section 4.1 to describe nested scopes by Jeremy Hylton · 24 years ago
  44. 10f8ba4 Remove note about the compiler not checking for two kinds of illegal by Jeremy Hylton · 24 years ago
  45. 2f4453a Typo: coplete --> complete by Fred Drake · 24 years ago
  46. c8e8281 Updated note about collection of cyclic garbage, based on comments from by Fred Drake · 24 years ago
  47. ab782dd Document rich comparisons. by Guido van Rossum · 24 years ago
  48. 34bafcc Fix a variety of minor nits and typos caught by Chris Ryland by Fred Drake · 24 years ago
  49. 347a625 Steve Holden <sholden@holdenweb.com>: by Fred Drake · 24 years ago
  50. 445f832 __rcmp__() description: Changed to indicate that this is no longer by Fred Drake · 24 years ago
  51. 48c2eb9 Document the NotImplemented object. by Neil Schemenauer · 24 years ago
  52. 2cba0f6 Improve description of else clause of the try/except/else statement. by Fred Drake · 24 years ago
  53. 8e2b6b5c Change documentation of 'else' clause of 'try/except' to make clear that it by Thomas Wouters · 24 years ago
  54. 68abe83 Fix typo by Andrew M. Kuchling · 24 years ago
  55. dea764d Updated string literals description to encompass Unicode literals and the by Fred Drake · 24 years ago
  56. 035f7e8 Clarify __repr__ and __str__. by Guido van Rossum · 24 years ago
  57. dc90cc2 Additional docs for __iadd__ and family, closing SF bug #117178 and SF patch by Thomas Wouters · 24 years ago
  58. 2a22200 Adjust explanation of operator precedence summary -- exponentiation groups by Fred Drake · 24 years ago
  59. c3b18d7 Fix error noted by Gerrit Holl (old; had been buried in my INBOX): by Fred Drake · 24 years ago
  60. 0c47559 Added a note that objects which emulate built-in types should only by Fred Drake · 24 years ago
  61. 0ac000c Updates to reflect pending changes to the XML conversion process. by Fred Drake · 24 years ago
  62. 2ed27d3 Note that readframes() returns data in linear format, even if the original by Fred Drake · 24 years ago
  63. f8925978 Denis S. Otkidach <ods@users.sourceforge.net>: by Fred Drake · 24 years ago
  64. d68442b Lots of minor fixes, many suggested by Detlef Lannert by Fred Drake · 24 years ago
  65. 31575ce Note that __getitem__() may receive a slice object as the index; by Fred Drake · 24 years ago
  66. 8d27f89 Moshe Zadka <mzadka@geocities.com>: by Fred Drake · 24 years ago
  67. 1156f62 Many small clarifications, including many suggested by email. by Fred Drake · 24 years ago
  68. 31f5550 Thomas Wouters <thomas@xs4all.net>: by Fred Drake · 24 years ago
  69. b655939 add index entries for list comprehensions by Skip Montanaro · 24 years ago
  70. 33f785f Document "print >> None" by Barry Warsaw · 24 years ago
  71. 12bba85 Rough and incomplete documentation on augmented assignment, which follows by Thomas Wouters · 24 years ago
  72. 323fe5d fix list comprehension discussion to use \keyword macro instead of simply by Skip Montanaro · 24 years ago
  73. 46dfa5f require list comprehensions to start with a for clause by Skip Montanaro · 24 years ago
  74. 8c0a242 PEP 214, Extended print Statement, has been accepted by the BDFL. by Barry Warsaw · 24 years ago
  75. 8bad612 Disallow "import mod.submod as m", because the result is ambiguous. Does it by Thomas Wouters · 24 years ago
  76. a007382 Adjust the way __getslice__() is marked as deprecated; this will also by Fred Drake · 24 years ago
  77. 5215225 Apply SF patch #101135, adding 'import module as m' and 'from module import by Thomas Wouters · 24 years ago
  78. 1d75a79 Apply SF patch #101029: call __getitem__ with a proper slice object if there by Thomas Wouters · 24 years ago
  79. d341579 Fix error made in applying Thomas's patch. by Fred Drake · 24 years ago
  80. a1e214a Thomas Wouters <thomas@xs4all.net>: by Fred Drake · 24 years ago
  81. 803d6e5 list comprehensions. see by Skip Montanaro · 24 years ago
  82. 3d83fc3 Change as suggested by Peter Funk <pf@artcom-gmbh.de>: by Fred Drake · 24 years ago
  83. f9b526d More of Rob W. W. Hooft's spelling fixes. The only ones left now are the by Thomas Wouters · 24 years ago
  84. 91826ed Improve the descriptions of expected exceptions for __getitem__(), by Fred Drake · 24 years ago
  85. 7399b9e Moshe Zadka <mzadka@geocities.com>: by Fred Drake · 24 years ago
  86. 191a282 Typo: "This table table" -> "This table is" by Fred Drake · 24 years ago
  87. 35c09f2 Revise the description of when functions retrieved from class instances by Fred Drake · 24 years ago
  88. e57a114 Fix markup error that hid a tilde character; reported long ago by by Fred Drake · 24 years ago
  89. 38c28e3 Added a note to the section on 'exec' about the need for a trailing newline by Greg Ward · 24 years ago
  90. c009d19 Removed some extraneous and confusing parenthesized expressions. by Fred Drake · 24 years ago
  91. 8b3ce9e But don't do the funny \UNICODE macro; we're trying to get away from by Fred Drake · 24 years ago
  92. f0aff8e Patch from Marc-Andre Lemburg <mal@lemburg.com>: by Fred Drake · 24 years ago
  93. e15956b Merged changes from the 1.5.2p2 release. by Fred Drake · 24 years ago
  94. e15eb35 Use \citetitle as appropriate. by Fred Drake · 25 years ago
  95. a24f7b7 Use \programopt in one place. by Fred Drake · 25 years ago
  96. 4c2533f Added sentence "All exceptions must have an executable block."; from by Fred Drake · 25 years ago
  97. c35367e Change an {\em ...} to \var{...} and a {\bf ...} to \program{...} (the by Fred Drake · 25 years ago
  98. 431f0ce Small nits around some of the index entries. by Fred Drake · 25 years ago
  99. b894370 Fixed some index entries. by Fred Drake · 25 years ago
  100. 1ea7c75 Reflect recent patch for float % and divmod() by Tim Peters. Content by Fred Drake · 25 years ago