Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #7092: Fix the DeprecationWarnings emitted by the standard library | Antoine Pitrou | 2010-01-04 | 1 | -0/+3 |
| | | | | when using the -3 flag. Patch by Florent Xicluna. | ||||
* | do correct lookup of the __complex__ method | Benjamin Peterson | 2010-01-04 | 1 | -0/+3 |
| | |||||
* | Credit Nir Aides for r77288 | Antoine Pitrou | 2010-01-03 | 1 | -0/+1 |
| | |||||
* | Issue #7471: Improve the performance of GzipFile's buffering mechanism, | Antoine Pitrou | 2010-01-03 | 1 | -1/+5 |
| | | | | | and make it implement the `io.BufferedIOBase` ABC to allow for further speedups by wrapping it in an `io.BufferedReader`. Patch by Nir Aides. | ||||
* | Update doc build step. | Georg Brandl | 2010-01-03 | 1 | -19/+3 |
| | |||||
* | r77152 to Doc/Makefile broke doc build due to (at least some) make | Kurt B. Kaiser | 2010-01-03 | 1 | -3/+3 |
| | | | | | | | binaries running clean prereq after checkout. 1. So, fix the insane make call in build.sh - seems to solve it. 2. Fix a missing redirection. 3. Check in the rsync opts that actually work during upload. | ||||
* | issue3972: HTTPConnection and HTTPSConnection now support a | Gregory P. Smith | 2010-01-03 | 1 | -0/+3 |
| | | | | | | source_address parameter. Also cleans up an annotation in the socket documentation. | ||||
* | Adds an optional source_address parameter to socket.create_connection(). | Gregory P. Smith | 2010-01-03 | 1 | -0/+2 |
| | | | | For use by issue3972. | ||||
* | Fix typo. | Georg Brandl | 2010-01-02 | 1 | -1/+1 |
| | |||||
* | mention the r77252 change | Gregory P. Smith | 2010-01-02 | 1 | -1/+4 |
| | |||||
* | Issue #7462: Implement the stringlib fast search algorithm for the `rfind`, | Antoine Pitrou | 2010-01-02 | 1 | -0/+3 |
| | | | | `rindex`, `rsplit` and `rpartition` methods. Patch by Florent Xicluna. | ||||
* | Update Windows build to sqlite 3.6.21. | Martin v. Löwis | 2010-01-02 | 1 | -1/+1 |
| | |||||
* | Issue #5080: turn the DeprecationWarning from float arguments passed | Mark Dickinson | 2010-01-01 | 1 | -0/+16 |
| | | | | | | to integer PyArg_Parse* format codes into a TypeError. Add a DeprecationWarning for floats passed with the 'L' format code, which didn't previously have a warning. | ||||
* | allow --with-dbmliborder to specify that no dbm modules will be built #6491 | Benjamin Peterson | 2010-01-01 | 1 | -0/+2 |
| | |||||
* | fix indentation | Benjamin Peterson | 2010-01-01 | 1 | -1/+1 |
| | |||||
* | add note | Benjamin Peterson | 2010-01-01 | 1 | -0/+3 |
| | |||||
* | add a --with-system-expat option to build pyexpat against the system's lib #7609 | Benjamin Peterson | 2009-12-31 | 1 | -0/+4 |
| | |||||
* | check if the attribute is set before deleting it with T_OBJECT_EX (fixes #7604) | Benjamin Peterson | 2009-12-30 | 1 | -0/+3 |
| | | | | | Also, add a note to the docs about the better behavior of T_OBJECT_EX as compared to T_OBJECT. | ||||
* | Add Marcos Donolo for work on issue 7534 patch. | Mark Dickinson | 2009-12-30 | 1 | -0/+1 |
| | |||||
* | Issue #7534: Fix handling of nans, infinities, and negative zero in ** | Mark Dickinson | 2009-12-30 | 1 | -0/+4 |
| | | | | operator, on IEEE 754 platforms. Thanks Marcos Donolo for original patch. | ||||
* | #5511: Added the ability to use ZipFile as a context manager. Patch by Brian ↵ | Ezio Melotti | 2009-12-30 | 1 | -1/+4 |
| | | | | Curtin. | ||||
* | only build the nis module when the headers are found #7589 | Benjamin Peterson | 2009-12-30 | 1 | -0/+3 |
| | |||||
* | #7579: Add docstrings to the msvcrt module | Amaury Forgeot d'Arc | 2009-12-29 | 1 | -0/+2 |
| | |||||
* | #7413: Passing '\0' as the separator to datetime.datetime.isoformat() | Amaury Forgeot d'Arc | 2009-12-29 | 1 | -0/+3 |
| | | | | used to drop the time part of the result. | ||||
* | #7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new ↵ | Georg Brandl | 2009-12-28 | 1 | -0/+5 |
| | | | | exceptions a docstring. | ||||
* | Issue #1811: Improve accuracy and consistency of true division for integers. | Mark Dickinson | 2009-12-27 | 1 | -0/+5 |
| | |||||
* | #6108: unicode(exception) and str(exception) should return the same message | Ezio Melotti | 2009-12-24 | 1 | -0/+3 |
| | |||||
* | Unittests and news items for the patch in r77026. | Ronald Oussoren | 2009-12-24 | 1 | -0/+3 |
| | |||||
* | Fix for issue #7541: python-config --ldflags doesn't pick up libpython2.5.a | Ronald Oussoren | 2009-12-24 | 1 | -0/+3 |
| | |||||
* | Issue #6834: replace the implementation for the 'python' and 'pythonw' ↵ | Ronald Oussoren | 2009-12-24 | 1 | -0/+7 |
| | | | | | | | | | | | | | | | | | executables on OSX. The previous implementation used execv(2) to run the real interpreter, which means that you cannot use the arch(1) tool to select the architecture you want to use for a universal build because that only affects the python/pythonw wrapper and not the actual interpreter. The new version uses posix_spawnv with a number of OSX-specific options that ensure that the real interpreter is started using the same CPU architecture as the wrapper, and that means that 'arch -ppc python' now actually works. I've also changed the way that the wrapper looks for the framework: it is now linked to the framework rather than hardcoding the framework path. This should make it easier to provide pythonw support in tools like virtualenv. | ||||
* | added a note about #7556 in Misc/NEWS | Tarek Ziadé | 2009-12-21 | 1 | -0/+3 |
| | |||||
* | Add NEWS for OpenSSL changes. | Martin v. Löwis | 2009-12-21 | 1 | -0/+4 |
| | |||||
* | Issue #7528: Backport PyLong_AsLongAndOverflow from py3k to trunk. | Mark Dickinson | 2009-12-21 | 1 | -0/+2 |
| | | | | Thanks Case Van Horsen for the patch. | ||||
* | Fixed #7552: fixed distutils.command.upload failure on very long passwords | Tarek Ziadé | 2009-12-20 | 1 | -4/+8 |
| | |||||
* | Issue #7376: When called with no arguments doctest was running a | R. David Murray | 2009-12-20 | 1 | -0/+3 |
| | | | | | | | | | | self-test. Because of a change to the way tracebacks are printed, this self-test was failing. The test is run (and passes) during normal regression testing. So instead of running the failing self-test this patch makes doctest emit a usage message. This is better behavior anyway since passing in arguments is the real reason to run doctest as a command. Bug discovery and initial patch by Florent Xicluna. | ||||
* | Fix for issue 7291 - urllib2 cannot handle https with proxy requiring auth | Senthil Kumaran | 2009-12-20 | 1 | -0/+3 |
| | | | | Refactored HTTPHandler tests and added testcase for proxy authorization. | ||||
* | Issue #3366: Add error function and complementary error function to | Mark Dickinson | 2009-12-19 | 1 | -1/+2 |
| | | | | math module. | ||||
* | Issue #3366: Add expm1 function to math module. Thanks Eric Smith for | Mark Dickinson | 2009-12-16 | 1 | -1/+1 |
| | | | | testing on Windows. | ||||
* | Issue #7396: fix -s, which was broken by the -j enhancement. | R. David Murray | 2009-12-16 | 1 | -0/+2 |
| | |||||
* | Issue #7498: make test_multiprocessing use test_support.find_unused_port | R. David Murray | 2009-12-14 | 1 | -0/+9 |
| | | | | instead of a hard coded port number in test_rapid_restart. | ||||
* | Issue #1680159: unicode coercion during an 'in' operation was masking | R. David Murray | 2009-12-14 | 1 | -0/+3 |
| | | | | | | | any errors that might occur during coercion of the left operand and turning them into a TypeError with a message text that was confusing in the given context. This patch lets any errors through, as was already done during coercion of the right hand side. | ||||
* | accept None as the same as having passed no argument in file types #7349 | Benjamin Peterson | 2009-12-13 | 1 | -0/+4 |
| | | | | | | | This is for consistency with imitation file objects like StringIO and BytesIO. This commit also adds a few tests, where they were lacking for concerned methods. | ||||
* | add NEWS note | Benjamin Peterson | 2009-12-13 | 1 | -0/+3 |
| | |||||
* | fix the ignoring of __cmp__ method on metaclasses #7491 | Benjamin Peterson | 2009-12-13 | 1 | -0/+2 |
| | |||||
* | Add NEWS entry as per RDM's suggestion (the bug was actually present | Antoine Pitrou | 2009-12-13 | 1 | -0/+3 |
| | | | | in 2.7 alpha 1) | ||||
* | Issue #7357: No longer suppress fatal extraction errors by | Lars Gustäbel | 2009-12-13 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | default. TarFile's errorlevel argument controls how errors are handled that occur during extraction. There are three possible levels 0, 1 and 2. If errorlevel is set to 1 or 2 fatal errors (e.g. a full filesystem) are raised as exceptions. If it is set to 0, which is the default value, extraction errors are suppressed, and error messages are written to the debug log instead. But, if the debug log is not activated, which is the default as well, all these errors go unnoticed. The original intention was to imitate GNU tar which tries to extract as many members as possible instead of stopping on the first error. It turns out that this is no good default behaviour for a tar library. This patch simply changes the default value for the errorlevel argument from 0 to 1, so that fatal extraction errors are raised as EnvironmentError exceptions. | ||||
* | Issue #3366: Add lgamma function to math module. | Mark Dickinson | 2009-12-11 | 1 | -1/+1 |
| | |||||
* | Issue #7470: logging: fix bug in Unicode encoding fallback. | Vinay Sajip | 2009-12-11 | 1 | -0/+2 |
| | |||||
* | Add a reverse() method to collections.deque(). | Raymond Hettinger | 2009-12-10 | 1 | -0/+2 |
| | |||||
* | Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d) | Raymond Hettinger | 2009-12-10 | 1 | -0/+2 |
| |