Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | markup corrections | Fred Drake | 2003-04-22 | 1 | -16/+16 |
| | |||||
* | - explain the start argument to sum() | Fred Drake | 2003-04-22 | 1 | -5/+6 |
| | | | | - various adjustments to sum() markup and explanation | ||||
* | Fix some markup nits. | Fred Drake | 2003-04-22 | 1 | -3/+5 |
| | |||||
* | Adding new built-in function sum, with docs and tests. | Alex Martelli | 2003-04-22 | 2 | -1/+12 |
| | |||||
* | - Changed shlex.split() method to have more useful and | Gustavo Niemeyer | 2003-04-20 | 1 | -6/+5 |
| | | | | meaningful parameters. | ||||
* | - Included examples documenting how the lastindex member of | Gustavo Niemeyer | 2003-04-20 | 1 | -5/+9 |
| | | | | match objects work. | ||||
* | Patch #553171: Add writeback parameter. Also add protocol parameter. | Martin v. Löwis | 2003-04-19 | 1 | -25/+65 |
| | |||||
* | - Several methods of nntplib.NNTP have grown an optional file argument | Guido van Rossum | 2003-04-19 | 1 | -8/+50 |
| | | | | | | which specifies a file where to divert the command's output (already supported by the body() method). (SF patch #720468) Thanks to Terry Carroll. | ||||
* | Mention the bz2 module | Andrew M. Kuchling | 2003-04-19 | 1 | -25/+30 |
| | | | | Various rewrites | ||||
* | Added some more documentation to as_string() to make it clear that | Barry Warsaw | 2003-04-18 | 1 | -0/+14 |
| | | | | | it's a convenience only. Give an example of what to do for more flexibility. | ||||
* | Change email address. | Martin v. Löwis | 2003-04-18 | 7 | -8/+8 |
| | |||||
* | Fix spelling of cedillas. | Martin v. Löwis | 2003-04-18 | 2 | -4/+4 |
| | |||||
* | Correct methoddesc environments. | Martin v. Löwis | 2003-04-18 | 1 | -2/+2 |
| | |||||
* | Add lib/libstringprep.tex lib/libdocxmlrpc.tex. | Martin v. Löwis | 2003-04-18 | 1 | -0/+2 |
| | |||||
* | Patch #536883: SimpleXMLRPCServer auto-docing subclass. | Martin v. Löwis | 2003-04-18 | 3 | -0/+114 |
| | |||||
* | - accepted (slightly) modified version of docs for the OptionGroup | Fred Drake | 2003-04-18 | 1 | -71/+108 |
| | | | | | | | | class; closes SF patch #697941 - use em-dashes intead of en-dashes - section references: use a "tie" between the word "section" and the section number, use quotation marks around section titles - other minor markup corrections/cleanups | ||||
* | Implement IDNA (Internationalized Domain Names in Applications). | Martin v. Löwis | 2003-04-18 | 4 | -1/+227 |
| | |||||
* | Use True in a few more places. | Neal Norwitz | 2003-04-17 | 1 | -1/+1 |
| | | | | Use isinstance(somestring, basestring) instead of type() as per PEP 8 | ||||
* | Oops, missed updating doc to correct version for split | Neal Norwitz | 2003-04-17 | 1 | -1/+1 |
| | |||||
* | Added documentation for the handle_pi() method, based on SF patch #662464. | Fred Drake | 2003-04-17 | 1 | -1/+15 |
| | | | | Closes SF bug #659188, patch #662464. | ||||
* | markup banalities | Fred Drake | 2003-04-17 | 1 | -18/+18 |
| | |||||
* | Implemented posix-mode parsing support in shlex.py, as dicussed in | Gustavo Niemeyer | 2003-04-17 | 1 | -23/+113 |
| | | | | mailing list, and in patch #722686. | ||||
* | As discussed on python-dev, revised docs to note that | Raymond Hettinger | 2003-04-16 | 1 | -1/+8 |
| | | | | | | | | PyObject_IsTrue() can have an error result. Also, added missing docs for PyObject_Not(). Will backport. | ||||
* | Add version info for name2codepoint and codepoint2name | Neal Norwitz | 2003-04-16 | 1 | -2/+2 |
| | |||||
* | Add two dictionaries to htmlentitydefs: name2codepoint maps | Walter Dörwald | 2003-04-16 | 1 | -3/+15 |
| | | | | | HTML entity names to Unicode codepoints (as integers). codepoint2name is the reverse mapping. From SF patch #722017. | ||||
* | - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() | Guido van Rossum | 2003-04-15 | 1 | -3/+6 |
| | | | | | | | | | | | | | | | | | | | even farther down, to just before the call to _PyObject_DebugMallocStats(). This required the following changes: - pystate.c, PyThreadState_GetDict(): changed not to raise an exception or issue a fatal error when no current thread state is available, but simply return NULL without raising an exception (ever). - object.c, Py_ReprEnter(): when PyThreadState_GetDict() returns NULL, don't raise an exception but return 0. This means that when printing a container that's recursive, printing will go on and on and on. But that shouldn't happen in the case we care about (see first bullet). - Updated Misc/NEWS and Doc/api/init.tex to reflect changes to PyThreadState_GetDict() definition. | ||||
* | - list.insert(i, x) now interprets negative i as it would be | Guido van Rossum | 2003-04-14 | 1 | -4/+5 |
| | | | | | | interpreted by slicing, so negative values count from the end of the list. This was the only place where such an interpretation was not placed on a list index. | ||||
* | Add a name | Andrew M. Kuchling | 2003-04-14 | 1 | -1/+2 |
| | |||||
* | Typo fix | Andrew M. Kuchling | 2003-04-14 | 1 | -1/+1 |
| | |||||
* | Mention timeit module | Andrew M. Kuchling | 2003-04-13 | 1 | -34/+54 |
| | | | | | | | | | | Fix error in description of logging package's 'propagate' Mention default arg to dict.pop() Link to more module docs (I wonder if I should adopt some convention such as linking the first mention of all new modules to the LibRef?) Various text changes Bump version number and Python version | ||||
* | Use simpler import | Andrew M. Kuchling | 2003-04-13 | 1 | -1/+1 |
| | |||||
* | Back out of setting the default charset to iso-8859-1. | Barry Warsaw | 2003-04-11 | 1 | -1/+1 |
| | |||||
* | Fix markup | Neal Norwitz | 2003-04-11 | 1 | -1/+1 |
| | |||||
* | From http://mail.python.org/pipermail/i18n-sig/2003-April/001557.html | Barry Warsaw | 2003-04-11 | 1 | -8/+28 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Expose NullTranslations and GNUTranslations to __all__ - Set the default charset to iso-8859-1. It used to be None, which would cause problems with .ugettext() if the file had no charset parameter. Arguably, the po/mo file would be broken, but I still think iso-8859-1 is a reasonable default. - Add a "coerce" default argument to GNUTranslations's constructor. The reason for this is that in Zope, we want all msgids and msgstrs to be Unicode. For the latter, we could use .ugettext() but there isn't currently a mechanism for Unicode-ifying msgids. The plan then is that the charset parameter specifies the encoding for both the msgids and msgstrs, and both are decoded to Unicode when read. For example, we might encode po files with utf-8. I think the GNU gettext tools don't care. Since this could potentially break code [*] that wants to use the encoded interface .gettext(), the constructor flag is added, defaulting to False. Most code I suspect will want to set this to True and use .ugettext(). - A few other minor changes from the Zope project, including asserting that a zero-length msgid must have a Project-ID-Version header for it to be counted as the metadata record. | ||||
* | Moved all the scripting stuff to a separate section, added all the | Jack Jansen | 2003-04-11 | 8 | -40/+397 |
| | | | | | missing bits (well, all the bits I could think of) and updated the rest. | ||||
* | Attempt to make all the various string *strip methods the same. | Neal Norwitz | 2003-04-10 | 1 | -0/+6 |
| | | | | | | | | | | | * Doc - add doc for when functions were added * UserString * string object methods * string module functions 'chars' is used for the last parameter everywhere. These changes will be backported, since part of the changes have already been made, but they were inconsistent. | ||||
* | Add a space after expression to be consistent | Neal Norwitz | 2003-04-10 | 1 | -1/+1 |
| | |||||
* | Minor markup adjustments. | Fred Drake | 2003-04-09 | 1 | -3/+2 |
| | |||||
* | Try to discourage use of PyObject_Type(). | Guido van Rossum | 2003-04-09 | 1 | -0/+5 |
| | |||||
* | Re-indent example; fix typo | Andrew M. Kuchling | 2003-04-09 | 1 | -4/+4 |
| | |||||
* | Created a minimal MacOSX section. | Jack Jansen | 2003-04-09 | 1 | -92/+176 |
| | |||||
* | Lots of small markup adjustments. | Fred Drake | 2003-04-09 | 2 | -113/+118 |
| | |||||
* | Add dependency information for the hotshot package docs. | Fred Drake | 2003-04-09 | 1 | -0/+1 |
| | |||||
* | extra punctuation removed | Anthony Baxter | 2003-04-09 | 1 | -1/+1 |
| | |||||
* | Add dependency information for the timeit module docs. | Fred Drake | 2003-04-09 | 1 | -0/+1 |
| | |||||
* | + libtimeit | Skip Montanaro | 2003-04-09 | 1 | -0/+1 |
| | |||||
* | doc for timeit module/script - mostly just a recast of Tim's docstring | Skip Montanaro | 2003-04-09 | 1 | -0/+184 |
| | |||||
* | Added example of using positional and keyword args with atexit.register(). | Fred Drake | 2003-04-08 | 1 | -0/+15 |
| | | | | Based on a suggestion from a reader. | ||||
* | Markup fix. | Fred Drake | 2003-04-08 | 1 | -2/+2 |
| | |||||
* | s/referrents/referents/g. Gotta love that referrers remains rife with rs. | Tim Peters | 2003-04-08 | 1 | -2/+2 |
| |