1. 6cf09f0 Patch 543387. Document deprecation of complex %, //,and divmod(). by Raymond Hettinger · 22 years ago
  2. 9415309 Closes SF patch: 552468. by Raymond Hettinger · 22 years ago
  3. af93c4c Added a missing "|" in the grammar productions used in the reference manual by Fred Drake · 22 years ago
  4. ed9e453 Minor change to an index entry. by Fred Drake · 22 years ago
  5. 70b3831 Adjust markup to worm around tool limitations; the "m" in "model" was being by Fred Drake · 22 years ago
  6. c0a02c0 Remove repeated index entry; adds nothing different. Closes SF bug #518985. by Fred Drake · 22 years ago
  7. 2a519f8 Document __unicode__. Fixes #541245. by Martin v. Löwis · 22 years ago
  8. fd86771 Fix typo: coverted --> converted. Reported by Francois Pinard. by Fred Drake · 22 years ago
  9. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 23 years ago
  10. 88955cb Change reference to execframes to naming. by Jeremy Hylton · 23 years ago
  11. e604875 Restore a minimal definition of execution frame, since other parts of by Jeremy Hylton · 23 years ago
  12. 1824b59 Update programmer's note on nested functions. by Jeremy Hylton · 23 years ago
  13. f3255c8 Reword explanation of global statement since an undeclared global is a by Jeremy Hylton · 23 years ago
  14. f0c1f1b Note the sole case in which the ban on "from ... import *" within a by Jeremy Hylton · 23 years ago
  15. 15b6897 Remove the following restriction: by Jeremy Hylton · 23 years ago
  16. d09ed68 Note that it is illegal to delete a cell variable. by Jeremy Hylton · 23 years ago
  17. 2225add Given lambda its own section, instead of burying it in boolean operators. by Jeremy Hylton · 23 years ago
  18. 53ed917 Update / simplify Identifiers section for nested scopes. by Jeremy Hylton · 23 years ago
  19. e7d5773 Update docs for nested scopes. by Jeremy Hylton · 23 years ago
  20. 8392f36 Update documentation of code objects. by Jeremy Hylton · 23 years ago
  21. 26c49b6 Small fixes for description of function attributes. by Jeremy Hylton · 23 years ago
  22. f6eafc3 Fix up unescaped tilde; reported by several people. by Fred Drake · 23 years ago
  23. 83d14c1 Markup error: braces not properly marked in dictionary display by Fred Drake · 23 years ago
  24. 5381588 Revise the markup related to the grammar productions to increase the by Fred Drake · 23 years ago
  25. 216cbca Typo: thsi -> this. Closes SF bug #521450. by Fred Drake · 23 years ago
  26. aae728f Fix typo reported by François Pinard. by Fred Drake · 23 years ago
  27. 687bde9 Added some missing index entries, noted by L. Peter Deutsch. by Fred Drake · 23 years ago
  28. 08d752c Update to use the notice environment so a multi-paragraph note can be by Fred Drake · 23 years ago
  29. 591dd8f Update information about __del__() & reference cycles for CPython. by Fred Drake · 23 years ago
  30. b062cb2 Work around the problem of spaces after a "}" being dropped by LaTeX2HTML if by Fred Drake · 23 years ago
  31. 850d398 Fix for by Michael W. Hudson · 23 years ago
  32. 8d0645c Add a note about yield requiring a __future__ directive. by Fred Drake · 23 years ago
  33. 3a8e59e Clean up a sad sentence in the yield description. by Fred Drake · 23 years ago
  34. e31e9ce Document generators and the yield statement, avoiding implementation details. by Fred Drake · 23 years ago
  35. 1d3e6c1 Fix whitespace in example of bad indentation: a comment indicated that one by Fred Drake · 23 years ago
  36. f9d5803 Add change notes where im_class is discussed, since the exact meaning changes by Fred Drake · 23 years ago
  37. b62f0e1 Correct the description of im_class. (Fred, this is changed in 2.2. by Guido van Rossum · 23 years ago
  38. c2f496a Add a note to the description of the interaction between the softspace by Fred Drake · 23 years ago
  39. 4ed6be7 Import the keyword module instead of relying on our own list of by Guido van Rossum · 23 years ago
  40. 41c6719 Put the keywords back in alphabetical order. Apparently somebody by Guido van Rossum · 23 years ago
  41. 3570551 Remove most references to __members__ and __methods__, leaving only one pair by Fred Drake · 23 years ago
  42. c37b65e Clean up some markup cruft. A number of the macros that take no by Fred Drake · 23 years ago
  43. 1336e99 Fred observes that the typo was not the only problem with this sentence. by Jeremy Hylton · 23 years ago
  44. 4a98f70 typo by Jeremy Hylton · 23 years ago
  45. 08fd515 When describing "import *", add a level of indirection between "*" and the by Fred Drake · 23 years ago
  46. 0aa811c Use the \note and \warning macros where appropriate. by Fred Drake · 23 years ago
  47. 316141b Fix typo reported by Michael Soulier. by Fred Drake · 23 years ago
  48. 1350c07 Removed stray backslash (a typo -- my fault). by Tim Peters · 23 years ago
  49. 20524db The description of dictionary comparison was out of date. Rather than by Tim Peters · 23 years ago
  50. 73921b0 Refer to the objects which define __len__(), __*item__(), and __iter__() by Fred Drake · 23 years ago
  51. 18d8d5a Fix minor usage and consistency nits. by Fred Drake · 23 years ago
  52. ed5a7ca Work around a LaTeX2HTML bug that caused the "m" in "mutable" to be dropped by Fred Drake · 23 years ago
  53. d507dab SF patch #455966: Allow leading 0 in float/imag literals. by Tim Peters · 23 years ago
  54. 53da317 Docs for the PEP 264 changes. by Michael W. Hudson · 23 years ago
  55. c0cf726 Add material about the "r" and "u" prefixes for string literals; should by Fred Drake · 23 years ago
  56. 3e2aca4 Add information about __floordiv__() and __truediv__() methods for by Fred Drake · 23 years ago
  57. a7d608d "Thin" version of floor division docs: add // to the list of operators by Fred Drake · 23 years ago
  58. 8dd6ffd User-defined methods *can* contain things other than user-defined functions by Fred Drake · 23 years ago
  59. 044bb4d Explain that __init__() methods do not get to return values. by Fred Drake · 23 years ago
  60. 9079164 Removed unnecessary section "Unicode literals"; all the discussion is by Fred Drake · 23 years ago
  61. 0825dc2 Fix typo in description of raw strings: "value" --> "valid" by Fred Drake · 23 years ago
  62. 6e5e1d9 Minor change to match the style guide. by Fred Drake · 23 years ago
  63. cb4638a Change the grammar productions to use the new productionlist environment; by Fred Drake · 23 years ago
  64. e7e03cd Fix typo by Andrew M. Kuchling · 23 years ago
  65. be9d10e Remove some bogus trailing whitespace. by Fred Drake · 23 years ago
  66. 93852ef Fix minor markup nits. by Fred Drake · 23 years ago
  67. deda9f3 Use a named reference to another chapter instead of hard coding the by Fred Drake · 23 years ago
  68. 2829f1c Fix a very minor (but annoying when looking for things!) markup nit. by Fred Drake · 23 years ago
  69. f5eae66 Add "yeild" to the list of keywords. by Fred Drake · 23 years ago
  70. d5df09c Update to include the license information in a less annoying place. by Fred Drake · 23 years ago
  71. 8838269 Update a "Programmer's note" about lambda forms and scoping to reflect by Fred Drake · 23 years ago
  72. 597bc1d Bring the notes on the relationship between __cmp__(), __eq__(), and by Fred Drake · 23 years ago
  73. b9879e1 Fix typo reported in SF bug #427783. by Fred Drake · 23 years ago
  74. b3384d3 Make sure we include all of Python's numeric types in the data model by Fred Drake · 23 years ago
  75. 7c116d7 Fix typo reported by David Goodger. This closes SF patch #422383. by Fred Drake · 23 years ago
  76. b8ac009 Fix the operator precedence table: exponentiation binds tighter than negation. by Fred Drake · 23 years ago
  77. 0dbb4fb Implement, test and document "key in dict" and "key not in dict". by Guido van Rossum · 23 years ago
  78. 62effc1 Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping. by Fred Drake · 23 years ago
  79. fb8ffe6 Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping. by Fred Drake · 23 years ago
  80. 24e7a29 Work around the conversion of ">>" and "<<" to guillemets. Reported by by Fred Drake · 23 years ago
  81. e264577 Typo: "ariables" --> "variables" This fixes SF bug #411118. by Fred Drake · 24 years ago
  82. aa90adc Add nested scopes spec to appendix. by Jeremy Hylton · 24 years ago
  83. a9d0450 No quotes around the "future" in the first use of the term "future statement". by Fred Drake · 24 years ago
  84. 557c1ae Include the futures appendix. by Fred Drake · 24 years ago
  85. 39778b7 Revise the markup so that this formats and uses markup consistently with by Fred Drake · 24 years ago
  86. 324cc6e Add some initial text for the appendix on future statements and nested scopes. by Jeremy Hylton · 24 years ago
  87. 2c84fc8 Note that assignments to __debug__ are illegal by Jeremy Hylton · 24 years ago
  88. e702481 Revert to ver 1.22, which was the version before the nested scopes by Jeremy Hylton · 24 years ago
  89. 859eb62 Do not refer to "sub-modules" since that is not a defined term. by Fred Drake · 24 years ago
  90. ac79e95 Re-word the explanation of the in/not in operators for increased content by Fred Drake · 24 years ago
  91. 7a5e80e Updates to describe function attributes. by Barry Warsaw · 24 years ago
  92. 230d17d Sequence indexes are non-negative, not natural (0 is not a natural number). by Fred Drake · 24 years ago
  93. 7530208 Feeble attempt to repair obsolete info about hex escapes. by Tim Peters · 24 years ago
  94. 667c9e4 Minor markup adjustments. by Fred Drake · 24 years ago
  95. 3faa52e Allow 'continue' inside 'try' clause SF patch 102989 by Thomas Wouters by Jeremy Hylton · 24 years ago
  96. c2e35e6 Remove spurious "\end{description}" that caused formatting to fail. by Fred Drake · 24 years ago
  97. 0eb1070 update section 4.1 to describe nested scopes by Jeremy Hylton · 24 years ago
  98. 10f8ba4 Remove note about the compiler not checking for two kinds of illegal by Jeremy Hylton · 24 years ago
  99. 2f4453a Typo: coplete --> complete by Fred Drake · 24 years ago
  100. c8e8281 Updated note about collection of cyclic garbage, based on comments from by Fred Drake · 24 years ago