1. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  2. d51ce7d Indexing is a mess; try to get the link targets closer to the relevant by Fred Drake · 21 years ago
  3. b3be52e Try to clean up some indexing relevant to the import statement. by Fred Drake · 21 years ago
  4. 96a8233 SF patch #751038 fixing SF bug#750092: exec doesn't need newline by Raymond Hettinger · 21 years ago
  5. 847207a SF bug #719367, string exceptions are deprecated by Neal Norwitz · 21 years ago
  6. 8bea5dc Move future statement here from appendix a. by Jeremy Hylton · 21 years ago
  7. 007fadd Fix symbol in grammar; this should fix some hyperlinking in the HTML version. by Fred Drake · 21 years ago
  8. 8bd62af Fix typo reported to python-docs. by Fred Drake · 21 years ago
  9. e701dcb SF patch #634866: Alex Martelli's corrections to the ref manual. by Raymond Hettinger · 21 years ago
  10. 13dd9d9 Patch #662454: import a.b as c is ok, fixes #660811. by Martin v. Löwis · 21 years ago
  11. 1772f17 SF bug #661848 and #631055: Clarify use of __all__. by Raymond Hettinger · 22 years ago
  12. 27cae1f Revise the __all__ index entry a touch. by Fred Drake · 22 years ago
  13. f9229d9 Add __all__ to Reference Manual index. Closes SF 643227. by Raymond Hettinger · 22 years ago
  14. e7097e0 Added cross-references to related material on exceptions. Closes SF bug #217195. by Fred Drake · 22 years ago
  15. 04e7e0c Close bug 417930 by clarifying augmented assignment docs by Raymond Hettinger · 22 years ago
  16. 81932e2 Try to improve the explanation of the "raise" statement and how its arguments by Fred Drake · 22 years ago
  17. 495afea Typo. by Michael W. Hudson · 22 years ago
  18. f3255c8 Reword explanation of global statement since an undeclared global is a by Jeremy Hylton · 22 years ago
  19. f0c1f1b Note the sole case in which the ban on "from ... import *" within a by Jeremy Hylton · 22 years ago
  20. 15b6897 Remove the following restriction: by Jeremy Hylton · 22 years ago
  21. d09ed68 Note that it is illegal to delete a cell variable. by Jeremy Hylton · 22 years ago
  22. 5381588 Revise the markup related to the grammar productions to increase the by Fred Drake · 22 years ago
  23. 08d752c Update to use the notice environment so a multi-paragraph note can be by Fred Drake · 23 years ago
  24. 8d0645c Add a note about yield requiring a __future__ directive. by Fred Drake · 23 years ago
  25. 3a8e59e Clean up a sad sentence in the yield description. by Fred Drake · 23 years ago
  26. e31e9ce Document generators and the yield statement, avoiding implementation details. by Fred Drake · 23 years ago
  27. c2f496a Add a note to the description of the interaction between the softspace by Fred Drake · 23 years ago
  28. 08fd515 When describing "import *", add a level of indirection between "*" and the by Fred Drake · 23 years ago
  29. cb4638a Change the grammar productions to use the new productionlist environment; by Fred Drake · 23 years ago
  30. be9d10e Remove some bogus trailing whitespace. by Fred Drake · 23 years ago
  31. 93852ef Fix minor markup nits. by Fred Drake · 23 years ago
  32. 2829f1c Fix a very minor (but annoying when looking for things!) markup nit. by Fred Drake · 23 years ago
  33. 62effc1 Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping. by Fred Drake · 23 years ago
  34. 2c84fc8 Note that assignments to __debug__ are illegal 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. 10f8ba4 Remove note about the compiler not checking for two kinds of illegal by Jeremy Hylton · 23 years ago
  37. d68442b Lots of minor fixes, many suggested by Detlef Lannert by Fred Drake · 24 years ago
  38. 31f5550 Thomas Wouters <thomas@xs4all.net>: by Fred Drake · 24 years ago
  39. 33f785f Document "print >> None" by Barry Warsaw · 24 years ago
  40. 8c0a242 PEP 214, Extended print Statement, has been accepted by the BDFL. by Barry Warsaw · 24 years ago
  41. 8bad612 Disallow "import mod.submod as m", because the result is ambiguous. Does it by Thomas Wouters · 24 years ago
  42. 5215225 Apply SF patch #101135, adding 'import module as m' and 'from module import by Thomas Wouters · 24 years ago
  43. f9b526d More of Rob W. W. Hooft's spelling fixes. The only ones left now are the by Thomas Wouters · 24 years ago
  44. 191a282 Typo: "This table table" -> "This table is" by Fred Drake · 24 years ago
  45. 38c28e3 Added a note to the section on 'exec' about the need for a trailing newline by Greg Ward · 24 years ago
  46. 011f6fc Typo: "Otherwose" --> "Otherwise" (reported by Joakim Sernbrant by Fred Drake · 25 years ago
  47. b1f97d6 Suggestion by Tim Peters clarifying what "before global" means. by Guido van Rossum · 26 years ago
  48. 2b3730e Minor adjustments to a few index entries. by Fred Drake · 26 years ago
  49. d4c3352 Fix encoding of \n in a couple of places (reported by Lorenzo by Fred Drake · 26 years ago
  50. f5a80a4 Describe what happens when ``raise C, x'' is called where C is a class by Guido van Rossum · 26 years ago
  51. 1a0b872 At least mark the URL to the Packages essay using \url. by Fred Drake · 26 years ago
  52. 61c7728 Make sure all chapters, sections, and subsections have a \label to give them by Fred Drake · 26 years ago
  53. 246837d Fix markup of an \indexiii --> only two parameters were given. by Fred Drake · 26 years ago
  54. 56c2013 Changes copied from the FrameMaker version. Also documented some by Guido van Rossum · 26 years ago
  55. 5f574aa Added back the description of the exec statement. It appears that I by Guido van Rossum · 26 years ago
  56. dde91f0 Fix a bogus \code@...@ to be \code{...}. by Fred Drake · 26 years ago
  57. f666917 The Python Reference Manual. by Fred Drake · 26 years ago
  58. 1f17543 Removed LaTeX version of reference manual. Added ref/ref.ps. by Guido van Rossum · 28 years ago
  59. 0a94dfc Erase all memory of the access statement by Guido van Rossum · 28 years ago
  60. 7710f1f explain global better by Guido van Rossum · 28 years ago
  61. c5d0d79 make access obsolete by Guido van Rossum · 29 years ago
  62. 611be70 replace vars() with locals() and globals(); 3rd raise arg; typos by Guido van Rossum · 29 years ago
  63. 46f2157 added ref to vars() by Guido van Rossum · 29 years ago
  64. eb8b0d2 added classes as exceptions by Guido van Rossum · 29 years ago
  65. 31cce97 copyright.tex: Add 1995 to copyright message. by Guido van Rossum · 30 years ago
  66. bd851cd * Doc/libtime.tex: get rid of references to millitime() and by Guido van Rossum · 30 years ago
  67. e991496 Merge lost revisions back by Guido van Rossum · 30 years ago
  68. a75d306 "exec" is now a statement. execfile() is obsolete. by Guido van Rossum · 31 years ago
  69. da43a4a Initial revision by Guido van Rossum · 32 years ago