summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Silence compiler warning.Mark Dickinson2010-03-071-1/+4
|
* Issue #1530559: When packing a non-integer with any integer conversionMark Dickinson2010-03-074-34/+127
| | | | | | | | | code using struct.pack, attempt to convert to an integer first using the argument's __int__ method (if present). Also raise a DeprecationWarning for any such usage of __int__. This fixes a regression from 2.6, where some (but not all) integer conversion codes already used __int__.
* Do not fail if returncode is 0 on send_signal/kill/terminate, for win32 ↵Florent Xicluna2010-03-071-39/+44
| | | | | | platforms. Do not hide the KeyboardInterrupt on POSIX platforms.
* #5341: more built-in vs builtin fixes.Georg Brandl2010-03-077-62/+62
|
* #2777: Enable test_send_signal, test_terminate and test_kill on win32 platforms.Florent Xicluna2010-03-071-3/+0
|
* Issue #7849: Now the utility ``check_warnings`` verifies if the warnings areFlorent Xicluna2010-03-078-26/+101
| | | | effectively raised. A new utility ``check_py3k_warnings`` deals with py3k warnings.
* Fix some py3k warnings in the standard library.Florent Xicluna2010-03-079-40/+45
|
* Fix for issue #7998: pythonw didn't work when --with-framework-name wasRonald Oussoren2010-03-072-2/+2
| | | | specified
* Reverting the change made in r78431.Senthil Kumaran2010-03-072-4/+0
|
* eliminate py3k warnings in argparseBenjamin Peterson2010-03-072-0/+12
|
* more specific exception for wrong kind of raise #8082Benjamin Peterson2010-03-071-2/+3
|
* post release updateBenjamin Peterson2010-03-062-1/+13
|
* tag 2.7 alpha 4Benjamin Peterson2010-03-061-0/+1
|
* bump version to 2.7a4v2.7a4Benjamin Peterson2010-03-066-7/+7
|
* Skip test_send_signal, test_kill, test_terminate on win32 platforms, for ↵Florent Xicluna2010-03-061-5/+11
| | | | 2.7a4 release.
* Minor tweaking of previous r78734, and add a NEWS entry.Florent Xicluna2010-03-065-52/+61
|
* Create test_genericpath.CommonTest and reuse it to test other path modules.Florent Xicluna2010-03-064-325/+165
|
* Do not print the header lines when running a single test.Florent Xicluna2010-03-062-7/+12
|
* Added checks for tuples in dictConfig.Vinay Sajip2010-03-061-0/+12
|
* Added schema version test in dictConfig.Vinay Sajip2010-03-062-0/+88
|
* Backport "test.regrtest -R 2:3" syntax from py3k branch, and other minor ↵Florent Xicluna2010-03-061-22/+21
| | | | adjustments.
* #6906: TCL_LIBRARY and TK_LIBRARY environment variables should be encoded.Florent Xicluna2010-03-062-5/+7
|
* #2777: Apply same recipe on win32, i.e. do not inherit file handles.Florent Xicluna2010-03-061-3/+5
|
* Print platform information to stdout, to help troubleshooting ↵Florent Xicluna2010-03-061-2/+12
| | | | platform-specific failures.
* Keep the test files in the ./build/ subdirectory, if Python is not installed.Florent Xicluna2010-03-061-44/+33
| | | | Remove two hacks which are no longer needed after #7712, because all __file__ attributes are absolute.
* Call setreuid and setregid in a subprocess to avoid altering the test runner'sGregory P. Smith2010-03-061-2/+16
| | | | process state. Should fix issue8045.
* settscdump is definitely an implementation detailBenjamin Peterson2010-03-061-0/+5
|
* search in the alternative location for VCExpressTarek Ziadé2010-03-061-1/+11
|
* fixed various failures and environment alterations in distutils.test_build_extTarek Ziadé2010-03-061-27/+35
|
* files used by win32 testsTarek Ziadé2010-03-062-0/+338
|
* simplified the fallback caseTarek Ziadé2010-03-061-4/+3
|
* provide a fallback for xxmodule.c in case the buildir is not presentTarek Ziadé2010-03-062-1/+384
|
* copied back the build_ext tests from 2.6Tarek Ziadé2010-03-061-115/+83
|
* #2777: Apply same recipe for test_terminate and test_kill, i.e. close or ↵Florent Xicluna2010-03-061-2/+4
| | | | redirect fds.
* Factored out time usage determination into a method, to facilitate ↵Vinay Sajip2010-03-051-5/+11
| | | | alternative formatting implementations in the future.
* #2777: Handle fds more carefully to try to fix some x86-Linux failures ↵Florent Xicluna2010-03-051-3/+6
| | | | (namely, neal bot and twisted bot).
* Remove the redundant #define: PY_STRUCT_FLOAT_COERCEMark Dickinson2010-03-051-13/+0
|
* Fix incorrect stacklevel for DeprecationWarnings originating from the struct ↵Mark Dickinson2010-03-052-37/+16
| | | | | | | module. Also clean up related tests in test_struct. The stacklevel fix should be backported to 2.6 once that branch is unfrozen.
* Merged code from pysqlite 2.6.0.Gerhard Häring2010-03-0525-83/+626
|
* Merged revisions 78679,78681 via svnmerge fromBenjamin Peterson2010-03-052-0/+0
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r78679 | benjamin.peterson | 2010-03-04 21:10:46 -0600 (Thu, 04 Mar 2010) | 1 line set svn:eol-style ........ r78681 | benjamin.peterson | 2010-03-04 21:19:06 -0600 (Thu, 04 Mar 2010) | 1 line remove svn:executable property ........
* remove the svn:executable property from files that don't have shebang linesBenjamin Peterson2010-03-0546-0/+0
|
* set svn:eol-style on Lib filesBenjamin Peterson2010-03-050-0/+0
|
* set svn:eol-styleBenjamin Peterson2010-03-050-0/+0
|
* These line should not be there.Florent Xicluna2010-03-051-1/+0
|
* Let's use assertIsNone / assertIsNotNone. It's hype.Florent Xicluna2010-03-051-5/+5
|
* Workaround #3137: Retry SIGINT if it is not received the first time.Florent Xicluna2010-03-051-2/+13
| | | | test_send_signal should not hang anymore on various Linux distributions.
* reverted the usage of compiler_obj in Python's setup.pyTarek Ziadé2010-03-051-39/+39
|
* reverting partially distutils to its 2.6.x state so 2.7a4 looks more like ↵Tarek Ziadé2010-03-0514-1234/+1157
| | | | the 2.7b1 in this. the whole revert will occur after a4 is tagged
* #2777: Enable test_send_signal, test_kill and test_terminate on all platforms.Florent Xicluna2010-03-041-6/+20
|
* Cleanup.Florent Xicluna2010-03-041-5/+5
|