Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Changed some ValueError's to KeyError and IndexError. | Eric Smith | 2007-09-04 | 3 | -25/+31 |
| | | | | | | | | | Corrected code for invalid conversion specifier. Added tests to verify. Modified string.Formatter to correctly expand format_spec's, and added a limit to recursion depth. Added _vformat() method to support both of these. | ||||
* | fix typo | Fred Drake | 2007-09-04 | 1 | -1/+1 |
| | |||||
* | Add a dict view usage example. | Georg Brandl | 2007-09-04 | 1 | -0/+30 |
| | |||||
* | Change docs for builtins that now return iterators. | Georg Brandl | 2007-09-04 | 1 | -33/+39 |
| | |||||
* | Docs on dictviews. | Georg Brandl | 2007-09-04 | 1 | -44/+91 |
| | |||||
* | remove/update many of the references to dict.iter*() | Fred Drake | 2007-09-04 | 5 | -44/+28 |
| | |||||
* | Correction an issue reported by Mark Summerfeld. | Guido van Rossum | 2007-09-04 | 1 | -2/+2 |
| | |||||
* | More abc docs. | Georg Brandl | 2007-09-04 | 2 | -40/+56 |
| | |||||
* | Make the _wrap_close type (which is returned by os.popen) iterable. | Thomas Heller | 2007-09-04 | 1 | -0/+2 |
| | | | | This should fix the Lib\test\test_uuid.py test on Windows. | ||||
* | Convert code from sys.stdin.encoding to UTF-8 in | Martin v. Löwis | 2007-09-04 | 7 | -16/+70 |
| | | | | interactive mode. Fixes #1100. | ||||
* | Update ref docs on slicing. | Thomas Wouters | 2007-09-04 | 1 | -30/+13 |
| | |||||
* | Initial documentation for the `abc` module. | Georg Brandl | 2007-09-04 | 2 | -0/+143 |
| | |||||
* | Fix the string formatting docs for now; if the feature is changed again, the ↵ | Georg Brandl | 2007-09-04 | 1 | -2/+1 |
| | | | | docs can be changed too. | ||||
* | Fix up the types module docs. | Georg Brandl | 2007-09-04 | 1 | -57/+17 |
| | |||||
* | Convert all print statements in the docs. | Georg Brandl | 2007-09-04 | 71 | -388/+351 |
| | |||||
* | Add "print" command to pdb, "print s" previously invoked the print statement. | Georg Brandl | 2007-09-04 | 2 | -10/+7 |
| | |||||
* | Doc update for __xslice__ removal. | Georg Brandl | 2007-09-04 | 4 | -147/+57 |
| | |||||
* | Decode input() with stdin.encoding. Fixes #1097. | Martin v. Löwis | 2007-09-04 | 1 | -2/+17 |
| | |||||
* | CVS -> Subversion | Skip Montanaro | 2007-09-04 | 1 | -1/+1 |
| | |||||
* | I always think of the language when I see "ABC". Emphasize the meaning of | Skip Montanaro | 2007-09-04 | 1 | -1/+1 |
| | | | | the acronym. | ||||
* | Fix sinple typo. | Guido van Rossum | 2007-09-04 | 1 | -1/+1 |
| | |||||
* | - Add support for linking the bsddb module against BerkeleyDB 4.6.x. | Matthias Klose | 2007-09-03 | 1 | -3/+3 |
| | |||||
* | fix test, use bytes not unicode and let the test raise its internal exception | Gregory P. Smith | 2007-09-03 | 1 | -5/+5 |
| | | | | | rather than just complaining about stderr not being what we expected masking the true problem. | ||||
* | regenerated | Gregory P. Smith | 2007-09-03 | 1 | -2/+3 |
| | |||||
* | test for strlcpy (so i can use it in _bsddb.c) | Gregory P. Smith | 2007-09-03 | 2 | -1/+4 |
| | |||||
* | Fix segfault discovered by Ron Adam. Not checking for terminating right ↵ | Eric Smith | 2007-09-03 | 2 | -4/+12 |
| | | | | bracket in "'{0[}'.format(())". Fixed, and tests added. | ||||
* | Patch #1076: Use wide API for registry functions. | Martin v. Löwis | 2007-09-03 | 2 | -182/+128 |
| | |||||
* | Patch #1075: Use wide API to format error messages. | Martin v. Löwis | 2007-09-03 | 1 | -32/+57 |
| | |||||
* | Fix Mac build, patch #1091 by Humberto Diogenes. | Georg Brandl | 2007-09-03 | 8 | -16/+18 |
| | |||||
* | Tutorial formatting patch by Robin Stocker. | Georg Brandl | 2007-09-03 | 7 | -19/+20 |
| | |||||
* | Removed used_args param from string.Formatter.get_field. It was left in by ↵ | Eric Smith | 2007-09-02 | 2 | -5/+3 |
| | | | | mistake from an earlier edit. | ||||
* | Partial py3k-ification of Doc/library/: convert has_key references into ↵ | Collin Winter | 2007-09-01 | 31 | -86/+80 |
| | | | | either 'k in d' or __contains__; normalize raise statements; convert print statements into print function calls. | ||||
* | Run 2to3's fix_has_key over distutils. | Collin Winter | 2007-09-01 | 3 | -4/+4 |
| | |||||
* | Run 2to3's fix_has_key over Lib/plat-os2emx/. | Collin Winter | 2007-09-01 | 2 | -11/+11 |
| | |||||
* | Fix refleaks in test_with caused by reusing the same exception instance over ↵ | Collin Winter | 2007-09-01 | 1 | -2/+4 |
| | | | | and over. | ||||
* | Fix a poorly-translated raise statement in contextlib. | Collin Winter | 2007-09-01 | 1 | -1/+2 |
| | |||||
* | Fix refleaks exposed by test_raise. | Collin Winter | 2007-09-01 | 3 | -3/+31 |
| | |||||
* | Saving a file containing unicode failed. | Kurt B. Kaiser | 2007-09-01 | 1 | -14/+11 |
| | |||||
* | I'm not actually an author | Andrew M. Kuchling | 2007-09-01 | 1 | -1/+1 |
| | |||||
* | Document PyCFunctionWithKeywords, add comment for PEP 3123. | Georg Brandl | 2007-09-01 | 1 | -1/+10 |
| | |||||
* | Document sets' "<" and ">" operations. | Georg Brandl | 2007-09-01 | 1 | -0/+10 |
| | |||||
* | Use symbolic name for METH_VARARGS. | Georg Brandl | 2007-09-01 | 1 | -14/+14 |
| | |||||
* | Use symbolic name for METH_VARAGS. | Georg Brandl | 2007-09-01 | 1 | -1/+1 |
| | |||||
* | Get rid of METH_OLDARGS. | Georg Brandl | 2007-09-01 | 3 | -24/+5 |
| | |||||
* | Get rid of the remaining versionadded/versionchanged directives. | Georg Brandl | 2007-09-01 | 161 | -2197/+335 |
| | |||||
* | Remove versionadded/versionchanged in the reference. | Georg Brandl | 2007-09-01 | 3 | -57/+5 |
| | |||||
* | Remove versionadded and versionchanged directives, fold information into ↵ | Georg Brandl | 2007-09-01 | 7 | -442/+41 |
| | | | | text where necessary. | ||||
* | Add a warning text about mixing bytes and strings. | Georg Brandl | 2007-09-01 | 1 | -0/+6 |
| | |||||
* | Changed to use 'U' argument to PyArg_ParseTuple, instead of manually ↵ | Eric Smith | 2007-09-01 | 6 | -21/+16 |
| | | | | checking for unicode objects. | ||||
* | Fix RST link. | Georg Brandl | 2007-09-01 | 1 | -1/+1 |
| |