| Commit message (Expand) | Author | Age | Files | Lines |
* | Miscellaneous updates. | Fred Drake | 2001-01-09 | 1 | -3/+3 |
|
|
* | Steve Holden <sholden@holdenweb.com>: | Fred Drake | 2001-01-09 | 2 | -13/+14 |
|
|
* | Added names. | Fred Drake | 2001-01-09 | 1 | -0/+2 |
|
|
* | Added missing word; fixed minor nits. | Fred Drake | 2001-01-09 | 1 | -4/+4 |
|
|
* | Added entry for fpectl module documentation. | Fred Drake | 2001-01-09 | 1 | -1/+2 |
|
|
* | Added entry for fpectl module documentation. | Fred Drake | 2001-01-09 | 1 | -0/+1 |
|
|
* | Documentation for the fpectl module, from Lee Busby. (Thanks!) | Fred Drake | 2001-01-09 | 1 | -0/+122 |
|
|
* | Check in patch #102971: if library_dirs is a string, split it using | Andrew M. Kuchling | 2001-01-09 | 1 | -0/+2 |
|
|
* | Patch #102953: Fix bug #125452, where shlex.shlex hangs when it | Andrew M. Kuchling | 2001-01-09 | 1 | -0/+5 |
|
|
* | Address a bug in the uuencode decoder, reported bu "donut" in SF bug | Guido van Rossum | 2001-01-09 | 1 | -3/+3 |
|
|
* | Tsk, tsk, tsk. Treat FreeBSD the same as the other BSDs when defining | Guido van Rossum | 2001-01-09 | 1 | -1/+1 |
|
|
* | Remove configure test for getline(), since it's no longer used at all | Andrew M. Kuchling | 2001-01-08 | 3 | -5/+2 |
|
|
* | Anonymous SF bug report #128053 point out that the #ifdef for | Guido van Rossum | 2001-01-08 | 1 | -1/+1 |
|
|
* | Explain that long options are matched based on a unique prefix rather than | Fred Drake | 2001-01-08 | 1 | -1/+8 |
|
|
* | GetoptError is always initialized with exactly two parameters, so simplify | Fred Drake | 2001-01-08 | 1 | -7/+4 |
|
|
* | Fixed bug which caused HTTPS not to work at all with string URLs | Moshe Zadka | 2001-01-08 | 1 | -1/+1 |
|
|
* | Fix a silly bug in float_pow. Sorry Tim. | Neil Schemenauer | 2001-01-08 | 1 | -1/+1 |
|
|
* | The Python/C API deals in PyObject*, not PyDictObject*. | Fred Drake | 2001-01-08 | 1 | -12/+12 |
|
|
* | Text.__init__(): Make sure the data parameter is a string (8-bit or | Fred Drake | 2001-01-08 | 1 | -0/+2 |
|
|
* | A few reformats; no logic changes. | Tim Peters | 2001-01-08 | 1 | -9/+8 |
|
|
* | Let's hope that three time's a charm... | Guido van Rossum | 2001-01-08 | 1 | -3/+3 |
|
|
* | 18 isn't a prime (duh). | Tim Peters | 2001-01-08 | 1 | -1/+1 |
|
|
* | Fiddled ms_getline_hack after talking w/ Guido: made clearer that the | Tim Peters | 2001-01-08 | 1 | -65/+67 |
|
|
* | MS Win32 .readline() speedup, as discussed on Python-Dev. This is a tricky | Tim Peters | 2001-01-07 | 3 | -15/+245 |
|
|
* | Tim noticed that I had botched get_line_raw(). Looking again, I | Guido van Rossum | 2001-01-07 | 1 | -47/+30 |
|
|
* | Add more regression tests, including for the import statement variations. | Fred Drake | 2001-01-07 | 2 | -10/+60 |
|
|
* | Fix problems with validation of import statement parse trees. | Fred Drake | 2001-01-07 | 1 | -5/+24 |
|
|
* | This patch adds a new feature to the builtin charmap codec: | Marc-André Lemburg | 2001-01-06 | 2 | -0/+66 |
|
|
* | This patch adds a new feature to the builtin charmap codec: | Marc-André Lemburg | 2001-01-06 | 1 | -8/+48 |
|
|
* | Added "repeat.py" -- repeatedly execute a shell command (like | Guido van Rossum | 2001-01-05 | 2 | -7/+64 |
|
|
* | Configuration test for working getc_unlocked() (and flockfile() and | Guido van Rossum | 2001-01-05 | 4 | -4/+64 |
|
|
* | Speed it up by using readlines(sizehint). It's still slower than | Guido van Rossum | 2001-01-05 | 1 | -10/+39 |
|
|
* | Restructured get_line() for clarity and speed. | Guido van Rossum | 2001-01-05 | 1 | -66/+59 |
|
|
* | Clarification of new bisect module functions. | Tim Peters | 2001-01-05 | 1 | -1/+2 |
|
|
* | Update explanation of the set_location() method to indicate that in | Fred Drake | 2001-01-05 | 1 | -1/+7 |
|
|
* | Add test cases based on RFC 1808. So now we actually have a test suite | Fred Drake | 2001-01-05 | 2 | -0/+106 |
|
|
* | urlunparse(): Do not add a leading slash to the path if it is empty. | Fred Drake | 2001-01-05 | 1 | -6/+12 |
|
|
* | Fix signed/unsigned wng. Unfortunately, (unsigned char) << int | Tim Peters | 2001-01-05 | 1 | -2/+2 |
|
|
* | When a PyCFunction that takes only positional parameters is called with | Fred Drake | 2001-01-04 | 3 | -19/+41 |
|
|
* | Recognize pyc files even if they don't end in pyc. | Martin v. Löwis | 2001-01-04 | 2 | -7/+41 |
|
|
* | Fix the bugfix for SF bug #127151 -- make sure we map "previous_page" to | Fred Drake | 2001-01-04 | 1 | -0/+7 |
|
|
* | __rcmp__() description: Changed to indicate that this is no longer | Fred Drake | 2001-01-04 | 1 | -8/+1 |
|
|
* | Based on comments from Guido, do not describe bisect() and insert() as | Fred Drake | 2001-01-04 | 1 | -5/+5 |
|
|
* | Markup nit: Command line options should be marked with \programopt. | Fred Drake | 2001-01-04 | 1 | -15/+17 |
|
|
* | Markup nit: Command line options should be marked with \programopt. | Fred Drake | 2001-01-04 | 1 | -2/+2 |
|
|
* | Fix typo spotted by Detlef Lannert <lannert@users.sourceforge.net>. | Fred Drake | 2001-01-04 | 1 | -1/+1 |
|
|
* | Added information about the interaction of opening a file in append mode | Fred Drake | 2001-01-04 | 1 | -1/+6 |
|
|
* | Markup nit: OK and ERR should be marked \constant in running text. | Fred Drake | 2001-01-04 | 1 | -3/+2 |
|
|
* | Update documentation to include the new functions, and use the more | Fred Drake | 2001-01-04 | 1 | -13/+40 |
|
|
* | Description of long(): A string parameter is no longer required to be | Fred Drake | 2001-01-04 | 1 | -1/+1 |
|
|