Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue3065: Fixed pickling of named tuples. Added tests. | Raymond Hettinger | 2008-06-09 | 1 | -1/+20 |
| | |||||
* | warn about parameter tuple unpacking | Benjamin Peterson | 2008-06-08 | 1 | -0/+6 |
| | |||||
* | Warn about assigning to Py3k keywords (True and False) | Benjamin Peterson | 2008-06-08 | 1 | -0/+49 |
| | |||||
* | change Py3k backquote warning to a SyntaxWarning and add a test | Benjamin Peterson | 2008-06-08 | 1 | -0/+6 |
| | |||||
* | Revert unwanted changes. | Georg Brandl | 2008-06-07 | 1 | -100/+9 |
| | |||||
* | Factor out docstring dedenting from inspect.getdoc() into inspect.cleandoc() | Georg Brandl | 2008-06-07 | 2 | -9/+104 |
| | | | | to ease standalone use of the algorithm. | ||||
* | Finished bug #2451. Fixed the retrying part to make it | Facundo Batista | 2008-06-07 | 1 | -8/+16 |
| | | | | more robust. | ||||
* | MacOS X: Enable 4-way universal builds | Ronald Oussoren | 2008-06-05 | 1 | -0/+43 |
| | | | | | | | | | | | | | | | | | | This patch adds a new configure argument on OSX: --with-universal-archs=[32-bit|64-bit|all] When used with the --enable-universalsdk option this controls which CPU architectures are includes in the framework. The default is 32-bit, meaning i386 and ppc. The most useful alternative is 'all', which includes all 4 CPU architectures supported by MacOS X (i386, ppc, x86_64 and ppc64). This includes limited support for the Carbon bindings in 64-bit mode as well, limited because (a) I haven't done extensive testing and (b) a large portion of the Carbon API's aren't available in 64-bit mode anyway. I've also duplicated a feature of Apple's build of python: setting the environment variable 'ARCHFLAGS' controls the '-arch' flags used for building extensions using distutils. | ||||
* | Fixed complex.__getnewargs__() to not emit another complex object. | Alexandre Vassalotti | 2008-06-04 | 1 | -0/+8 |
| | |||||
* | make test_mutex more elegant | Benjamin Peterson | 2008-06-03 | 1 | -18/+20 |
| | |||||
* | Change all functions that expect one unicode character to accept a pair of | Walter Dörwald | 2008-06-02 | 1 | -0/+8 |
| | | | | surrogates in narrow builds. Fixes issue #1706460. | ||||
* | Fix issue 2782: be less strict about the format string type in strftime. | Gregory P. Smith | 2008-06-02 | 1 | -0/+4 |
| | | | | | Accept unicode and anything else ParseTuple "s#" can deal with. This matches the time.strftime behavior. | ||||
* | Adds a Thread.getIdent() method to provide the _get_ident() value for | Gregory P. Smith | 2008-06-01 | 1 | -0/+5 |
| | | | | any given threading.Thread object. feature request issue 2871. | ||||
* | Deprecate htmllib and sgmllib for 3.0. | Georg Brandl | 2008-06-01 | 3 | -3/+3 |
| | |||||
* | Fix test_sys. | Robert Schuppenies | 2008-06-01 | 1 | -2/+0 |
| | |||||
* | Fix test_descrtut. | Georg Brandl | 2008-06-01 | 1 | -0/+1 |
| | |||||
* | Some style nits. Also clarify in the docstrings what __sizeof__ does. | Georg Brandl | 2008-06-01 | 1 | -11/+11 |
| | |||||
* | Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. | Robert Schuppenies | 2008-06-01 | 1 | -2/+149 |
| | |||||
* | New environment variable PYTHONIOENCODING. | Martin v. Löwis | 2008-06-01 | 1 | -0/+20 |
| | |||||
* | Fix typo in testSum | Mark Dickinson | 2008-05-30 | 1 | -1/+1 |
| | |||||
* | Fixed the semantic of timeout for socket.create_connection and | Facundo Batista | 2008-05-29 | 9 | -124/+167 |
| | | | | | | all the upper level libraries that use it, including urllib2. Added and fixed some tests, and changed docs correspondingly. Thanks to John J Lee for the patch and the pusing, :) | ||||
* | UserString.MutableString has been removed in Python 3.0. | Brett Cannon | 2008-05-29 | 2 | -2/+13 |
| | | | | Works on issue #2877. Thanks Quentin Gallet-Gilles for the patch. | ||||
* | Better integration between Python testing and bsddb3 | Jesus Cea | 2008-05-27 | 1 | -5/+5 |
| | |||||
* | Do not close external file objects passed to tarfile.open(mode='w:bz2') | Lars Gustäbel | 2008-05-27 | 1 | -2/+14 |
| | | | | when the TarFile is closed. | ||||
* | Improvements for test_py3kwarn | Benjamin Peterson | 2008-05-27 | 1 | -5/+5 |
| | | | | | - Always show warnings so they are always catchable - Make test_os_path_walk faster by walking a less populous directory | ||||
* | remove some __getslice__ | Benjamin Peterson | 2008-05-27 | 1 | -5/+1 |
| | |||||
* | remove duplication in test module | Benjamin Peterson | 2008-05-26 | 1 | -27/+0 |
| | |||||
* | Fixes issue2791: subprocess.Popen.communicate leaked a file descripton until | Gregory P. Smith | 2008-05-26 | 1 | -5/+19 |
| | | | | | | | the last reference to the Popen instance was dropped. Adding explicit close() calls fixes it. Candidate for backport to release25-maint. | ||||
* | warn about some members of the commands module | Benjamin Peterson | 2008-05-26 | 1 | -0/+9 |
| | |||||
* | add __all__ to test_support | Benjamin Peterson | 2008-05-26 | 2 | -0/+14 |
| | |||||
* | Fix issue2669: bsddb simple/legacy interface iteration silently fails | Gregory P. Smith | 2008-05-25 | 1 | -12/+51 |
| | | | | | | | when database changes size during iteration. It now behaves like a dictionary, the next attempt to get a value from the iterator after the database has changed size will raise a RuntimeError. | ||||
* | #2959: allow multiple close() calls for GzipFile. | Georg Brandl | 2008-05-25 | 1 | -3/+6 |
| | |||||
* | ConfigParser renaming reversal part 3: move module into place and adapt imports. | Georg Brandl | 2008-05-25 | 3 | -59/+20 |
| | |||||
* | Queue renaming reversal part 3: move module into place and | Georg Brandl | 2008-05-25 | 5 | -21/+19 |
| | | | | change imports and other references. Closes #2925. | ||||
* | * Give the test_bsddb3 tests a unique temporary directory to run their | Gregory P. Smith | 2008-05-25 | 1 | -52/+20 |
| | | | | | | | | stuff in and clean it up afterwards regardless of the result. * Get rid of duplicate list of test modules to run, they're maintained within test_all now. * Print the BerkeleyDB version to stderr when running test_bsddb3 to help buildbot problem diagnosis. | ||||
* | socketserver renaming reversal part 3: move the module into the right | Georg Brandl | 2008-05-24 | 5 | -33/+32 |
| | | | | place and fix all references to it. Closes #2926. | ||||
* | Don't try to get the window size if it was never set before. | Martin v. Löwis | 2008-05-24 | 1 | -3/+0 |
| | | | | Fixes the test failure on Solaris. | ||||
* | Issue #1390: Raise ValueError in toxml when an invalid comment would | Martin v. Löwis | 2008-05-23 | 1 | -0/+5 |
| | | | | otherwise be produced. | ||||
* | Skip math.sum tests on non IEEE 754 platforms, and on IEEE 754 platforms | Mark Dickinson | 2008-05-23 | 1 | -0/+16 |
| | | | | that exhibit the problem described in issue #2937. | ||||
* | Revert the renaming of repr to reprlib. | Brett Cannon | 2008-05-23 | 3 | -4/+4 |
| | |||||
* | Better error reporting in test_math.py | Mark Dickinson | 2008-05-23 | 1 | -0/+4 |
| | |||||
* | Add tests for math.sum (Issue #2819) | Mark Dickinson | 2008-05-23 | 1 | -0/+136 |
| | |||||
* | fix test_pydoc so it works on make installed Python installations | Benjamin Peterson | 2008-05-22 | 1 | -14/+26 |
| | | | | Also let it pass when invoked directly | ||||
* | remove redundant invocation of json doctests | Benjamin Peterson | 2008-05-22 | 1 | -1/+0 |
| | |||||
* | use more specific asserts in test_opcode | Benjamin Peterson | 2008-05-22 | 1 | -10/+10 |
| | |||||
* | check for toolbox glue before testing platform.mac_ver intensly | Benjamin Peterson | 2008-05-21 | 1 | -1/+8 |
| | |||||
* | #2592: delegate nb_index and the floor/truediv slots in weakref.proxy. | Georg Brandl | 2008-05-20 | 1 | -1/+22 |
| | |||||
* | Patch #1775025: allow opening zipfile members via ZipInfo instances. | Georg Brandl | 2008-05-20 | 1 | -0/+19 |
| | | | | Patch by Graham Horler. | ||||
* | Use inspect.getabsfile() to get the documented module's filename. | Georg Brandl | 2008-05-20 | 1 | -7/+3 |
| | |||||
* | Improve diffing logic and output for test_pydoc. | Georg Brandl | 2008-05-20 | 1 | -7/+7 |
| |