Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #7092: Fix the DeprecationWarnings emitted by the standard library | Antoine Pitrou | 2010-01-04 | 18 | -88/+99 |
| | | | | when using the -3 flag. Patch by Florent Xicluna. | ||||
* | #3340: document print/get_usage and print/get_version | Ezio Melotti | 2010-01-04 | 1 | -0/+26 |
| | |||||
* | Fix typo in comment. | Mark Dickinson | 2010-01-04 | 1 | -1/+1 |
| | |||||
* | fixed markup errors | Ezio Melotti | 2010-01-04 | 3 | -3/+3 |
| | |||||
* | factor out __complex__ lookup code to fix another case | Benjamin Peterson | 2010-01-04 | 1 | -50/+44 |
| | |||||
* | do correct lookup of the __complex__ method | Benjamin Peterson | 2010-01-04 | 3 | -8/+20 |
| | |||||
* | 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 | 3 | -58/+58 |
| | | | | | and make it implement the `io.BufferedIOBase` ABC to allow for further speedups by wrapping it in an `io.BufferedReader`. Patch by Nir Aides. | ||||
* | Fix testSourceAddress to not test the host, it wasn't passing on some platforms. | Gregory P. Smith | 2010-01-03 | 1 | -9/+4 |
| | |||||
* | remove an obsolete file that should've gone with r77252 | Gregory P. Smith | 2010-01-03 | 1 | -28/+0 |
| | |||||
* | Update doc build step. | Georg Brandl | 2010-01-03 | 1 | -19/+3 |
| | |||||
* | Make use of PyLong_AsLongAndOverflow in math_ldexp. | Mark Dickinson | 2010-01-03 | 1 | -20/+7 |
| | |||||
* | :stmt: -> :keyword: | Ezio Melotti | 2010-01-03 | 1 | -1/+1 |
| | |||||
* | #7618: fix highlight of code blocks | Ezio Melotti | 2010-01-03 | 1 | -7/+19 |
| | |||||
* | 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 | 5 | -12/+61 |
| | | | | | | 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 | 4 | -5/+32 |
| | | | | For use by issue3972. | ||||
* | Add a few items | Andrew M. Kuchling | 2010-01-03 | 1 | -13/+20 |
| | |||||
* | make setup.py similar to py3k's when reporting on _hashlib as missing or not. | Gregory P. Smith | 2010-01-03 | 1 | -12/+14 |
| | |||||
* | Import all implementations of the hash algorithms (OpenSSL & builtin) and run | Gregory P. Smith | 2010-01-03 | 1 | -10/+75 |
| | | | | | | | | | the test suite across all that are available. Warns about extension modules that could not be imported when python was compiled with Py_DEBUG. That warning could be made fatal but I didn't want to do that initially as I suspect non setup.py based build processes (windows, any others?) won't compile them all conditionally based on the Py_DEBUG setting today. | ||||
* | Fix typo. | Georg Brandl | 2010-01-02 | 1 | -1/+1 |
| | |||||
* | mention the r77252 change | Gregory P. Smith | 2010-01-02 | 1 | -1/+4 |
| | |||||
* | Issue #3745: Undo the requirement for new buffer API only objects to be passed | Gregory P. Smith | 2010-01-02 | 6 | -160/+87 |
| | | | | | | to hashlib functions in python 2.x. The module now uses the 's*' for argument parsing which auto encodes unicode objects to the system default encoding for us. | ||||
* | Always compile the all versions of the hashlib algorithm modules when Python | Gregory P. Smith | 2010-01-02 | 1 | -5/+11 |
| | | | | | | | was compiled with Py_DEBUG defined. Otherwise the builtins are not compiled by default for many developers due to OpenSSL being present, making it easier for bugs to slip by. A future commit will add test code compare the behaviors of all implementations when they are all available. | ||||
* | Remove silly conditional. | Antoine Pitrou | 2010-01-02 | 1 | -4/+2 |
| | |||||
* | Add tests for issue #7458: str.rfind() would crash when called with an invalid | Antoine Pitrou | 2010-01-02 | 1 | -0/+6 |
| | | | | | start value. The offending code itself was removed as part of #7462. This patch by Victor Stinner. | ||||
* | Correct documentation for s* z* and w*, the argument that should be passed | Gregory P. Smith | 2010-01-02 | 1 | -3/+3 |
| | | | | is the address of a Py_buffer, not a Py_buffer *. | ||||
* | Issue #7462: Implement the stringlib fast search algorithm for the `rfind`, | Antoine Pitrou | 2010-01-02 | 11 | -151/+150 |
| | | | | `rindex`, `rsplit` and `rpartition` methods. Patch by Florent Xicluna. | ||||
* | Refactor some longobject internals: PyLong_AsDouble and _PyLong_AsScaledDouble | Mark Dickinson | 2010-01-02 | 3 | -240/+168 |
| | | | | | | | | (the latter renamed to _PyLong_Frexp) now use the same core code. The exponent produced by _PyLong_Frexp now has type Py_ssize_t instead of the previously used int, and no longer needs scaling by PyLong_SHIFT. This frees the math module from having to know anything about the PyLong implementation. This closes issue #5576. | ||||
* | Clarify that the rect, phase and polar functions work with radians. | Mark Dickinson | 2010-01-02 | 1 | -2/+2 |
| | |||||
* | Fix casing. | Georg Brandl | 2010-01-02 | 1 | -1/+1 |
| | |||||
* | Make script work with 2.5. | Martin v. Löwis | 2010-01-02 | 1 | -0/+1 |
| | |||||
* | Update Windows build to sqlite 3.6.21. | Martin v. Löwis | 2010-01-02 | 5 | -7/+7 |
| | |||||
* | remove use of deprecated os.popen #7619 | Benjamin Peterson | 2010-01-02 | 1 | -3/+8 |
| | |||||
* | Issue #5080: turn the DeprecationWarning from float arguments passed | Mark Dickinson | 2010-01-01 | 6 | -28/+65 |
| | | | | | | 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 | 2 | -3/+7 |
| | |||||
* | fix indentation | Benjamin Peterson | 2010-01-01 | 1 | -1/+1 |
| | |||||
* | add note | Benjamin Peterson | 2010-01-01 | 1 | -0/+3 |
| | |||||
* | use pkg-config to find the libffi headers when --with-system-ffi is used #6943 | Benjamin Peterson | 2010-01-01 | 4 | -3/+128 |
| | |||||
* | More yearly updates. | Georg Brandl | 2010-01-01 | 12 | -14/+14 |
| | |||||
* | more copyright year updates | Ezio Melotti | 2010-01-01 | 3 | -3/+3 |
| | |||||
* | update copyright year | Benjamin Peterson | 2010-01-01 | 2 | -4/+4 |
| | |||||
* | Add some missing command-line options to the main list. All but -V were already | Brett Cannon | 2010-01-01 | 1 | -2/+4 |
| | | | | documented. Left -V undocumented for now (and -U was already undocumented). | ||||
* | More configure fixes: avoid sh 'integer argument expected' error when 'long ↵ | Mark Dickinson | 2009-12-31 | 2 | -7/+16 |
| | | | | long' type doesn't exist. | ||||
* | Add missing quotes. | Mark Dickinson | 2009-12-31 | 2 | -3/+3 |
| | |||||
* | add another advancement | Benjamin Peterson | 2009-12-31 | 1 | -3/+4 |
| | |||||
* | Add various items | Andrew M. Kuchling | 2009-12-31 | 1 | -1/+26 |
| | |||||
* | update expat comment | Benjamin Peterson | 2009-12-31 | 1 | -6/+6 |
| | |||||
* | Add some items | Andrew M. Kuchling | 2009-12-31 | 1 | -9/+27 |
| | |||||
* | #7613: missing ) in flmodule.c | Ezio Melotti | 2009-12-31 | 1 | -1/+1 |
| |