summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add logging.dictConfig example; give up on writing a Ttk exampleAndrew M. Kuchling2010-05-081-4/+58
|
* Issue 7780. Adding a test for unittest test discovery from a dotted path.Michael Foord2010-05-081-0/+17
|
* configure.in: Avoid autoconf warning: Assume C89 semantics thatMatthias Klose2010-05-083-62/+62
| | | | | RETSIGTYPE is always void (issue #8510). pyconfig.h: Regenerate
* configure.in: convert all obsolete AC_TRY_* macros to AC_*_IFELSE,Matthias Klose2010-05-082-462/+506
| | | | only whitespace changes in generated configure (diff -uEwB).
* Issue #8084: ensure that the --user directoryRonald Oussoren2010-05-083-7/+37
| | | | | conforms to platforms standars on OSX when using a python framework.
* configure.in: s/AC_AIX/AC_USE_SYSTEM_EXTENSIONS/Matthias Klose2010-05-082-3/+2
|
* - configure.in: Replace AC_HELP_STRING with AS_HELP_STRINGMatthias Klose2010-05-082-35/+35
|
* - Issue #8510: Update to autoconf2.65.Matthias Klose2010-05-083-19197/+5112
|
* Fix for issue #7724: make it possible to build usingRonald Oussoren2010-05-083-22/+133
| | | | | the OSX 10.4u SDK on MacOSX 10.6 by honoring the specified SDK when looking for files.
* Issue #8659: Remove redundant ABS calls. Thanks Daniel Stutzbach.Mark Dickinson2010-05-081-5/+2
|
* Fixing the errors trigerred in test_urllib2net. Related to issue8656.Senthil Kumaran2010-05-081-5/+8
|
* Fix Issue8656 - urllib2 mangles file://-scheme URLsSenthil Kumaran2010-05-082-2/+3
|
* Get accents correctAndrew M. Kuchling2010-05-081-10/+8
|
* Add two itemsAndrew M. Kuchling2010-05-081-4/+75
|
* Issue 8547 - detecting and reporting that modules have been imported from ↵Michael Foord2010-05-072-3/+58
| | | | the wrong location under test discovery.
* revert r80932; it breaks windowsBenjamin Peterson2010-05-072-53/+1
|
* Merged revisions ↵Benjamin Peterson2010-05-0715-91/+167
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 79911,79916-79917,80018,80418,80572-80573,80635-80639,80668,80922 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r79911 | benjamin.peterson | 2010-04-09 15:38:53 -0500 (Fri, 09 Apr 2010) | 1 line use absolute import ........ r79916 | benjamin.peterson | 2010-04-09 16:05:21 -0500 (Fri, 09 Apr 2010) | 1 line generalize detection of __future__ imports and attach them to the tree ........ r79917 | benjamin.peterson | 2010-04-09 16:11:44 -0500 (Fri, 09 Apr 2010) | 1 line don't try to 'fix' relative imports when absolute_import is enabled #8858 ........ r80018 | benjamin.peterson | 2010-04-12 16:12:12 -0500 (Mon, 12 Apr 2010) | 4 lines prevent diffs from being mangled is multiprocess mode #6409 Patch by George Boutsioukis. ........ r80418 | benjamin.peterson | 2010-04-23 16:00:03 -0500 (Fri, 23 Apr 2010) | 1 line remove unhelpful description ........ r80572 | benjamin.peterson | 2010-04-27 20:33:54 -0500 (Tue, 27 Apr 2010) | 1 line use unicode literals ........ r80573 | jeffrey.yasskin | 2010-04-27 23:08:27 -0500 (Tue, 27 Apr 2010) | 6 lines Don't transform imports that are already relative. 2to3 turned from . import refactor into from .. import refactor which broke the transformation of 2to3 itself. ........ r80635 | benjamin.peterson | 2010-04-29 16:02:23 -0500 (Thu, 29 Apr 2010) | 1 line remove imports ........ r80636 | benjamin.peterson | 2010-04-29 16:02:41 -0500 (Thu, 29 Apr 2010) | 1 line unicode literal ........ r80637 | benjamin.peterson | 2010-04-29 16:03:42 -0500 (Thu, 29 Apr 2010) | 1 line must pass a string to Number ........ r80638 | benjamin.peterson | 2010-04-29 16:05:34 -0500 (Thu, 29 Apr 2010) | 1 line unicode literals ........ r80639 | benjamin.peterson | 2010-04-29 16:06:09 -0500 (Thu, 29 Apr 2010) | 1 line pass string to Number ........ r80668 | jeffrey.yasskin | 2010-04-30 18:02:47 -0500 (Fri, 30 Apr 2010) | 4 lines Make 2to3 run under Python 2.5 so that the benchmark suite at http://hg.python.org/benchmarks/ can use it and still run on implementations that haven't gotten to 2.6 yet. Fixes issue 8566. ........ r80922 | benjamin.peterson | 2010-05-07 11:06:25 -0500 (Fri, 07 May 2010) | 1 line prevent xrange transformation from wrapping range calls it produces in list ........
* Issue 8547 - detecting and reporting that modules have been imported from ↵Michael Foord2010-05-072-1/+53
| | | | the wrong location under test discovery.
* Issue #8571: Fix an internal error when compressing or decompressing aAntoine Pitrou2010-05-073-6/+67
| | | | | chunk larger than 1GB with the zlib module's compressor and decompressor objects.
* Adding tests for unittest command line handling of buffer, catchbreak and ↵Michael Foord2010-05-072-0/+206
| | | | failfast.
* Adding a test for unittest test discovery with dotted path name.Michael Foord2010-05-072-4/+21
|
* Re-word textAndrew M. Kuchling2010-05-071-13/+23
|
* Fix some markup and a class name. Also, wrap a long line.Antoine Pitrou2010-05-071-6/+8
|
* Testsuite for RFC3986 based parsing scenario. Related Issue1462525.Senthil Kumaran2010-05-071-6/+52
|
* Add a new section on the development plan; add an itemAndrew M. Kuchling2010-05-071-15/+64
|
* ensure that availability information is on its own line at the end of the ↵Benjamin Peterson2010-05-061-133/+341
| | | | function docs
* Availability gets its own lineBenjamin Peterson2010-05-061-4/+13
|
* adds handle_error(self):raise to test modules using asyncore to provide a ↵Giampaolo Rodolà2010-05-062-0/+9
| | | | clearer error message in case something goes wrong
* provides a clearer warning message when cheap inheritance with the ↵Giampaolo Rodolà2010-05-061-2/+3
| | | | underlying socket object is used
* Fix asyncore issues 8573 and 8483: _strerror might throw ValueError; ↵Giampaolo Rodolà2010-05-063-5/+42
| | | | asyncore.__getattr__ cheap inheritance caused confusing error messages when accessing undefined class attributes; added an alias for __str__ which now is used as a fallback for __repr__
* Add back in a line that was unneeded which advanced a pointer, but commentedBrett Cannon2010-05-061-0/+1
| | | | | | out as it is currently unneeded. This effectively adds back in the line removed in r80809 as a comment.
* Change section title; point to unittest2Andrew M. Kuchling2010-05-061-2/+5
|
* Add 2 items; record ideas for two initial sections; clarify wordingAndrew M. Kuchling2010-05-061-5/+20
|
* Describe ElementTree 1.3; rearrange new-module sections; describe dict views ↵Andrew M. Kuchling2010-05-061-72/+165
| | | | as sets; small edits and items
* `self` doesn't exist hereAntoine Pitrou2010-05-061-3/+3
|
* Use anonymous hyperlinksAndrew M. Kuchling2010-05-061-4/+4
|
* Fix #7863. Properly identify Windows 7 and Server 2008 R2.Brian Curtin2010-05-061-17/+34
| | | | | Removed various unused code and added a way to correctly determine server vs. workstation via the registry.
* Add various itemsAndrew M. Kuchling2010-05-061-7/+39
|
* Reword paragraph; fix filename, which should be pyconfig.hAndrew M. Kuchling2010-05-061-3/+3
|
* Have the serve.py script announce the directory it isR. David Murray2010-05-061-0/+1
| | | | | serving and which port it is serving it on (I can never remember the default port number it uses...)
* Untabify Modules/posixmodule.c (2)Victor Stinner2010-05-061-10/+10
| | | | Fix some more functions by hand
* Untabify Modules/posixmodule.cVictor Stinner2010-05-051-5047/+5047
| | | | | Run Antoine Pitrou "untabify" script + manual editions (OS/2 and some continuation lines).
* Revert a change where an expression is not needed now, but could be in the ↵Brett Cannon2010-05-051-0/+1
| | | | future.
* Issue #1533: test_range in test_builtin: fix test comment and add testMark Dickinson2010-05-051-2/+2
| | | | for rejection of small floats. Thanks Alexander Belopolsky.
* removed non needed linesTarek Ziadé2010-05-051-2/+1
|
* Issue #8625: Turn off gcc optimization in debug builds.Mark Dickinson2010-05-053-3/+8
|
* Fixed #4265: shutil.copyfile() was leaking file descriptors when disk fillsTarek Ziadé2010-05-053-10/+112
|
* Issue 8628: fix incorrect documentation for numbers.Complex.imag.Mark Dickinson2010-05-051-2/+2
|
* Mention how Clang's static anaylzer was run over Objects/ and Python/.Brett Cannon2010-05-051-0/+2
|
* Remove an unneeded variable assignment.Brett Cannon2010-05-051-1/+0
| | | | Found using Clang's static analyzer.