| Commit message (Expand) | Author | Age | Files | Lines |
* | Be more specific about corner cases in the description of the $ RE syntax, | Fred Drake | 2001-07-23 | 1 | -4/+7 |
|
|
* | Oh, ok, so plainpager is probably marginally better. | Fred Drake | 2001-07-23 | 1 | -1/+1 |
|
|
* | If $TERM is "dumb" or "emacs", just dump the text instead of trying to run | Fred Drake | 2001-07-23 | 1 | -0/+2 |
|
|
* | When explaining the enterabs() method, using the modern spelling of apply(), | Fred Drake | 2001-07-23 | 1 | -3/+3 |
|
|
* | Remove self-reference from the anydbm module. | Fred Drake | 2001-07-23 | 1 | -1/+0 |
|
|
* | Typo: Added missing "if". | Fred Drake | 2001-07-23 | 1 | -1/+1 |
|
|
* | Add StopIteration to the list of exceptions *not* derived from StandardError. | Fred Drake | 2001-07-23 | 1 | -3/+4 |
|
|
* | Convert the use of apply(f, args) to the new spelling: f(*args). | Fred Drake | 2001-07-23 | 1 | -1/+1 |
|
|
* | Fix typo in comment. | Neil Schemenauer | 2001-07-23 | 1 | -1/+1 |
|
|
* | Add -E command line switch (ignore environment variables like PYTHONHOME | Neil Schemenauer | 2001-07-23 | 12 | -34/+59 |
|
|
* | Make this test work under Windows as well. | Fred Drake | 2001-07-23 | 1 | -2/+5 |
|
|
* | Test for the "glob" module, contributed by Nick Mathewson. | Fred Drake | 2001-07-23 | 1 | -0/+110 |
|
|
* | Patch number #422106 by Greg Ball, to fix segmentation | Moshe Zadka | 2001-07-23 | 1 | -0/+5 |
|
|
* | Alex Coventry (SF patch 441791). | Guido van Rossum | 2001-07-23 | 1 | -0/+1 |
|
|
* | SF Patch #441791, with changes: when "import foo.bar" fails with an | Guido van Rossum | 2001-07-23 | 1 | -4/+16 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-07-23 | 1 | -4/+3 |
|
|
* | Before declaring h_errno, do not check for Win32 only. Instead, do check | Martin v. Löwis | 2001-07-23 | 2 | -2/+2 |
|
|
* | Tests for the "commands" module, contributed by Nick Mathewson. | Fred Drake | 2001-07-23 | 1 | -0/+45 |
|
|
* | New tests by Nick Mathewson, for the fpformat module. | Fred Drake | 2001-07-23 | 1 | -0/+67 |
|
|
* | Instead of accessing ss_family, cast sockaddr_storage to sockaddr and access ... | Martin v. Löwis | 2001-07-23 | 3 | -335/+335 |
|
|
* | Leave the Inno script in better shape. Added registration of .py etc | Tim Peters | 2001-07-21 | 1 | -16/+51 |
|
|
* | Set ai_addrlen even if there is no sa_len. | Martin v. Löwis | 2001-07-21 | 1 | -0/+1 |
|
|
* | Patch #401196: IPv6 extensions to the socket module. | Martin v. Löwis | 2001-07-21 | 1 | -103/+546 |
|
|
* | Add item about the new xml.sax.saxutils.quoteaddr() function. | Fred Drake | 2001-07-21 | 1 | -0/+4 |
|
|
* | updated about info for 0.8.1 release | Steven M. Gava | 2001-07-21 | 1 | -3/+3 |
|
|
* | new material for 0.8.1 release | Steven M. Gava | 2001-07-21 | 2 | -9/+30 |
|
|
* | Silence warnings in MSVC++: hide unused variables, add constness back to | Martin v. Löwis | 2001-07-21 | 3 | -7/+14 |
|
|
* | Get started on 2.2a2 NEWS. | Tim Peters | 2001-07-21 | 1 | -0/+17 |
|
|
* | On WIndows, skip the part of test_dircache that can't work on Windows. | Tim Peters | 2001-07-21 | 1 | -9/+15 |
|
|
* | Whitespace normalization, plus: | Tim Peters | 2001-07-21 | 5 | -19/+19 |
|
|
* | Corrected a section reference (title was wrong). | Fred Drake | 2001-07-20 | 1 | -5/+8 |
|
|
* | Typo: PyArgs_ParseTuple --> PyArg_ParseTuple | Fred Drake | 2001-07-20 | 1 | -30/+62 |
|
|
* | Added information on Py_BuildValue(). | Fred Drake | 2001-07-20 | 1 | -0/+3 |
|
|
* | Make the add*() helper functions more robust for use after intialization | Fred Drake | 2001-07-20 | 1 | -6/+33 |
|
|
* | Patch #429442 from Jason Tishler: Corrects sys.platform and | Andrew M. Kuchling | 2001-07-20 | 3 | -381/+384 |
|
|
* | Use string.ascii_letters instead of string.letters (SF bug #226706). | Fred Drake | 2001-07-20 | 15 | -18/+17 |
|
|
* | Add a missing "\" to the markup. | Fred Drake | 2001-07-20 | 1 | -1/+1 |
|
|
* | Use string.ascii_letters instead of string.letters (SF bug #226706). | Fred Drake | 2001-07-20 | 2 | -3/+9 |
|
|
* | Use string.ascii_letters instead of string.letters (SF bug #226706). | Fred Drake | 2001-07-20 | 1 | -3/+3 |
|
|
* | Use string.ascii_letters instead of string.letters. | Fred Drake | 2001-07-20 | 1 | -2/+2 |
|
|
* | Added the constants ascii_letters, ascii_lowercase, and ascii_uppercase | Fred Drake | 2001-07-20 | 3 | -3/+33 |
|
|
* | More Unicode corrections from MAL to match a post-2.2a1 change | Andrew M. Kuchling | 2001-07-20 | 1 | -23/+13 |
|
|
* | Make the unicode-escape and the UTF-16 codecs handle surrogates | Marc-André Lemburg | 2001-07-20 | 2 | -24/+54 |
|
|
* | #ifdef out generation of \U escapes unless Py_UNICODE_WIDE. This | Guido van Rossum | 2001-07-20 | 1 | -0/+2 |
|
|
* | Removed unnecessary section "Unicode literals"; all the discussion is | Fred Drake | 2001-07-20 | 1 | -6/+1 |
|
|
* | Copying this 2.1.1 bugfix to the trunk: | Guido van Rossum | 2001-07-20 | 1 | -1/+0 |
|
|
* | Fix typo in description of raw strings: "value" --> "valid" | Fred Drake | 2001-07-20 | 1 | -1/+1 |
|
|
* | apply patch item #416254 | Piers Lauder | 2001-07-20 | 1 | -3/+48 |
|
|
* | apply patch item #416253 | Piers Lauder | 2001-07-20 | 1 | -38/+115 |
|
|
* | fix missed conversion in ESR's string conversion | Piers Lauder | 2001-07-20 | 1 | -1/+1 |
|
|