Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Delete the LaTeX doc tree. | Georg Brandl | 2007-08-15 | 1 | -452/+0 |
| | |||||
* | SF 1193128: Let str.translate(None) be an identity transformation | Raymond Hettinger | 2007-04-12 | 1 | -1/+2 |
| | |||||
* | RFE #1592899: mention string.maketrans() in docs for str.translate, | Georg Brandl | 2006-12-07 | 1 | -1/+1 |
| | | | | remove reference to the old regex module in the former's doc. | ||||
* | SF patch #1056967, changes the semantics of Template.safe_substitute() to not | Barry Warsaw | 2004-11-01 | 1 | -2/+10 |
| | | | | raise a ValueError for dangling delimiters (the delimiter itself is returned). | ||||
* | Update Template/PEP 292 documentation to current implementation. | Barry Warsaw | 2004-09-18 | 1 | -37/+70 |
| | |||||
* | Markup nits. | Raymond Hettinger | 2004-09-06 | 1 | -4/+6 |
| | |||||
* | Ah whoops, we didn't turn string into a package (thanks Neal!) | Barry Warsaw | 2004-08-25 | 1 | -12/+1 |
| | |||||
* | PEP 292 classes Template and SafeTemplate are added to the string module. | Barry Warsaw | 2004-08-25 | 1 | -28/+122 |
| | | | | | | | | This patch includes test cases and documentation updates, as well as NEWS file updates. This patch also updates the sre modules so that they don't import the string module, breaking direct circular imports. | ||||
* | Patch #993187: Make rstrip doc similar to lstrip. | Martin v. Löwis | 2004-07-19 | 1 | -1/+1 |
| | | | | Backported to 2.3. | ||||
* | Modified string.split documentation to reflect behaviour of splitting emtpy ↵ | Nicholas Bastin | 2004-03-21 | 1 | -0/+5 |
| | | | | string. Closes SF bug #811604 | ||||
* | fix truly evil markup typo | Fred Drake | 2003-12-30 | 1 | -1/+1 |
| | |||||
* | Update documentations for str.rsplit() with Alex Martelli's rewrite. | Hye-Shik Chang | 2003-12-17 | 1 | -13/+8 |
| | |||||
* | Add rsplit method for str and unicode builtin types. | Hye-Shik Chang | 2003-12-15 | 1 | -0/+17 |
| | | | | | SF feature request #801847. Original patch is written by Sean Reifschneider. | ||||
* | Patch #843088: Fix typos. Backported to 2.3. | Martin v. Löwis | 2003-11-18 | 1 | -2/+2 |
| | |||||
* | Discussion of signatures for unicode.translate() and str.translate() | Raymond Hettinger | 2003-07-16 | 1 | -10/+0 |
| | | | | | were in the wrong file. Moved out of libstring.tex and into libstdtypes.tex. | ||||
* | SF bug #706546: u''.translate not documented | Raymond Hettinger | 2003-07-13 | 1 | -1/+11 |
| | | | | | Clarified the difference between translate methods for string objects and Unicode objects. | ||||
* | Oops, missed updating doc to correct version for split | Neal Norwitz | 2003-04-17 | 1 | -1/+1 |
| | |||||
* | 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. | ||||
* | Fix typo reported by Paul Clifford. | Fred Drake | 2002-09-12 | 1 | -1/+3 |
| | | | | Note that there is no str.joinfields(), use str.join() instead. | ||||
* | Make the docs for string.capitalize() match those of str.capitalize() | Fred Drake | 2002-06-20 | 1 | -1/+1 |
| | | | | | (which makes it more clear). Closes SF bug #571767. | ||||
* | Apply patch diff.txt from SF feature request | Walter Dörwald | 2002-04-22 | 1 | -7/+18 |
| | | | | | | | | | http://www.python.org/sf/444708 This adds the optional argument for str.strip to unicode.strip too and makes it possible to call str.strip with a unicode argument and unicode.strip with a str argument. | ||||
* | Use the \note and \warning macros where appropriate. | Fred Drake | 2001-10-20 | 1 | -4/+4 |
| | |||||
* | Added the constants ascii_letters, ascii_lowercase, and ascii_uppercase | Fred Drake | 2001-07-20 | 1 | -3/+25 |
| | | | | | to the string module. This was determined to be the right approach in SF bug #226706. | ||||
* | Remove all mentions of the strop module -- it has been pronounced Evil. | Fred Drake | 2001-05-10 | 1 | -9/+0 |
| | | | | | | (The string "strop" is found in the rexec documentation, but that should not be changed until strop is actually removed or rexec no longer allows it.) | ||||
* | Fix doubled word | Andrew M. Kuchling | 2000-12-26 | 1 | -1/+1 |
| | |||||
* | Added deprecation notices to atof(), atoi(), and atol(), recommending | Fred Drake | 2000-10-04 | 1 | -1/+4 |
| | | | | | | use of the float(), int(), and long() built-ins instead. Fixed minor markup nit elsewhere (use of \optional). | ||||
* | Fixed a number of small problems reported by Detlef Lannert | Fred Drake | 2000-09-21 | 1 | -6/+5 |
| | | | | <lannert@uni-duesseldorf.de>. | ||||
* | Document the "printable" and "punctuation" constants added to the string | Fred Drake | 2000-09-18 | 1 | -0/+11 |
| | | | | module. | ||||
* | Add a reference to the material on string methods. | Fred Drake | 2000-09-09 | 1 | -1/+4 |
| | |||||
* | Minor grammatical fix | Andrew M. Kuchling | 2000-06-21 | 1 | -1/+1 |
| | |||||
* | 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. | ||||
* | Typo reported by Gerry Wiener <wiener@rap.ucar.edu>: | Fred Drake | 1999-05-27 | 1 | -1/+1 |
| | | | | | | | items -> item The returned list will then have one more items than the number of non-overlapping occurrences of the separator in the string. | ||||
* | Make internal module references hyperlinks wherever it makes sense. | Fred Drake | 1999-04-22 | 1 | -3/+3 |
| | |||||
* | Add notes to __builtin__.float() and string.atof() that the NaN and Inf | Fred Drake | 1999-02-18 | 1 | -5/+9 |
| | | | | results are possible but non-portable. | ||||
* | atof() description: Add information about accepting 'NaN' to produce | Fred Drake | 1999-02-18 | 1 | -3/+5 |
| | | | | the NaN value. | ||||
* | Document the default for tabsize in expandtabs(). | Guido van Rossum | 1999-01-25 | 1 | -2/+2 |
| | |||||
* | Clarify descriptions of some operations; it's not always clear that | Fred Drake | 1998-12-21 | 1 | -103/+107 |
| | | | | | strings are not actually modified. Problem reported by Dr. Peter Stoehr <peter.stoehr@weihenstephan.org>. | ||||
* | New section header style. | Fred Drake | 1998-08-10 | 1 | -1/+2 |
| | | | | Fix up a few synopses. | ||||
* | Adjusted to use the new module synopsis support macros. | Fred Drake | 1998-07-23 | 1 | -2/+4 |
| | |||||
* | Add warning about use of lowercase/uppercase with maketrans(). | Guido van Rossum | 1998-06-11 | 1 | -0/+5 |
| | |||||
* | Caught a few more spurious \setindexsubitem macros.... | Fred Drake | 1998-04-07 | 1 | -1/+0 |
| | |||||
* | Remove all uses of \sectcode; we can now use logical markup everywhere. | Fred Drake | 1998-04-04 | 1 | -1/+1 |
| | |||||
* | Remove obsolete lines like this: | Fred Drake | 1998-04-04 | 1 | -1/+0 |
| | | | | | | | | \setindexsubitem{(in module frobnitz)} These are no longer needed when present before any other \setindexsubitem{} in the module section. The indexsubitem is now set by \bimodindex and \stmodindex. | ||||
* | Change "\," to just "," in function signatures. This is easier to maintain, | Fred Drake | 1998-03-17 | 1 | -67/+68 |
| | | | | | works better with LaTeX2HTML, and allows some simplification of the python.sty macros. | ||||
* | Remove all \bcode / \ecode cruft; this is no longer needed. See previous | Fred Drake | 1998-02-13 | 1 | -2/+2 |
| | | | | | | | | | checkin of myformat.sty. Change "\renewcommand{\indexsubitem}{(...)}" to "\setindexsubitem{(...)}" everywhere. Some other minor nits that I happened to come across. | ||||
* | Clarify that capwords() removes leading/trailing whitespace. | Guido van Rossum | 1998-02-02 | 1 | -5/+1 |
| | | | | Remove references to regsub, which is obsolescent. | ||||
* | Fixed index module reference. | Fred Drake | 1997-12-16 | 1 | -4/+4 |
| | | | | Changed references to regex/regsub modules to point to re. | ||||
* | count() now has a 4th parameter too. Also rephrased the docs for find | Guido van Rossum | 1997-10-20 | 1 | -12/+9 |
| | | | | to use the same, better words to explain start/end. | ||||
* | AMK's megapatch: | Guido van Rossum | 1997-07-17 | 1 | -0/+1 |
| | | | | | | | * \bcode, \ecode added everywhere * \label{module-foo} added everywhere * A few \seealso sections added. * Indentation fixed inside verbatim in lib*tex files | ||||
* | Grammar (AMK). | Guido van Rossum | 1997-06-02 | 1 | -1/+1 |
| |