Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revert 55634. | Martin v. Löwis | 2007-05-29 | 1 | -1/+0 |
| | |||||
* | Test pre-commit hook for a link to a .py file. | Martin v. Löwis | 2007-05-29 | 1 | -0/+1 |
| | |||||
* | Explain when groupby() issues a new group. | Raymond Hettinger | 2007-05-28 | 1 | -0/+8 |
| | |||||
* | Added errors argument to TarFile class that allows the user to | Lars Gustäbel | 2007-05-27 | 5 | -197/+453 |
| | | | | | | | | | | | | | | | | | | | | specify an error handling scheme for character conversion. Additional scheme "utf-8" in read mode. Unicode input filenames are now supported by design. The values of the pax_headers dictionary are now limited to unicode objects. Fixed: The prefix field is no longer used in PAX_FORMAT (in conformance with POSIX). Fixed: In read mode use a possible pax header size field. Fixed: Strip trailing slashes from pax header name values. Fixed: Give values in user-specified pax_headers precedence when writing. Added unicode tests. Added pax/regtype4 member to testtar.tar all possible number fields in a pax header. Added two chapters to the documentation about the different formats tarfile.py supports and how unicode issues are handled. | ||||
* | Add the new function object attribute names from py3k. | Neal Norwitz | 2007-05-27 | 2 | -3/+13 |
| | |||||
* | Applied patch 1669481, slightly modified: Support close_fds on Win32 | Peter Astrand | 2007-05-26 | 3 | -6/+16 |
| | |||||
* | Fix typo. | Walter Dörwald | 2007-05-26 | 1 | -1/+1 |
| | |||||
* | Include <windows.h> after python.h, so that WINNT is properly set before ↵ | Kristján Valur Jónsson | 2007-05-26 | 5 | -8/+6 |
| | | | | windows.h is included. Fixes warnings in PC builds. | ||||
* | Remove the rgbimgmodule from PCBuild8 | Kristján Valur Jónsson | 2007-05-26 | 1 | -4/+0 |
| | |||||
* | Remove direct call's to file's constructor and replace them with calls to | Brett Cannon | 2007-05-25 | 2 | -5/+6 |
| | | | | open() as ths is considered best practice. | ||||
* | Updated documentation for SysLogHandler (#1720726). | Vinay Sajip | 2007-05-25 | 1 | -2/+5 |
| | |||||
* | Updated docstring for SysLogHandler (#1720726). | Vinay Sajip | 2007-05-25 | 1 | -1/+2 |
| | |||||
* | Get test passing again by commenting out the reference to the test class. | Neal Norwitz | 2007-05-25 | 1 | -1/+1 |
| | |||||
* | Commenting out the tests until find out who can test them in | Facundo Batista | 2007-05-25 | 1 | -61/+69 |
| | | | | one of the problematic enviroments. | ||||
* | Fixing stupid error, and introducing a sleep, to see if the | Facundo Batista | 2007-05-25 | 1 | -1/+1 |
| | | | | other thread is awakened and finish sending data. | ||||
* | Trying to make the tests work in Windows and Solaris, everywhere | Facundo Batista | 2007-05-25 | 1 | -11/+13 |
| | | | | else just works | ||||
* | Let's see if reading exactly what is written allow this live | Facundo Batista | 2007-05-24 | 1 | -0/+1 |
| | | | | | test to pass (now I know why there were so few tests in ftp, http, etc, :( ). | ||||
* | Removed the .recv() in the test, is not necessary, and was | Facundo Batista | 2007-05-24 | 1 | -1/+0 |
| | | | | | causing problems that didn't have anything to do with was actually being tested... | ||||
* | Added an optional timeout parameter to urllib.ftpwrapper, with tests | Facundo Batista | 2007-05-24 | 3 | -3/+71 |
| | | | | | | (for this and a basic one, because there weren't any). Changed also NEWS, but didn't find documentation for this function, assumed it wasn't public... | ||||
* | Fix parameter passing. | Georg Brandl | 2007-05-24 | 1 | -1/+1 |
| | |||||
* | shlex.split() now has an optional "posix" parameter. | Georg Brandl | 2007-05-24 | 3 | -4/+8 |
| | |||||
* | Add a bunch more deprecation warnings for builtins that are going away in 3.0 | Neal Norwitz | 2007-05-23 | 1 | -0/+24 |
| | |||||
* | Whitespace cleanup | Neal Norwitz | 2007-05-23 | 1 | -1/+1 |
| | |||||
* | Add -3 option to the interpreter to warn about features that are | Neal Norwitz | 2007-05-23 | 7 | -3/+31 |
| | | | | | | | deprecated and will be changed/removed in Python 3.0. This patch is mostly from Anthony. I tweaked some format and added a little doc. | ||||
* | Remove definition of PY_UNICODE_TYPE from pyconfig.h, allowing the | Mark Hammond | 2007-05-23 | 1 | -11/+2 |
| | | | | | definition in unicodeobject.h to be used, giving us the desired wchar_t in place of 'unsigned short'. As discussed on python-dev. | ||||
* | Remove the "panel" module doc file which has been ignored since 1994. | Georg Brandl | 2007-05-22 | 2 | -75/+0 |
| | |||||
* | Stop using METH_OLDARGS implicitly | Neal Norwitz | 2007-05-22 | 4 | -13/+13 |
| | |||||
* | Stop using METH_OLDARGS | Neal Norwitz | 2007-05-22 | 1 | -3/+3 |
| | |||||
* | Document new params to HTTPSConnection | Neal Norwitz | 2007-05-22 | 1 | -1/+3 |
| | |||||
* | Patch #1686487: you can now pass any mapping after '**' in function calls. | Georg Brandl | 2007-05-21 | 5 | -17/+49 |
| | |||||
* | Added timeout support to HTTPSConnection, through the | Facundo Batista | 2007-05-21 | 3 | -6/+13 |
| | | | | | socket.create_connection function. Also added a small test for this, and updated NEWS file. | ||||
* | Allow all alphanumeric and underscores in type and field names. | Raymond Hettinger | 2007-05-21 | 2 | -1/+4 |
| | |||||
* | Replace assertion with straight error-checking. | Raymond Hettinger | 2007-05-21 | 1 | -1/+2 |
| | |||||
* | fix against r55474 [Remove the macfs module] | George Yoshida | 2007-05-21 | 2 | -2/+0 |
| | | | | Remove "libmacfs.tex" from Makefile.deps and mac/mac.tex. | ||||
* | Add Alexandre Vassalotti. | Martin v. Löwis | 2007-05-21 | 1 | -0/+4 |
| | |||||
* | Note removed modules | Andrew M. Kuchling | 2007-05-21 | 1 | -0/+8 |
| | |||||
* | Cause posixfile to raise a DeprecationWarning. Documented as deprecated since | Brett Cannon | 2007-05-20 | 3 | -66/+73 |
| | | | | Ptyhon 1.5. | ||||
* | Move imgfile import to the global namespace to trigger an import error ASAP to | Brett Cannon | 2007-05-20 | 1 | -4/+1 |
| | | | | prevent creation of a test file. | ||||
* | Remove the macfs module. This led to the deprecation of macostools.touched(); | Brett Cannon | 2007-05-20 | 9 | -546/+14 |
| | | | | | it completely relied on macfs and is a no-op on OS X according to code comments. | ||||
* | Try to remove rgbimg from Windows builds. | Brett Cannon | 2007-05-20 | 2 | -9/+0 |
| | |||||
* | Update directories/files at the top-level. | Neal Norwitz | 2007-05-20 | 1 | -1/+2 |
| | |||||
* | rotor is long gone. | Neal Norwitz | 2007-05-20 | 1 | -1/+1 |
| | |||||
* | Fix typo in example (should be backported, but my maintenance branch is ↵ | Nick Coghlan | 2007-05-20 | 1 | -1/+1 |
| | | | | woefully out of date) | ||||
* | Remove the rgbimg module. It has been deprecated since Python 2.5. | Brett Cannon | 2007-05-20 | 11 | -943/+14 |
| | |||||
* | Fix docstring for add_package in site.py. | Georg Brandl | 2007-05-19 | 1 | -2/+4 |
| | |||||
* | Give some clue as to what happened if the test fails. | Neal Norwitz | 2007-05-19 | 1 | -1/+1 |
| | |||||
* | Whoops, need to pay attention to those test failures. | Neal Norwitz | 2007-05-19 | 1 | -1/+1 |
| | | | | Move the clear to *before* the first use, not after. | ||||
* | Clear data so random memory does not get freed. Will backport. | Neal Norwitz | 2007-05-19 | 2 | -0/+3 |
| | |||||
* | Fix beginner mistake -- don't mix spaces and tabs. | Raymond Hettinger | 2007-05-19 | 1 | -1/+1 |
| | |||||
* | Improvements to NamedTuple's implementation, tests, and documentation | Raymond Hettinger | 2007-05-19 | 3 | -29/+40 |
| |