Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
f54c268 Document link to Sorting HowTo 01 April 2010, 07:54:16 UTC
bf0dfb3 Issue #8032: For gdb7, a python-gdb.py file is added to the build, allowing to use advanced gdb features when debugging Python. 01 April 2010, 07:40:51 UTC
a01da93 Fix a test_pydoc failure on Neal Norwitz's buildbot. 01 April 2010, 04:02:00 UTC
6c9fc4c A couple small grammar fixes in test.rst, and rewrite the check_warnings docs to be clearer. 01 April 2010, 01:28:39 UTC
4fcf7d4 Add -Wd and -3 to the flags used to run the tests on Windows. 31 March 2010, 22:43:31 UTC
90fd01b Add -Wd and -3 to the flags used to run the tests. 31 March 2010, 22:18:09 UTC
6257a7b Replace catch_warnings with check_warnings when it makes sense. Use assertRaises context manager to simplify some tests. 31 March 2010, 22:01:03 UTC
ad59833 Fix typo 31 March 2010, 21:40:32 UTC
a57df2c Issue #8268: Old-style classes (not just instances) now support weak references. 31 March 2010, 21:32:15 UTC
26cc99d Fix test for xml.etree when using a non-ascii path. And use check_warnings instead of catch_warnings. 31 March 2010, 21:21:54 UTC
f7f2d6f - Issue #8233: When run as a script, py_compile.py optionally takes a single 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). 31 March 2010, 21:07:16 UTC
fe4900c Correct what was intended to be a single-tuple to just be a != check. Thanks to Éric Araujo for noticing that. 31 March 2010, 17:36:09 UTC
fcc500e Silence a py3k warning. 31 March 2010, 08:33:50 UTC
eb72991 Revert r79179 and merge r75584 to explain how to implement a queue using collection.deque instead of a list. 31 March 2010, 07:26:24 UTC
aeb2e82 Fix #8225. xml.etree was displaying an incorrect link when viewed in help. 31 March 2010, 03:10:21 UTC
b102dda Revert rev. 79509; ctypes doesn't build on linux. 30 March 2010, 20:57:06 UTC
08b56b6 Removed merge tracking for "svnmerge" for svn+ssh://pythondev@svn.python.org/python/branches/branch_libffi-3_0_10-win 30 March 2010, 19:55:34 UTC
5006ba0 Merged revisions 79115,79424,79491 via svnmerge from 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. ........ 30 March 2010, 19:46:23 UTC
8f66efe Fix small error in r79502 30 March 2010, 18:58:22 UTC
6032c25 Issue #8248: Add some tests for the bool type. Patch by Gregory Nofi. 30 March 2010, 18:49:45 UTC
7e21325 add inspect.getcallargs, which binds function arguments like a normal call #3135 Patch by George Sakkis 30 March 2010, 17:58:13 UTC
ec71794 fix ACKS: alphabetic order and UTF-8 30 March 2010, 16:42:47 UTC
75c6676 #8263: Now regrtest.py will report a failure if it receives a KeyboardInterrupt (SIGINT). 30 March 2010, 16:31:14 UTC
58b6566 Highlight the change of behavior related to r79494. Now VT and FF are linebreaks. 30 March 2010, 16:29:03 UTC
22b2438 #7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according to Unicode Standard Annex #14. 30 March 2010, 08:24:06 UTC
e6410c5 Backport of weakref.WeakSet and tests from Python 3. 29 March 2010, 20:04:23 UTC
b8d688c Update itertools recipe for consume(). 28 March 2010, 18:25:01 UTC
d282b93 Add a note on optimizing the itertools recipes for production. 28 March 2010, 18:08:15 UTC
5b027f8 Update itertools recipes. 28 March 2010, 18:02:41 UTC
a7e08fe Addition of delta keyword argument to unittest.TestCase.assertAlmostEquals 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. 27 March 2010, 19:10:11 UTC
b35ecf4 Rename the unittest test_suite function to not clash with a test module name (unittest.test.test_suite is now unambiguous). 27 March 2010, 13:42:34 UTC
ff88939 A fix for running unittest tests on platforms without the audioop module (e.g. jython and IronPython) 27 March 2010, 12:55:19 UTC
9588d99 Add Misc/NEWS entry for r79455. 27 March 2010, 11:14:37 UTC
71b7fac Make Fraction to complex comparisons with <=, <, >= or > raise TypeError. 27 March 2010, 11:09:29 UTC
355adc5 Ensure that the failed or unexpected tests are sorted before printing. 26 March 2010, 19:32:44 UTC
eee91cd Issue #8222: Enable the SSL_MODE_AUTO_RETRY flag on SSL sockets, so that blocking reads and writes are always retried by OpenSSL itself. (this is a followup to issue #3890) 26 March 2010, 19:27:16 UTC
c7024e7 reorder imports 26 March 2010, 13:53:32 UTC
79d1fa9 Makefile.pre.in for the unittest/test directory 26 March 2010, 13:07:38 UTC
fa2f1cd Addition of -c command line option to unittest, to handle ctrl-c during a test run more elegantly 26 March 2010, 03:18:31 UTC
ee62788 Move a support TestCase out of the main namespace in unittest.test.test_suite 26 March 2010, 02:53:56 UTC
95ac82b Remove incorrect docstring in unittest.test 26 March 2010, 00:03:38 UTC
35b3792 Turn unittest tests into a package 25 March 2010, 23:56:33 UTC
fbe5199 Fix #6538. Markup RegexObject and MatchObject as classes. Patch by Ryan Arana. 25 March 2010, 23:48:54 UTC
0663873 make naming convention consistent 25 March 2010, 23:27:16 UTC
fd37dd4 Fix test_unittest and test_warnings when running "python -Werror -m test.regrtest" 25 March 2010, 20:39:10 UTC
8aa5a58 #8207: Fix test_pep277 on OS X 25 March 2010, 20:33:49 UTC
c8a730b Syntax cleanup `== None` -> `is None` 25 March 2010, 20:32:07 UTC
ff33e2f make an attempt to add capsule to the Windows build 25 March 2010, 03:44:24 UTC
4a0661b Add various items 25 March 2010, 01:35:51 UTC
4e9830f Remove extraneous experimental code checked in by accident. 25 March 2010, 01:23:27 UTC
c1f842b Fix a gcc warning introduced by r79397. 25 March 2010, 01:18:38 UTC
37aab87 fix eol properties on capsule files 25 March 2010, 01:05:57 UTC
cf71456 set eol on email example 25 March 2010, 01:04:58 UTC
1c7b0e3 set bsddb eol style 25 March 2010, 01:03:51 UTC
402b73f Backported PyCapsule from 3.1, and converted most uses of CObject to PyCapsule. 25 March 2010, 00:54:54 UTC
53ff86e Fix _curses.tiget*() functions: deny None to avoid a crash. Fix the following calls: _curses.tigetflag(None), _curses.tigetnum(None), _curses.tigetstr(None). 25 March 2010, 00:51:58 UTC
6cbf90f Issue #8211: Save/restore CFLAGS around AC_PROG_CC in configure.in, compiler optimizations are disabled when --with-pydebug is used. 25 March 2010, 00:21:53 UTC
2ec1f27 Replace license with simple attribution. 24 March 2010, 23:03:24 UTC
2c6799a Revert r79384 (the fix failed). 24 March 2010, 22:12:15 UTC
fb224e3 replace copy right notice with simple attribution 24 March 2010, 22:03:09 UTC
914bdbb Trying to fix #8108. Will watch the buildbot(s). 24 March 2010, 21:55:12 UTC
36b9fbb Skip tests which depend on multiprocessing.sharedctypes, if _ctypes is not available. 24 March 2010, 19:33:25 UTC
f91a679 Various edits 24 March 2010, 18:07:43 UTC
66d19e2 logging: Updated SysLogHandler documentation. 24 March 2010, 17:36:35 UTC
27e0240 Skip test_ascii_formatd if _ctypes is not available (BSD, ...). Previous change was incomplete (r79334). 24 March 2010, 17:32:58 UTC
a3c39c0 logging: Documentation tweak. 24 March 2010, 15:10:40 UTC
0b79d0a Add Brian Curtin. 24 March 2010, 15:05:53 UTC
b0623d6 logging: Added LOG_FTP for SysLogHandler and updated documentation. 24 March 2010, 14:31:21 UTC
f8d1d0f Another typo. 23 March 2010, 23:53:20 UTC
d72a628 #8217: typo. 23 March 2010, 23:26:21 UTC
d4b721b the == test doesn't work on Solaris #8210 23 March 2010, 20:58:37 UTC
3c919cf The SIGINT signal may happen earlier, during site.py initialization. 23 March 2010, 19:19:16 UTC
9858f63 add some unittest items 23 March 2010, 18:39:24 UTC
446ff14 The standard error should be empty when the signal is killed, except on SIGINT. 23 March 2010, 15:05:30 UTC
fc4d6d7 Silence test_subprocess. 23 March 2010, 14:36:45 UTC
875bdf7 Skip test_format_deprecation if _ctypes is not available. Add a filter to the warning check. 23 March 2010, 11:07:54 UTC
67b4e18 Fixed Issue8209 - OptionParser keyword arg 'epilog' not mentioned in the docs 23 March 2010, 08:46:31 UTC
996e88a Merged revisions 79313,79324 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r79313 | benjamin.peterson | 2010-03-22 17:59:57 -0500 (Mon, 22 Mar 2010) | 1 line another case where a symbol is needed ........ r79324 | benjamin.peterson | 2010-03-22 21:59:47 -0500 (Mon, 22 Mar 2010) | 1 line use unicode literals ........ 23 March 2010, 03:03:55 UTC
0d0b80b Link specifically to the UCD version 5.2.0. 23 March 2010, 00:38:12 UTC
88b6f8b Remove link to objects.rst (gone in r79179). 23 March 2010, 00:25:19 UTC
ae735a7 Update the version number of the Unicode Database in a few more places. 22 March 2010, 23:07:32 UTC
3bcc35b Merged revisions 79309 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r79309 | benjamin.peterson | 2010-03-22 17:50:47 -0500 (Mon, 22 Mar 2010) | 1 line pass correct symbol in ........ 22 March 2010, 22:54:42 UTC
176cda1 Issue #8205: Remove the "Modules" directory from sys.path when Python is running from the build directory (POSIX only). 22 March 2010, 22:52:11 UTC
e1f4c92 #7667: Fix doctest failures with non-ASCII paths. 22 March 2010, 22:45:50 UTC
798e540 Merged revisions 79077,79137,79304-79305 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r79077 | benjamin.peterson | 2010-03-18 18:05:29 -0500 (Thu, 18 Mar 2010) | 1 line port detect_encoding improvements from py3k ........ r79137 | benjamin.peterson | 2010-03-20 11:12:53 -0500 (Sat, 20 Mar 2010) | 1 line add a fixer for setting sys.exitfunc #2356 ........ r79304 | benjamin.peterson | 2010-03-22 17:20:22 -0500 (Mon, 22 Mar 2010) | 1 line fix test_parser when it's run in a path with spaces #7666 ........ r79305 | benjamin.peterson | 2010-03-22 17:27:07 -0500 (Mon, 22 Mar 2010) | 1 line normalize whitespace ........ 22 March 2010, 22:40:06 UTC
513d9ae Issue #7512: shutil.copystat() could raise an OSError when the filesystem didn't support chflags() (for example ZFS under FreeBSD). The error is now silenced. 22 March 2010, 19:59:46 UTC
0805e6e #7668: Fix test_httpservers failure when sys.executable contains non-ASCII bytes. 22 March 2010, 17:18:18 UTC
eba2aca Preserve backward compatibility of the ctypes module. "This file should be kept compatible with Python 2.3, see PEP 291." 22 March 2010, 16:36:51 UTC
9e7a4c9 Issue #7703: ctypes supports both buffer() and memoryview(). The former is deprecated. Complement of r79288. 22 March 2010, 16:07:38 UTC
c9d1a78 Issue #7860: platform.uname now reports the correct 'machine' type when Python is running in WOW64 mode on 64 bit Windows. Patch by Brian Curtin. 22 March 2010, 15:55:09 UTC
804899b logging: Added getChild utility method to Logger and added isEnabledFor method to LoggerAdapter. 22 March 2010, 15:29:01 UTC
73c22e9 Missing testsuite files 22 March 2010, 15:18:46 UTC
f08a017 Get rid of buffer() in test_ctypes: backport the 3.x tests. 22 March 2010, 15:02:46 UTC
52093b8 Fix an occasional test_ftplib failure, following r79226. 22 March 2010, 14:41:48 UTC
6557aac pybsddb 4.8.4 integration. Please, comment in issue #8156 22 March 2010, 14:22:26 UTC
31e928e Issue #8201: logging: Handle config errors when non-ASCII and Unicode logger names exist at the same time. 22 March 2010, 13:02:28 UTC
c7790ed Fix the NEWS about my last commit: an unicode subclass can now override the __unicode__ method (and not the __str__ method). Simplify also the testcase. 22 March 2010, 12:36:28 UTC
3017a7b Issue #8200: logging: Handle errors when multiprocessing is not fully loaded when logging occurs. 22 March 2010, 12:33:08 UTC
95affc4 Issue #1583863: An unicode subclass can now override the __str__ method 22 March 2010, 12:24:37 UTC
eef159b Correct usage message displayed for python -m unittest -h 22 March 2010, 02:49:08 UTC
back to top