Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | When refering to Unicode characters in exception messages and | Fred Drake | 2000-04-13 | 1 | -5/+5 |
| | | | | | docstrings, the documentation guidelines call for "Unicode", not "unicode". Comply. | ||||
* | raise TypeError when bad argument passed to cStringIO.StringIO | Jeremy Hylton | 2000-04-12 | 1 | -4/+10 |
| | |||||
* | ord: provide better error messages | Jeremy Hylton | 2000-04-12 | 1 | -8/+19 |
| | |||||
* | Added note about usual default prefix under Linux (thanks to Peter Funk | Greg Ward | 2000-04-12 | 1 | -4/+9 |
| | | | | for the idea). | ||||
* | Trying to placate Fred: redefine \tilde and \bslash; document everything. | Greg Ward | 2000-04-12 | 1 | -9/+23 |
| | | | | Still some not-quite-standard definitions in here that I have to fix. | ||||
* | Changed the table of per-platform default installation locations to be | Greg Ward | 2000-04-12 | 1 | -21/+32 |
| | | | | more consistent with the rest of the Python docs. | ||||
* | Make use of \longprogramopt where appropriate. | Fred Drake | 2000-04-11 | 2 | -3/+3 |
| | |||||
* | Elaborate descriptions of \e, \module. | Fred Drake | 2000-04-11 | 1 | -2/+11 |
| | | | | Describe policy on vertical lines in tables. | ||||
* | Revise the description of \programopt, document \longprogramopt. | Fred Drake | 2000-04-11 | 1 | -2/+10 |
| | |||||
* | \longprogramopt: New macro. | Fred Drake | 2000-04-11 | 1 | -0/+2 |
| | |||||
* | do_cmd_longprogramopt(): New function. | Fred Drake | 2000-04-11 | 1 | -0/+3 |
| | |||||
* | This commit was manufactured by cvs2svn to create tag 'r16a2'.v1.6a2 | cvs2svn | 2000-04-11 | 1 | -0/+1 |
| | |||||
* | Add weasel-words about versioning, so I don't have to check in a new | Guido van Rossum | 2000-04-11 | 1 | -2/+6 |
| | | | | README for each new alpha release. | ||||
* | Deleted trailing whitespace. This is really a way to be able to add | Guido van Rossum | 2000-04-11 | 1 | -14/+14 |
| | | | | | | | | | a missing part of the previous checkin message: Marc-Andre Lemburg: Added encoding name attributes to wrapper classes which allow applications to check the used encoding names. | ||||
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-04-11 | 1 | -1/+1 |
| | | | | | | | Changed PyUnicode_Splitlines() maxsplit argument to keepends. The maxsplit functionality was replaced by the keepends functionality which allows keeping the line end markers together with the string. | ||||
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-04-11 | 1 | -11/+14 |
| | | | | | | | | | The maxsplit functionality in .splitlines() was replaced by the keepends functionality which allows keeping the line end markers together with the string. Added support for '%r' % obj: this inserts repr(obj) rather than str(obj). | ||||
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-04-11 | 1 | -2/+6 |
| | | | | | Added a few missing whitespace Unicode char mappings. Thanks to Brian Hooper. | ||||
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-04-11 | 2 | -14/+14 |
| | | | | | | The maxsplit functionality in .splitlines() was replaced by the keepends functionality which allows keeping the line end markers together with the string. | ||||
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-04-11 | 1 | -4/+17 |
| | | | | | | | Added special case to unicode(): when being passed a Unicode object as first argument, return the object as-is. Raises an exception when given a Unicode object *and* an encoding name. | ||||
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-04-11 | 1 | -23/+119 |
| | | | | | Added .writelines(), .readlines() and .readline() to all codec classes. | ||||
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-04-11 | 1 | -2/+1 |
| | | | | | Modified .splitlines() tests according to the changes in stringobject.c. | ||||
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-04-11 | 1 | -2/+1 |
| | | | | | Modified .splitlines() tests according to the changes in unicodeobject.c. | ||||
* | Two more items. | Guido van Rossum | 2000-04-11 | 1 | -0/+5 |
| | |||||
* | LaTeX macros for the Distutils manuals. | Greg Ward | 2000-04-11 | 1 | -0/+26 |
| | | | | Perhaps these should be added to the standard Python style file? | ||||
* | Spewed a bunch more verbiage. | Greg Ward | 2000-04-11 | 1 | -87/+179 |
| | | | | Lots of scattered wording changes. | ||||
* | Correct fix by Mark Favas for the cast problems. | Guido van Rossum | 2000-04-10 | 1 | -4/+5 |
| | |||||
* | I've had complaints about the comparison "where >= 0" before -- on | Guido van Rossum | 2000-04-10 | 1 | -1/+1 |
| | | | | IRIX, it doesn't even compile. Added a cast: "where >= (char *)0". | ||||
* | Version 1.3 of the Python Unicode Integration proposal. | Guido van Rossum | 2000-04-10 | 1 | -3/+4 |
| | |||||
* | Added reference count information for Py_FindMethod(). | Fred Drake | 2000-04-10 | 1 | -0/+5 |
| | |||||
* | Install the docs (with fewer rules). | Guido van Rossum | 2000-04-10 | 1 | -54/+14 |
| | | | | Add descriptions for the system variables. | ||||
* | Bunch of new names, mostly from patches and bugs mailing lists | Guido van Rossum | 2000-04-10 | 1 | -1/+13 |
| | | | | | (everyone who said something remotely useful in the last 100 messages I archived has been added :-). | ||||
* | Yet another markup nit: functions that are part of the Python/C API | Fred Drake | 2000-04-10 | 1 | -3/+5 |
| | | | | are still C functions, and should be marked. | ||||
* | PyErr_Format(): | Fred Drake | 2000-04-10 | 1 | -1/+0 |
| | | | | | Remove statement that the return value is always NULL; this is generated by the formatting. | ||||
* | document PyErr_Format | Jeremy Hylton | 2000-04-10 | 2 | -0/+16 |
| | |||||
* | letters: | Fred Drake | 2000-04-10 | 1 | -4/+4 |
| | | | | | | | | Fix description; lowercase and uppercase are strings, not functions! Noted by Randall Hopper <aa8vb@yahoo.com>. maketrans(): Minor markup nits in description. | ||||
* | Add to the comment a description of the "null" value for returned | Fred Drake | 2000-04-10 | 1 | -1/+4 |
| | | | | PyObject* values. | ||||
* | load_refcounts(), | Fred Drake | 2000-04-10 | 1 | -1/+5 |
| | | | | | do_env_cfuncdesc(): Support the "null" value for the refcounts field in refcounts.dat. | ||||
* | The reference count field for PyErr_NoMemory() and | Fred Drake | 2000-04-10 | 1 | -2/+2 |
| | | | | PyErr_SetFromErrno() should be "null". | ||||
* | If the refcount field is "null", that's ok; the value will be None. | Fred Drake | 2000-04-10 | 1 | -1/+3 |
| | |||||
* | For functions which return a PyObject* but use "null" for the | Fred Drake | 2000-04-10 | 1 | -1/+5 |
| | | | | | | reference count field, state that the return value is always NULL. (Useful for some PyErr_*() flavors.) | ||||
* | cfuncdesc environment: | Fred Drake | 2000-04-10 | 1 | -1/+1 |
| | | | | | When processing the optional parameter, don't append any text; let the pre-processor supply all of it. | ||||
* | Added project dependencies -- Mark is right, these are needed. | Guido van Rossum | 2000-04-10 | 1 | -0/+39 |
| | |||||
* | Strangely, we *do* need to define ZLIB_DLL. | Guido van Rossum | 2000-04-10 | 1 | -2/+2 |
| | | | | | Do it in the project file rather than in the source, so it's easier for Mark to change. | ||||
* | do_cmd_datalineni(): New function, to implement the non-indexing form | Fred Drake | 2000-04-10 | 1 | -0/+6 |
| | | | | of \dataline. | ||||
* | Christian Tismer: added test to ensure that multiplication commutes. | Guido van Rossum | 2000-04-10 | 1 | -0/+2 |
| | | | | | | [The test is in a slightly odd place, in test_division_2; but it exercises the recent change to long_mult(), and that's all we really ask for. --GvR] | ||||
* | Simple optimization by Christian Tismer, who gives credit to Lenny | Guido van Rossum | 2000-04-10 | 1 | -0/+9 |
| | | | | | Kneler for reporting this issue: long_mult() is faster when the smaller argument is on the left. Swap the arguments accordingly. | ||||
* | Implement suggestion from Lawrence Kesteloot in PR#280, to change the | Guido van Rossum | 2000-04-10 | 1 | -6/+7 |
| | | | | | | | | | | | | | | | default list of files from () to None, and explicitly test for None before defaulting to sys.argv[1:]. This means that if you pass in an explicit empty list, it will read stdin instead of defaulting to sys.argv[1:]. This fixes a buglet in the test script (when called with options but without files, it chokes when it tries to interpret the options as files). Lawrence adds: "I suspect that this is a safe change, because I can't imagine someone actively passing in an empty list when they want sys.argv used." I agree. | ||||
* | Fredrik Lundh: new snapshot. Mostly reindented. | Guido van Rossum | 2000-04-10 | 3 | -485/+490 |
| | | | | | This one should work with unicode expressions, and compile a bit more silently. | ||||
* | Removed CRLF line endings. | Guido van Rossum | 2000-04-10 | 0 | -0/+0 |
| | |||||
* | Remove CRLF line endings. | Guido van Rossum | 2000-04-10 | 1 | -2/+2 |
| | | | | Fredrik Lundh: add two missing casts. |