summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add and update itertools recipes.Raymond Hettinger2010-04-021-1/+23
|
* #7092: Fix some -3 warnings, and fix Lib/platform.py when the path contains ↵Florent Xicluna2010-04-016-21/+22
| | | | a double-quote.
* Issue #8281: rename test_gdb_sample.py to gdb_sample.py, otherwise it gets ↵Antoine Pitrou2010-04-011-0/+0
| | | | | | picked as a regular test by regrtest.py, and fails.
* Issue #8276: PyEval_CallObject() is now only available in macro form. TheAntoine Pitrou2010-04-013-16/+5
| | | | | function declaration, which was kept for backwards compatibility reasons, is now removed (the macro was introduced in 1997!).
* Document link to Sorting HowToRaymond Hettinger2010-04-011-0/+3
|
* Issue #8032: For gdb7, a python-gdb.py file is added to the build,Martin v. Löwis2010-04-019-1/+2083
| | | | allowing to use advanced gdb features when debugging Python.
* Fix a test_pydoc failure on Neal Norwitz's buildbot.Brian Curtin2010-04-011-1/+1
|
* A couple small grammar fixes in test.rst, and rewrite theR. David Murray2010-04-011-38/+46
| | | | check_warnings docs to be clearer.
* Add -Wd and -3 to the flags used to run the tests on Windows.Ezio Melotti2010-03-311-1/+1
|
* Add -Wd and -3 to the flags used to run the tests.Ezio Melotti2010-03-311-2/+2
|
* Replace catch_warnings with check_warnings when it makes sense. Use ↵Florent Xicluna2010-03-3121-226/+112
| | | | assertRaises context manager to simplify some tests.
* Fix typoFlorent Xicluna2010-03-311-1/+1
|
* Issue #8268: Old-style classes (not just instances) now support weakAntoine Pitrou2010-03-315-2/+29
| | | | references.
* Fix test for xml.etree when using a non-ascii path. And use check_warnings ↵Florent Xicluna2010-03-311-16/+26
| | | | instead of catch_warnings.
* - Issue #8233: When run as a script, py_compile.py optionally takes a singleBarry Warsaw2010-03-312-10/+31
| | | | | | argument `-` which tells it to read files to compile from stdin. Each line is read on demand and the named file is compiled immediately. (Original patch by Piotr Ożarowski).
* Correct what was intended to be a single-tuple to just be a != check.Brian Curtin2010-03-311-1/+1
| | | | Thanks to Éric Araujo for noticing that.
* Silence a py3k warning.Ezio Melotti2010-03-311-3/+6
|
* Revert r79179 and merge r75584 to explain how to implement a queue using ↵Ezio Melotti2010-03-311-14/+13
| | | | collection.deque instead of a list.
* Fix #8225. xml.etree was displaying an incorrect link when viewed in help.Brian Curtin2010-03-312-1/+8
|
* Revert rev. 79509; ctypes doesn't build on linux.Thomas Heller2010-03-3018-379/+2072
|
* Removed merge tracking for "svnmerge" forThomas Heller2010-03-300-0/+0
| | | | svn+ssh://pythondev@svn.python.org/python/branches/branch_libffi-3_0_10-win
* Merged revisions 79115,79424,79491 via svnmerge fromThomas Heller2010-03-3018-2072/+379
| | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/branch_libffi-3_0_10-win ........ r79115 | thomas.heller | 2010-03-19 22:14:47 +0100 (Fr, 19 Mrz 2010) | 7 lines Work in progress. 2 tests fail on x86/win32 because the stack checking code in ffi_call_win32 is not yet implemented. Remove most files from _ctypes/libffi_msvc, only two include files stay (updated from _ctypes/libffi/...). Other files are used in the cross-platform _ctypes/libffi directory. ........ r79424 | thomas.heller | 2010-03-25 19:28:02 +0100 (Do, 25 Mrz 2010) | 1 line Build _ctypes on Win64. ........ r79491 | thomas.heller | 2010-03-29 21:30:33 +0200 (Mo, 29 Mrz 2010) | 4 lines On Windows, ctypes does no longer check the stack before and after calling a foreign function. This allows to use the unmodified libffi library. ........
* Fix small error in r79502Antoine Pitrou2010-03-301-4/+4
|
* Issue #8248: Add some tests for the bool type. Patch by Gregory Nofi.Antoine Pitrou2010-03-305-0/+35
|
* add inspect.getcallargs, which binds function arguments like a normal call #3135Benjamin Peterson2010-03-304-4/+306
| | | | Patch by George Sakkis
* fix ACKS: alphabetic order and UTF-8Florent Xicluna2010-03-301-3/+3
|
* #8263: Now regrtest.py will report a failure if it receives a ↵Florent Xicluna2010-03-302-12/+21
| | | | KeyboardInterrupt (SIGINT).
* Highlight the change of behavior related to r79494. Now VT and FF are ↵Florent Xicluna2010-03-301-2/+3
| | | | linebreaks.
* #7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according ↵Florent Xicluna2010-03-305-13/+65
| | | | to Unicode Standard Annex #14.
* Backport of weakref.WeakSet and tests from Python 3.Michael Foord2010-03-296-1/+602
|
* Update itertools recipe for consume().Raymond Hettinger2010-03-281-1/+7
|
* Add a note on optimizing the itertools recipes for production.Raymond Hettinger2010-03-281-0/+6
|
* Update itertools recipes.Raymond Hettinger2010-03-281-7/+28
|
* Addition of delta keyword argument to unittest.TestCase.assertAlmostEquals ↵Michael Foord2010-03-272-13/+69
| | | | | | and assertNotAlmostEquals This allows the comparison of objects by specifying a maximum difference; this includes the comparing of non-numeric objects that don't support rounding.
* Rename the unittest test_suite function to not clash with a test module name ↵Michael Foord2010-03-272-3/+3
| | | | (unittest.test.test_suite is now unambiguous).
* A fix for running unittest tests on platforms without the audioop module ↵Michael Foord2010-03-272-14/+7
| | | | (e.g. jython and IronPython)
* Add Misc/NEWS entry for r79455.Mark Dickinson2010-03-271-0/+5
|
* Make Fraction to complex comparisons with <=, <, >= or > raise TypeError.Mark Dickinson2010-03-272-4/+19
|
* Ensure that the failed or unexpected tests are sorted before printing.Florent Xicluna2010-03-261-7/+2
|
* Issue #8222: Enable the SSL_MODE_AUTO_RETRY flag on SSL sockets, so that ↵Antoine Pitrou2010-03-262-3/+4
| | | | | | | | blocking reads and writes are always retried by OpenSSL itself. (this is a followup to issue #3890)
* reorder importsBenjamin Peterson2010-03-261-1/+2
|
* Makefile.pre.in for the unittest/test directoryMichael Foord2010-03-261-1/+1
|
* Addition of -c command line option to unittest, to handle ctrl-c during a ↵Michael Foord2010-03-266-16/+319
| | | | test run more elegantly
* Move a support TestCase out of the main namespace in unittest.test.test_suiteMichael Foord2010-03-261-7/+7
|
* Remove incorrect docstring in unittest.testMichael Foord2010-03-261-14/+0
|
* Turn unittest tests into a packageMichael Foord2010-03-2514-4420/+4515
|
* Fix #6538. Markup RegexObject and MatchObject as classes. Patch by Ryan Arana.Brian Curtin2010-03-251-173/+176
|
* make naming convention consistentBenjamin Peterson2010-03-251-2/+2
|
* Fix test_unittest and test_warnings when running "python -Werror -m ↵Florent Xicluna2010-03-252-11/+11
| | | | test.regrtest"
* #8207: Fix test_pep277 on OS XFlorent Xicluna2010-03-252-11/+20
|