summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #7532: Add additional slicing test cases for new- and old-styleMark Dickinson2010-01-091-2/+97
| | | | classes. Patch by Florent Xicluna.
* post release version adjustmentBenjamin Peterson2010-01-092-1/+13
|
* tag 2.7 alpha 2Benjamin Peterson2010-01-091-0/+1
|
* bump version to 2.7a2v2.7a2Benjamin Peterson2010-01-096-7/+7
|
* #7422: make it clear that getargspec() only works on Python functions.Georg Brandl2010-01-091-1/+1
|
* Fixed #7617: all flavors of gcc should be recognized nowTarek Ziadé2010-01-083-2/+21
|
* Remove obsolete warning filters in regrtest.py (from issue #7092 -- patch byAntoine Pitrou2010-01-081-9/+0
| | | | Florent Xicluna).
* Fix for Issue7026. For the Error - RuntimeError: dictionary changed size ↵Senthil Kumaran2010-01-081-1/+1
| | | | during iteration
* Issue #7092: Remove py3k warning when importing cPickle. 2to3 handlesAntoine Pitrou2010-01-083-7/+6
| | | | | | renaming of `cPickle` to `pickle`. The warning was annoying since there's no alternative to cPickle if you care about performance. Patch by Florent Xicluna.
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-08107-800/+442
| | | | mistake. ( It may come in for sure tough)
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ↵Senthil Kumaran2010-01-08107-442/+800
| | | | Patch by flox
* Backport some float repr tests that were missed in issue 7117.Mark Dickinson2010-01-081-0/+49
|
* #7653: clarify how the PythonPath registry key should look like.Georg Brandl2010-01-071-6/+7
|
* Fix description for Py_GetPath(); it sounded like it always returned sys.path.Georg Brandl2010-01-071-8/+9
|
* Fix reattribution mistake when fixing attribution mistake!Antoine Pitrou2010-01-071-2/+2
|
* Fix attribution. Florent actually repackaged and reviewed Victor's patch ↵Antoine Pitrou2010-01-071-1/+1
| | | | (sorry!).
* Issue #7455: Fix possible crash in cPickle on invalid input. Patch byAntoine Pitrou2010-01-073-1/+13
| | | | Florent Xicluna.
* Eric Smith was missing fro m the issue 7117 whatsnew attribution.Mark Dickinson2010-01-071-2/+2
|
* Fix inadvertent checkin of debug line.R. David Murray2010-01-071-1/+1
|
* Add -W to the 'basics', 'opt', and 'all' test runs so that we get verboseR. David Murray2010-01-071-4/+4
| | | | information if a failure happens.
* #5950: document that zip files with comments are unsupported in zipimport.Georg Brandl2010-01-061-0/+2
|
* #5991: let completion for the "help" command include help topics.Georg Brandl2010-01-062-13/+11
| | | | | This also simplifies the Cmd.get_names() method implementation; it was written at a time where dir() didn't consider base class attributes.
* Small fixes to test_cmd: fix signature of do_shell, remove duplicate import, ↵Georg Brandl2010-01-061-2/+4
| | | | add option to run the custom Cmd class.
* Add missing docstring for Context.divmod. Thanks Juan José Conti.Mark Dickinson2010-01-061-0/+7
|
* Add Stefan.Georg Brandl2010-01-051-0/+3
|
* add a test about hashing array.arrayBenjamin Peterson2010-01-051-0/+9
|
* Kill a couple of "<>"Antoine Pitrou2010-01-043-6/+6
|
* Issue #7092: Fix the DeprecationWarnings emitted by the standard libraryAntoine Pitrou2010-01-0418-88/+99
| | | | when using the -3 flag. Patch by Florent Xicluna.
* #3340: document print/get_usage and print/get_versionEzio Melotti2010-01-041-0/+26
|
* Fix typo in comment.Mark Dickinson2010-01-041-1/+1
|
* fixed markup errorsEzio Melotti2010-01-043-3/+3
|
* factor out __complex__ lookup code to fix another caseBenjamin Peterson2010-01-041-50/+44
|
* do correct lookup of the __complex__ methodBenjamin Peterson2010-01-043-8/+20
|
* Credit Nir Aides for r77288Antoine Pitrou2010-01-031-0/+1
|
* Issue #7471: Improve the performance of GzipFile's buffering mechanism,Antoine Pitrou2010-01-033-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. Smith2010-01-031-9/+4
|
* remove an obsolete file that should've gone with r77252Gregory P. Smith2010-01-031-28/+0
|
* Update doc build step.Georg Brandl2010-01-031-19/+3
|
* Make use of PyLong_AsLongAndOverflow in math_ldexp.Mark Dickinson2010-01-031-20/+7
|
* :stmt: -> :keyword:Ezio Melotti2010-01-031-1/+1
|
* #7618: fix highlight of code blocksEzio Melotti2010-01-031-7/+19
|
* r77152 to Doc/Makefile broke doc build due to (at least some) makeKurt B. Kaiser2010-01-031-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 aGregory P. Smith2010-01-035-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. Smith2010-01-034-5/+32
| | | | For use by issue3972.
* Add a few itemsAndrew M. Kuchling2010-01-031-13/+20
|
* make setup.py similar to py3k's when reporting on _hashlib as missing or not.Gregory P. Smith2010-01-031-12/+14
|
* Import all implementations of the hash algorithms (OpenSSL & builtin) and runGregory P. Smith2010-01-031-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 Brandl2010-01-021-1/+1
|
* mention the r77252 changeGregory P. Smith2010-01-021-1/+4
|
* Issue #3745: Undo the requirement for new buffer API only objects to be passedGregory P. Smith2010-01-026-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.