Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Try backing out 54407 to see if it corrects the problems on the Windows | Neal Norwitz | 2007-03-20 | 1 | -12/+10 |
| | | | | | buildbots. This rev was backported, so we will need to keep both branches in sync, pending the outcome of the test after this checkin. | ||||
* | Add a comment about 3k migration | Neal Norwitz | 2007-03-20 | 1 | -0/+3 |
| | |||||
* | Add some doc that was left out from some change to platform.py | Neal Norwitz | 2007-03-20 | 1 | -0/+17 |
| | |||||
* | Patch #1630118: add a SpooledTemporaryFile class to tempfile. | Collin Winter | 2007-03-19 | 1 | -0/+17 |
| | |||||
* | Patch #1682878: the new socket methods are recv_into and recvfrom_into, not ↵ | Georg Brandl | 2007-03-18 | 2 | -2/+4 |
| | | | | *_buf. | ||||
* | Patch #1675423: PyComplex_AsCComplex() now tries to convert an object | Georg Brandl | 2007-03-17 | 2 | -4/+16 |
| | | | | | | | to complex using its __complex__() method before falling back to the __float__() method. Therefore, the functions in the cmath module now can operate on objects that define a __complex__() method. (backport) | ||||
* | Patch 1339796: add a relpath() function to os.path. | Collin Winter | 2007-03-16 | 1 | -0/+9 |
| | |||||
* | Whitespace cleanup. Also remove the empty lines | Žiga Seilnacht | 2007-03-16 | 1 | -41/+38 |
| | | | | from the previous check in. | ||||
* | Patch #1623563: allow __class__ assignment for classes with __slots__. | Žiga Seilnacht | 2007-03-16 | 1 | -0/+8 |
| | | | | | The old and the new class are still required to have the same slot names, but the order in which they are specified is not relevant. | ||||
* | RFE #1670167: fix in isinstance() docs. | Georg Brandl | 2007-03-16 | 1 | -2/+3 |
| | |||||
* | Add \versionadded tag. | Georg Brandl | 2007-03-16 | 1 | -0/+2 |
| | |||||
* | Patch #1273829: os.walk() now has a "followlinks" parameter. If set to | Georg Brandl | 2007-03-16 | 1 | -10/+12 |
| | | | | | True (which is not the default), it visits symlinks pointing to directories. | ||||
* | Patch #1680978: consistently use "alive" instead of "active" in the | Georg Brandl | 2007-03-15 | 1 | -24/+20 |
| | | | | thread lib doc. | ||||
* | Its time to stop listing (Unix, Windows) when we really mean "everything but ↵ | Gregory P. Smith | 2007-03-14 | 3 | -3/+0 |
| | | | | | | | | Mac OS 9" now that nobody is likely to use Python on Mac OS 9 and most of the (Mac) platform items are all OS X special API specific since OS X is unixy enough for these modules to be available out of the box. | ||||
* | correct order and names of the less often used keyword parameters. | Gregory P. Smith | 2007-03-14 | 1 | -4/+4 |
| | |||||
* | Patch #957650: "%var%" environment variable references are now properly | Georg Brandl | 2007-03-13 | 1 | -6/+11 |
| | | | | | expanded in ntpath.expandvars(), also "~user" home directory references are recognized and handled on Windows. | ||||
* | Deprecate commands.getstatus(). | Georg Brandl | 2007-03-13 | 1 | -0/+4 |
| | |||||
* | Patch #1393667: pdb now has a "run" command which restarts the debugged | Georg Brandl | 2007-03-13 | 1 | -0/+8 |
| | | | | Python program, optionally with different arguments. | ||||
* | Add versionadded marker for ctypes.c_bool. | Thomas Heller | 2007-03-13 | 1 | -0/+1 |
| | |||||
* | Patch #1444529: the builtin compile() now accepts keyword arguments. | Georg Brandl | 2007-03-13 | 1 | -5/+5 |
| | | | | (backport) | ||||
* | Patch #1649190: Adding support for _Bool to ctypes as c_bool, by David Remahl. | Thomas Heller | 2007-03-13 | 1 | -0/+6 |
| | |||||
* | Patch #1533909: the timeit module now accepts callables in addition to | Georg Brandl | 2007-03-13 | 1 | -0/+25 |
| | | | | | strings for the code to time and the setup code. Also added two convenience functions for instantiating a Timer and calling its methods. | ||||
* | Patch #1537850: tempfile.NamedTemporaryFile now has a "delete" parameter | Georg Brandl | 2007-03-13 | 1 | -1/+4 |
| | | | | | which can be set to False to prevent the default delete-on-close behavior. | ||||
* | Patch #1581073: add a flag to textwrap that prevents the dropping of | Georg Brandl | 2007-03-13 | 1 | -0/+7 |
| | | | | whitespace while wrapping. | ||||
* | This is the implementation of POSIX.1-2001 (pax) format read/write | Lars Gustäbel | 2007-03-13 | 1 | -53/+104 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | support. The TarInfo class now contains all necessary logic to process and create tar header data which has been moved there from the TarFile class. The fromtarfile() method was added. The new path and linkpath properties are aliases for the name and linkname attributes in correspondence to the pax naming scheme. The TarFile constructor and classmethods now accept a number of keyword arguments which could only be set as attributes before (e.g. dereference, ignore_zeros). The encoding and pax_headers arguments were added for pax support. There is a new tarinfo keyword argument that allows using subclassed TarInfo objects in TarFile. The boolean TarFile.posix attribute is deprecated, because now three tar formats are supported. Instead, the desired format for writing is specified using the constants USTAR_FORMAT, GNU_FORMAT and PAX_FORMAT as the format keyword argument. This change affects TarInfo.tobuf() as well. The test suite has been heavily reorganized and partially rewritten. A new testtar.tar was added that contains sample data in many formats from 4 different tar programs. Some bugs and quirks that also have been fixed: Directory names do no longer have a trailing slash in TarInfo.name or TarFile.getnames(). Adding the same file twice does not create a hardlink file member. The TarFile constructor does no longer need a name argument. The TarFile._mode attribute was renamed to mode and contains either 'r', 'w' or 'a'. | ||||
* | Patch #1679379: add documentation for fnmatch.translate(). | Georg Brandl | 2007-03-13 | 1 | -0/+31 |
| | |||||
* | Typo fix. | Georg Brandl | 2007-03-12 | 1 | -1/+1 |
| | |||||
* | Backport from Py3k branch: | Georg Brandl | 2007-03-12 | 1 | -20/+39 |
| | | | | | | | Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. Had to change a few bits of the patch because classobjs and __methods__ are still in Py2.6. | ||||
* | Patch #1677862: Require a space or tab after import in .pth files. | Martin v. Löwis | 2007-03-12 | 1 | -6/+11 |
| | |||||
* | Patch #1599845: Add an option to disable the implicit calls to server_bind() ↵ | Collin Winter | 2007-03-10 | 2 | -4/+15 |
| | | | | and server_activate() in the constructors for TCPServer, SimpleXMLRPCServer and DocXMLRPCServer. | ||||
* | Bug #1629566: clarify the docs on the return values of parsedate() and ↵ | Collin Winter | 2007-03-09 | 2 | -4/+4 |
| | | | | parsedate_tz() in email.utils and rfc822. | ||||
* | 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 |
| |