summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Backported PyCapsule from 3.1, and converted most uses ofLarry Hastings2010-03-2540-127/+1048
| | | | CObject to PyCapsule.
* Fix _curses.tiget*() functions: deny None to avoid a crash.Victor Stinner2010-03-251-3/+3
| | | | | Fix the following calls: _curses.tigetflag(None), _curses.tigetnum(None), _curses.tigetstr(None).
* Issue #8211: Save/restore CFLAGS around AC_PROG_CC in configure.in, compilerVictor Stinner2010-03-253-0/+7
| | | | optimizations are disabled when --with-pydebug is used.
* Replace license with simple attribution.Steven Bethard2010-03-241-13/+1
|
* Revert r79384 (the fix failed).Antoine Pitrou2010-03-241-11/+2
|
* replace copy right notice with simple attributionBenjamin Peterson2010-03-241-13/+1
|
* Trying to fix #8108. Will watch the buildbot(s).Antoine Pitrou2010-03-241-2/+11
|
* Skip tests which depend on multiprocessing.sharedctypes, if _ctypes is not ↵Florent Xicluna2010-03-241-31/+33
| | | | available.
* Various editsAndrew M. Kuchling2010-03-241-19/+23
|
* logging: Updated SysLogHandler documentation.Vinay Sajip2010-03-241-0/+8
|
* Skip test_ascii_formatd if _ctypes is not available (BSD, ...).Florent Xicluna2010-03-242-14/+9
| | | | Previous change was incomplete (r79334).
* logging: Documentation tweak.Vinay Sajip2010-03-241-2/+2
|
* Add Brian Curtin.Martin v. Löwis2010-03-241-0/+2
|
* logging: Added LOG_FTP for SysLogHandler and updated documentation.Vinay Sajip2010-03-243-1/+76
|
* Another typo.Ezio Melotti2010-03-231-1/+1
|
* #8217: typo.Ezio Melotti2010-03-231-1/+1
|
* the == test doesn't work on Solaris #8210Benjamin Peterson2010-03-232-3/+3
|
* The SIGINT signal may happen earlier, during site.py initialization.Florent Xicluna2010-03-231-4/+1
|
* add some unittest itemsAndrew M. Kuchling2010-03-231-13/+20
|
* The standard error should be empty when the signal is killed, except on SIGINT.Florent Xicluna2010-03-231-2/+8
|
* Silence test_subprocess.Florent Xicluna2010-03-231-24/+12
|
* Skip test_format_deprecation if _ctypes is not available. Add a filter to ↵Florent Xicluna2010-03-231-6/+11
| | | | the warning check.
* Fixed Issue8209 - OptionParser keyword arg 'epilog' not mentioned in the docsSenthil Kumaran2010-03-231-1/+2
|
* Merged revisions 79313,79324 via svnmerge fromBenjamin Peterson2010-03-231-5/+5
| | | | | | | | | | | | | | 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 ........
* Link specifically to the UCD version 5.2.0.Ezio Melotti2010-03-232-3/+4
|
* Remove link to objects.rst (gone in r79179).Ezio Melotti2010-03-231-1/+1
|
* Update the version number of the Unicode Database in a few more places.Ezio Melotti2010-03-224-14/+15
|
* Merged revisions 79309 via svnmerge fromBenjamin Peterson2010-03-221-1/+1
| | | | | | | | | | 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 ........
* Issue #8205: Remove the "Modules" directory from sys.path when Python is ↵Florent Xicluna2010-03-222-1/+4
| | | | running from the build directory (POSIX only).
* #7667: Fix doctest failures with non-ASCII paths.Florent Xicluna2010-03-222-1/+4
|
* Merged revisions 79077,79137,79304-79305 via svnmerge fromBenjamin Peterson2010-03-224-10/+170
| | | | | | | | | | | | | | | | | | | | | | 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 ........
* Issue #7512: shutil.copystat() could raise an OSError when the filesystemAntoine Pitrou2010-03-222-2/+10
| | | | | didn't support chflags() (for example ZFS under FreeBSD). The error is now silenced.
* #7668: Fix test_httpservers failure when sys.executable contains non-ASCII ↵Florent Xicluna2010-03-221-2/+12
| | | | bytes.
* Preserve backward compatibility of the ctypes module.Florent Xicluna2010-03-221-0/+11
| | | | "This file should be kept compatible with Python 2.3, see PEP 291."
* Issue #7703: ctypes supports both buffer() and memoryview(). The former is ↵Florent Xicluna2010-03-223-6/+25
| | | | | | deprecated. Complement of r79288.
* Issue #7860: platform.uname now reports the correct 'machine' typeR. David Murray2010-03-223-1/+29
| | | | | when Python is running in WOW64 mode on 64 bit Windows. Patch by Brian Curtin.
* logging: Added getChild utility method to Logger and added isEnabledFor ↵Vinay Sajip2010-03-224-1/+62
| | | | method to LoggerAdapter.
* Missing testsuite filesJesus Cea2010-03-223-0/+716
|
* Get rid of buffer() in test_ctypes: backport the 3.x tests.Florent Xicluna2010-03-227-47/+30
|
* Fix an occasional test_ftplib failure, following r79226.Antoine Pitrou2010-03-221-1/+6
|
* pybsddb 4.8.4 integration. Please, comment in issue #8156Jesus Cea2010-03-2223-451/+3356
|
* Issue #8201: logging: Handle config errors when non-ASCII and Unicode logger ↵Vinay Sajip2010-03-223-2/+15
| | | | names exist at the same time.
* Fix the NEWS about my last commit: an unicode subclass can now override theVictor Stinner2010-03-222-3/+1
| | | | | | __unicode__ method (and not the __str__ method). Simplify also the testcase.
* Issue #8200: logging: Handle errors when multiprocessing is not fully loaded ↵Vinay Sajip2010-03-222-3/+14
| | | | when logging occurs.
* Issue #1583863: An unicode subclass can now override the __str__ methodVictor Stinner2010-03-223-1/+14
|
* Correct usage message displayed for python -m unittest -hMichael Foord2010-03-223-10/+4
|
* expected failure should not trigger failfast behavior in unittest.Michael Foord2010-03-223-8/+1
|
* Removing Python 2.3 compatibility code from unittest.Michael Foord2010-03-223-8/+5
|
* Fix failing test committed by accident.Michael Foord2010-03-221-1/+1
|
* -f/--failfast command line option for unittest. Issue 8074. Documentation ↵Michael Foord2010-03-224-26/+86
| | | | still needed. Plus minor change to test_unittest to allow it to be run with python -m test.unittest