Final head of the former 2.2 branch
- 3bc0d39 [Bug #1023359] Make code match inheritance diagram by Andrew M. Kuchling · 21 years ago
- 7754996 backport of concrete.tex v1.35: by Andrew MacIntyre · 22 years ago
- 7325fe6 Backport of 1.26: by Michael W. Hudson · 22 years ago
- d252c73 Patch #830858: Update number of functions starting with "is". by Martin v. Löwis · 22 years ago
- c8dc7c3 [Bug #811681] The asynchat documentation would also apply to the 2.2 version of the module, but the docs aren't included. This adds a copy of libasynchat.tex. by Andrew M. Kuchling · 22 years ago
- 1c3f4b8 Elaborate the explanation of different flavors of _* identifiers. by Fred Drake · 22 years ago
- 3b7340c remove extra word occurance; reported to webmaster by Fred Drake · 22 years ago
- 8374ad2 Backporting email 2.5.4 fixes from the trunk. by Barry Warsaw · 22 years ago
- 62b8f0d - update documentation contact address by Fred Drake · 22 years ago
- aec7bdf - update documentation contact address by Fred Drake · 22 years ago
- 5ce4dc2 Update URL. by Fred Drake · 22 years ago
- 4e378ec Don't generate a line containing only \ at the top of a new index file. by Fred Drake · 22 years ago
- dd2cc27 Fix broken markup; make the ^= representation work properly by Fred Drake · 22 years ago
- aa088c6 - Americanize a spelling by Fred Drake · 22 years ago
- 3416668 correct link by Skip Montanaro · 22 years ago
- 8a5ffac Patch #549151, rev4: redirect POST on 301 also. by Martin v. Löwis · 22 years ago
- 63bda3a Update Tkinter3000 notes based on text from Fredrik Lundh. by Fred Drake · 22 years ago
- 2045f56 - explain about making Python scripts executable on Unix in more detail by Fred Drake · 22 years ago
- 708b068 Fix SF bug #766288, property() example gives syntax error by Neal Norwitz · 22 years ago
- 2e8e6a9 Backport tim_one's checkin: by Neal Norwitz · 22 years ago
- 91ade65 Backport theller's checkin: by Neal Norwitz · 22 years ago
- 4bbff7b Don't assume the name of the table of contents will be contents.html; by Fred Drake · 22 years ago
- 5032dfe Add definitions of the test and testlist symbols in the grammar so by Fred Drake · 22 years ago
- c0cab85 Bump version info. by Fred Drake · 22 years ago
- cb34054 Remove heading from orphan section. by Fred Drake · 22 years ago
- 8851af2 Update link to Python book information. by Fred Drake · 22 years ago
- a3a1d28 Avoid 'dir' as a variable name. Use os.path.join() to join path elements by Skip Montanaro · 22 years ago
- 82d309b Include "instances of most classes" in a warning about mutable objects by Fred Drake · 22 years ago
- a0e0297 Set release information for Python 2.2.3. by Fred Drake · 22 years ago
- 2ad5730 update copyright dates by Fred Drake · 22 years ago
- a63beee Correct dependency information -- the Python docs load the "About this by Fred Drake · 22 years ago
- 6314b22 Minor elaboration in the information about reporting errors. by Fred Drake · 22 years ago
- 49a5f47 update version/release information by Fred Drake · 22 years ago
- bccf8f3 update version history by Fred Drake · 22 years ago
- 380a42c the release manager has been fixed; this *will* be a release candidate by Fred Drake · 22 years ago
- 8674212 Start preparing the doc tree for 2.2.3. by Fred Drake · 22 years ago
- 91cfc50 Backport: Don't mention __slots__ as a technique for error avoidance by Andrew M. Kuchling · 22 years ago
- a92eb4b Remove unused line numbers from example code. by Fred Drake · 22 years ago
- 52b8743 Fixing typo from previous patch. by Brett Cannon · 22 years ago
- 9dbdfca Add docs for use of key_file and cert_file parameters. by Brett Cannon · 22 years ago
- ceb58a7 Fix nits found by Tools\scripts\texcheck.py by Raymond Hettinger · 22 years ago
- dc39bc6 Add a specific mention of the term "operator overloading" and add an by Fred Drake · 22 years ago
- 8fc096a add missing parens - verified w/ interpreter - sorry to dismiss your comment by Skip Montanaro · 22 years ago
- 6069b64 replace most uses of `...` by repr(...), noting that `...` is discouraged, by Skip Montanaro · 22 years ago
- 594d4c5 At the site of an indexed reference to print, point to the relevant by Fred Drake · 22 years ago
- 7f9cbf1 - clean up some extra punctuation hidden in indexing markup by Fred Drake · 22 years ago
- 9a3638f Clarify that the timeout argument to read_until() is in seconds. by Fred Drake · 22 years ago
- 9b88e15 SF bug #729096: getopt online documentation example improvement by Raymond Hettinger · 22 years ago
- 0215756 backport of note arising from bug 711019. by Skip Montanaro · 22 years ago
- 468f44f Markup change; make the notice a little stronger by using the "boxed" version. by Fred Drake · 22 years ago
- a749183 Add modified versions of the examples from Sean Reifschneider by Fred Drake · 22 years ago
- 368c36f Backport 1.47 and 1.7 by Raymond Hettinger · 22 years ago
- 2a1ad9c Add cross-references between urllib.urlencode() and cgi.parse_qs[l](). by Fred Drake · 22 years ago
- 052d587 Include notice that the rotor module will be deprecated in Python 2.3. by Fred Drake · 22 years ago
- 62308cb Fix documentation errors in regards to urlretrieve() and local files. by Brett Cannon · 22 years ago
- f6b74da backport note about password limitations by Skip Montanaro · 22 years ago
- c18cc56 fsync(): Implemented for Windows, via calling MS _commit. This counts by Tim Peters · 22 years ago
- 55ed680 Added documentation for the handle_pi() method, based on SF patch #662464. by Fred Drake · 22 years ago
- b4d53fd As discussed on python-dev, revised docs to note that by Raymond Hettinger · 22 years ago
- 9976fdf Backport: Fix SF bug #697220, string.strip implementation/doc mismatch by Neal Norwitz · 22 years ago
- 273888e Backport comments about PyObject_Type() (HEAD revisions 1.24, 1.25). by Fred Drake · 22 years ago
- 71e300e Added example of using positional and keyword args with atexit.register(). by Fred Drake · 22 years ago
- fb5d378 Match some of the markup changes from the trunk. by Fred Drake · 22 years ago
- b9ea876 Fix symbol in grammar; this should fix some hyperlinking in the HTML version. by Fred Drake · 22 years ago
- 31643ee Backporting docs for email 2.5 by Barry Warsaw · 22 years ago
- bdd096a - added example of using a comparison function with list.sort(), and by Fred Drake · 22 years ago
- 38d0ccf - backport portions of SF patch #700798: fixes and cleanups for descriptor info by Fred Drake · 22 years ago
- 158303a - explain what a UNC path is in the makedirs() description, since by Fred Drake · 22 years ago
- 614479d SF bug #697220, string.strip implementation/doc mismatch by Neal Norwitz · 22 years ago
- fac559c Backported fix to [521782] unreliable file.read() error handling. by Gustavo Niemeyer · 22 years ago
- a4ecf11 Typo by Raymond Hettinger · 23 years ago
- f5908e1 Backport libtime.tex 1.53: by Raymond Hettinger · 23 years ago
- 8b563c4 Backport 1.7: Clarify when a read-only object is created. by Raymond Hettinger · 23 years ago
- 07f3867 SF bug #685775: turtle circle() documentation error by Raymond Hettinger · 23 years ago
- e6c6163 Fix SF bug #687655, String formatting conversions misleading by Neal Norwitz · 23 years ago
- 32d4793 backporting Fred's doc fix. by Skip Montanaro · 23 years ago
- dd2cffe add missing description of os.extsep by Skip Montanaro · 23 years ago
- 372d65b Fix SF bug #675259, os.environ leaks under FreeBSD and Mac OS X by Neal Norwitz · 23 years ago
- e19d309 Update to better reflect the usage of struct_time instances throughout; by Fred Drake · 23 years ago
- 2184968 backports: by Neal Norwitz · 23 years ago
- 613e70b backport: by Neal Norwitz · 23 years ago
- a9cbb79 Backport: date: 2002/12/06 22:42:13; author: theller; by Neal Norwitz · 23 years ago
- 5784a78 Fix typo reported to python-docs. by Fred Drake · 23 years ago
- 55e040e Backport SF patch #634866: Alex Martelli's corrections to the ref manual. by Raymond Hettinger · 23 years ago
- 4e17346 SF patch 664183 and SF bug 664044: Note that both u'%s' % 'x' and by Raymond Hettinger · 23 years ago
- cd30498 Backport last change: SF #665570, curses causes interpreter crash by Neal Norwitz · 23 years ago
- db0dbec Strike any hint that from-import-* could ever be reasonable; it's a by Fred Drake · 23 years ago
- 176f3a6 Document that apply() is deprecated. See: by Fred Drake · 23 years ago
- 398c4ed SF Bug 645777: list.extend() works with any iterable and is no longer by Raymond Hettinger · 23 years ago
- cc80e80 Backport documentation of left-to-right evaluation order. by Raymond Hettinger · 23 years ago
- 469777f Revise the __all__ index entry a touch. by Fred Drake · 23 years ago
- ecb34ba Add __all__ to Reference Manual index. Closes SF 643227. by Raymond Hettinger · 23 years ago
- cf06117 Remove extra ")" in example. by Fred Drake · 23 years ago
- 8950db6 Typo: "dead lock" --> "deadlock" by Fred Drake · 23 years ago
- 80ccaac Backport version 1.21: by Walter Dörwald · 23 years ago
- f396163 Fix problem in example code. It's minor in this particular example, by Fred Drake · 23 years ago
- 66b5242 Fix example regular expressions that simulate scanf() constructs. by Fred Drake · 23 years ago
- f2dda26 Fix SF # 646578, Documentation Typo by Neal Norwitz · 23 years ago
- e815830 Remove unused variable by Neal Norwitz · 23 years ago
- cca4dd1 Update 2.2 document by Andrew M. Kuchling · 23 years ago