Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #957003: Implement smtplib.LMTP. | Martin v. Löwis | 2007-03-09 | 1 | -0/+17 |
| | |||||
* | Introduce test.test_support.TransientResource. It's a context manager to | Brett Cannon | 2007-03-08 | 1 | -0/+8 |
| | | | | | | | | | | | surround calls to resources that may or may not be available. Specifying the expected exception and attributes to be raised if the resource is not available prevents overly broad catching of exceptions. This is meant to help suppress spurious failures by raising test.test_support.ResourceDenied if the exception matches. It would probably be good to go through the various network tests and surround the calls to catch connection timeouts (as done with test_socket_ssl in this commit). | ||||
* | Fix #1676656: \em is different from \emph... | Georg Brandl | 2007-03-08 | 1 | -1/+1 |
| | |||||
* | Add missing ) in parenthical remark. | Martin v. Löwis | 2007-03-08 | 1 | -1/+1 |
| | |||||
* | Bug #1115886: os.path.splitext('.cshrc') gives now ('.cshrc', ''). | Martin v. Löwis | 2007-03-07 | 1 | -1/+6 |
| | |||||
* | Patch #1669331: clarify shutil.copyfileobj() behavior wrt. file position. | Georg Brandl | 2007-03-07 | 1 | -1/+3 |
| | |||||
* | Patch #787789: allow to pass custom TestRunner instances to unittest's | Georg Brandl | 2007-03-07 | 1 | -1/+5 |
| | | | | main() function. | ||||
* | add versionadded info | George Yoshida | 2007-03-07 | 1 | -0/+2 |
| | |||||
* | Patch #1602128: clarify that richcmp methods can return NotImplemented | Georg Brandl | 2007-03-06 | 1 | -7/+9 |
| | | | | and should return True or False otherwise. | ||||
* | Patch #912410: Replace HTML entity references for attribute values | Martin v. Löwis | 2007-03-06 | 1 | -7/+11 |
| | | | | in HTMLParser. | ||||
* | Patch #1663234: you can now run doctest on test files and modules | Georg Brandl | 2007-03-06 | 1 | -0/+25 |
| | | | | using "python -m doctest [-v] filename ...". | ||||
* | Patch #1121142: Implement ZipFile.open. | Martin v. Löwis | 2007-03-06 | 1 | -0/+26 |
| | |||||
* | Patch #1671450: add a section about subclassing builtin types to the | Georg Brandl | 2007-03-06 | 2 | -1/+187 |
| | | | | "extending and embedding" tutorial. | ||||
* | Nit: a struct field is set to GenericAlloc, not GenericAlloc(). | Georg Brandl | 2007-03-06 | 1 | -1/+1 |
| | |||||
* | Bugs #1668032, #1668036, #1669304: clarify behavior of PyMem_Realloc and ↵ | Georg Brandl | 2007-03-02 | 1 | -2/+5 |
| | | | | _Resize. | ||||
* | Add NamedTuple | Andrew M. Kuchling | 2007-03-01 | 1 | -0/+16 |
| | |||||
* | Add collections.NamedTuple | Raymond Hettinger | 2007-03-01 | 1 | -2/+51 |
| | |||||
* | Add some items | Andrew M. Kuchling | 2007-02-26 | 1 | -2/+48 |
| | |||||
* | Markup fix | Andrew M. Kuchling | 2007-02-26 | 1 | -2/+2 |
| | |||||
* | Do not copy free variables to locals in class namespaces. | Jeremy Hylton | 2007-02-26 | 1 | -0/+5 |
| | | | | | | | | | Fixes bug 1569356, but at the cost of a minor incompatibility in locals(). Add test that verifies that the class namespace is not polluted. Also clarify the behavior in the library docs. Along the way, cleaned up the dict_to_map and map_to_dict implementations and added some comments that explain what they do. | ||||
* | - SF patch #1657613: add documentation for the Element interface | Fred Drake | 2007-02-25 | 1 | -93/+163 |
| | | | | - clean up bogus use of the {datadescni} environment everywhere | ||||
* | Add itertools.izip_longest(). | Raymond Hettinger | 2007-02-21 | 1 | -0/+27 |
| | |||||
* | Fixup docstrings for merge(). | Raymond Hettinger | 2007-02-19 | 1 | -2/+2 |
| | |||||
* | Patch #1490190: posixmodule now includes os.chflags() and os.lchflags() | Martin v. Löwis | 2007-02-19 | 2 | -2/+29 |
| | | | | functions on platforms where the underlying system calls are available. | ||||
* | Provide an example of defaultdict with non-zero constant factory function. | Raymond Hettinger | 2007-02-19 | 1 | -8/+12 |
| | |||||
* | Add merge() function to heapq. | Raymond Hettinger | 2007-02-19 | 1 | -2/+13 |
| | |||||
* | Add missing \versionadded. | Georg Brandl | 2007-02-15 | 1 | -0/+4 |
| | |||||
* | Patch #1494140: Add documentation for the new struct.Struct object. | Georg Brandl | 2007-02-15 | 1 | -0/+55 |
| | |||||
* | Make functools.wraps() docs a bit clearer. | Georg Brandl | 2007-02-15 | 1 | -6/+11 |
| | |||||
* | Bug #1658794: Remove extraneous 'this'. | Martin v. Löwis | 2007-02-13 | 1 | -1/+1 |
| | | | | Will backport to 2.5. | ||||
* | Patch #1517891: Make 'a' create the file if it doesn't exist. | Martin v. Löwis | 2007-02-13 | 1 | -0/+5 |
| | | | | Fixes #1514451. | ||||
* | Patch #698833: Support file decryption in zipfile. | Martin v. Löwis | 2007-02-13 | 1 | -4/+15 |
| | |||||
* | Bug #1656581: Point out that external file objects are supposed to be | Lars Gustäbel | 2007-02-12 | 1 | -2/+3 |
| | | | | at position 0. | ||||
* | Bug #1656078: typo in in profile docs. | Georg Brandl | 2007-02-09 | 1 | -1/+1 |
| | |||||
* | Update broken link. Will backport to 2.5. | Martin v. Löwis | 2007-02-09 | 1 | -1/+1 |
| | |||||
* | SF: 1397711 Set docs conflated immutable and hashable | Raymond Hettinger | 2007-02-07 | 1 | -1/+1 |
| | |||||
* | Patch #1652681: create nonexistent files in append mode and | Lars Gustäbel | 2007-02-06 | 1 | -1/+2 |
| | | | | allow appending to empty files. | ||||
* | No more raising of string exceptions! | Brett Cannon | 2007-01-30 | 2 | -20/+0 |
| | | | | | | | The next step of PEP 352 (for 2.6) causes raising a string exception to trigger a TypeError. Trying to catch a string exception raises a DeprecationWarning. References to string exceptions has been removed from the docs since they are now just an error. | ||||
* | Bug #1648191: typo in docs. | Georg Brandl | 2007-01-30 | 1 | -1/+1 |
| | |||||
* | More edits | Andrew M. Kuchling | 2007-01-29 | 1 | -27/+27 |
| | |||||
* | Various minor edits | Andrew M. Kuchling | 2007-01-29 | 3 | -60/+74 |
| | |||||
* | Minor edits to the curses HOWTO | Andrew M. Kuchling | 2007-01-29 | 2 | -28/+29 |
| | |||||
* | fix typo (extraneous ")") | Fred Drake | 2007-01-26 | 1 | -1/+1 |
| | |||||
* | Add item | Andrew M. Kuchling | 2007-01-25 | 1 | -0/+6 |
| | |||||
* | Strengthen warning about using lock() | Andrew M. Kuchling | 2007-01-24 | 1 | -8/+12 |
| | |||||
* | Patch #1610575: Add support for _Bool to struct. | Martin v. Löwis | 2007-01-21 | 1 | -2/+15 |
| | |||||
* | SF# 1635892: Fix docs for betavariate's input parameters . | Raymond Hettinger | 2007-01-19 | 1 | -1/+1 |
| | |||||
* | SF #1635217, Fix unbalanced paren | Neal Norwitz | 2007-01-19 | 1 | -1/+1 |
| | |||||
* | add missing version entry | Fred Drake | 2007-01-18 | 1 | -0/+1 |
| | |||||
* | Bug #1629125: fix wrong data type (int -> Py_ssize_t) in PyDict_Next docs. | Georg Brandl | 2007-01-17 | 1 | -2/+2 |
| |