]> granicus.if.org Git - python/log
python
14 years agoRemoved the new max_diff argument to assertSequenceEqual. All unittest.TestCase asser...
Michael Foord [Sat, 5 Jun 2010 12:10:52 +0000 (12:10 +0000)]
Removed the new max_diff argument to assertSequenceEqual. All unittest.TestCase assert methods that use difflib to produce failure messages now truncate overly long messages. New class attribute unittest.TestCase.maxDiff to configure this if necessary. Issue 8351.

14 years agoIssue #8627: remove out-of-date warning about overriding __cmp__
Mark Dickinson [Sat, 5 Jun 2010 11:52:24 +0000 (11:52 +0000)]
Issue #8627: remove out-of-date warning about overriding __cmp__

14 years agoExtract error message truncating into a method (unittest.TestCase._truncateMessage).
Michael Foord [Sat, 5 Jun 2010 11:46:59 +0000 (11:46 +0000)]
Extract error message truncating into a method (unittest.TestCase._truncateMessage).

14 years agoIssue 8351. Suppress large diffs in unittest.TestCase.assertSequenceEqual.
Michael Foord [Sat, 5 Jun 2010 11:23:51 +0000 (11:23 +0000)]
Issue 8351. Suppress large diffs in unittest.TestCase.assertSequenceEqual.

14 years agounittest TestLoader test discovery filename matching done in a method. This makes...
Michael Foord [Sat, 5 Jun 2010 10:39:42 +0000 (10:39 +0000)]
unittest TestLoader test discovery filename matching done in a method. This makes it easier to override the matching strategy in subclasses. No behaviour change in actual implementation.

14 years ago_PyObject_LookupSpecial returns a new reference
Benjamin Peterson [Sat, 5 Jun 2010 02:07:01 +0000 (02:07 +0000)]
_PyObject_LookupSpecial returns a new reference

14 years agofix ref counting
Benjamin Peterson [Sat, 5 Jun 2010 01:00:10 +0000 (01:00 +0000)]
fix ref counting

14 years agoimplement object.__format__ with PyObject_Format
Benjamin Peterson [Sat, 5 Jun 2010 00:56:46 +0000 (00:56 +0000)]
implement object.__format__ with PyObject_Format

14 years agoremove PyType_Ready call; float should be initialized in interpreter startup
Benjamin Peterson [Sat, 5 Jun 2010 00:38:22 +0000 (00:38 +0000)]
remove PyType_Ready call; float should be initialized in interpreter startup

14 years agoproperly lookup the __format__ special method
Benjamin Peterson [Sat, 5 Jun 2010 00:32:50 +0000 (00:32 +0000)]
properly lookup the __format__ special method

14 years ago#4487: have Charset check with codecs for possible aliases.
R. David Murray [Fri, 4 Jun 2010 19:51:06 +0000 (19:51 +0000)]
#4487: have Charset check with codecs for possible aliases.

Previously, unexpected results occurred when email was passed, for example,
'utf8' as a charset name, since email would accept it but would *not* use
the 'utf-8' codec for it, even though Python itself recognises that as
an alias for utf-8.  Now Charset checks with codecs for aliases as well
as its own internal table.  Issue 8898 has been opened to change this
further in py3k so that all aliasing is routed through the codecs module.

14 years agoIssue #6470: Drop UNC prefix in FixTk.py
Martin v. Löwis [Fri, 4 Jun 2010 19:39:07 +0000 (19:39 +0000)]
Issue #6470: Drop UNC prefix in FixTk.py
Patch by Christop Gohlke and Amaury Forgeot d'Arc.

14 years agoDisplay installer warning that Windows 2000 won't
Martin v. Löwis [Fri, 4 Jun 2010 19:15:32 +0000 (19:15 +0000)]
Display installer warning that Windows 2000 won't
be supported in future releases.

14 years agoIssue #5464: Implement plural forms in msgfmt.py.
Martin v. Löwis [Fri, 4 Jun 2010 18:04:42 +0000 (18:04 +0000)]
Issue #5464: Implement plural forms in msgfmt.py.

14 years agoIssue #8864: Define _XOPEN_SOURCE on Solaris for the
Martin v. Löwis [Fri, 4 Jun 2010 17:18:42 +0000 (17:18 +0000)]
Issue #8864: Define _XOPEN_SOURCE on Solaris for the
multiprocessing module.

14 years agotest verifying the resp object is closed for HEAD response.
Senthil Kumaran [Fri, 4 Jun 2010 17:17:09 +0000 (17:17 +0000)]
test verifying the resp object is closed for HEAD response.

14 years agoFix issue6312 - close the resp object for HEAD response.
Senthil Kumaran [Fri, 4 Jun 2010 16:32:14 +0000 (16:32 +0000)]
Fix issue6312 - close the resp object for HEAD response.

14 years agoIssue #8890: Documentation changed to avoid reference to temporary files - other...
Vinay Sajip [Fri, 4 Jun 2010 13:41:02 +0000 (13:41 +0000)]
Issue #8890: Documentation changed to avoid reference to temporary files - other cases covered.

14 years agoDetect missing ldd on all systems.
Stefan Krah [Fri, 4 Jun 2010 09:49:20 +0000 (09:49 +0000)]
Detect missing ldd on all systems.

14 years agoIssue8810: Clearing up docstring for tzinfo.utcoffset.
Sean Reifscheider [Fri, 4 Jun 2010 01:51:26 +0000 (01:51 +0000)]
Issue8810: Clearing up docstring for tzinfo.utcoffset.

14 years agoIssue #8890: Documentation changed to avoid reference to temporary files.
Vinay Sajip [Thu, 3 Jun 2010 22:34:42 +0000 (22:34 +0000)]
Issue #8890: Documentation changed to avoid reference to temporary files.

14 years agouse a set for membership testing
Benjamin Peterson [Thu, 3 Jun 2010 21:21:03 +0000 (21:21 +0000)]
use a set for membership testing

14 years ago#8889: rewrite transient_internet so we don't use EAI_NODATA on FreeBSD.
R. David Murray [Thu, 3 Jun 2010 20:19:25 +0000 (20:19 +0000)]
#8889: rewrite transient_internet so we don't use EAI_NODATA on FreeBSD.

FreeBSD doesn't have socket.EAI_NODATA.  I rewrote the routine because
there's no easy way to conditionally include a context manager in a
with statement.  As a side benefit, instead of a stack of context
managers there's now only one.

14 years ago#5610: use \Z not $ so we don't eat extra chars when body part ends with \r\n.
R. David Murray [Thu, 3 Jun 2010 15:43:20 +0000 (15:43 +0000)]
#5610: use \Z not $ so we don't eat extra chars when body part ends with \r\n.

If a body part ended with \r\n, feedparser, using '$' to terminate its
search for the newline, would match on the \r\n, and think that it needed
to strip two characters in order to account for the line end before the
boundary.  That made it chop one too many characters off the end of
the body part.  Using \Z makes the match correct.

Patch and test by Tony Nelson.

14 years agoUse compiler rather than compiler_obj. Thanks Michael Foord for noticing.
Stefan Krah [Thu, 3 Jun 2010 14:25:16 +0000 (14:25 +0000)]
Use compiler rather than compiler_obj. Thanks Michael Foord for noticing.

14 years agoIssue #7384: If the system readline library is linked against ncurses,
Stefan Krah [Thu, 3 Jun 2010 12:39:50 +0000 (12:39 +0000)]
Issue #7384: If the system readline library is linked against ncurses,
the curses module must be linked against ncurses as well. Otherwise it
is not safe to load both the readline and curses modules in an application.

Thanks Thomas Dickey for answering questions about ncurses/ncursesw
and readline!

14 years agoIssue #8741: Fixed the TarFile.makelink() method that is responsible
Lars Gustäbel [Thu, 3 Jun 2010 12:34:14 +0000 (12:34 +0000)]
Issue #8741: Fixed the TarFile.makelink() method that is responsible
for extracting symbolic and hard link entries as regular files as a
work-around on platforms that do not support filesystem links.

This stopped working reliably after a change in r74571. I also added
a few tests for this functionality.

14 years agoIssue #8833: tarfile created hard link entries with a size
Lars Gustäbel [Thu, 3 Jun 2010 09:56:22 +0000 (09:56 +0000)]
Issue #8833: tarfile created hard link entries with a size
field != 0 by mistake. The associated testcase did not
expose this bug because it was broken too.

14 years agoFix for issue #7724: ensure that distutils and python's own setup.py
Ronald Oussoren [Thu, 3 Jun 2010 09:47:21 +0000 (09:47 +0000)]
Fix for issue #7724: ensure that distutils and python's own setup.py
honor the MacOSX SDK when one is specified.

This is needed to be able to build using the 10.4u SDK while running
on OSX 10.6.

This is a fixed version of the patch in r80963, I've tested this patch
on OSX and Linux.

14 years ago#1368247: make set_charset/MIMEText automatically encode unicode _payload.
R. David Murray [Wed, 2 Jun 2010 22:03:15 +0000 (22:03 +0000)]
#1368247: make set_charset/MIMEText automatically encode unicode _payload.

Fixes (mysterious, to the end user) UnicodeErrors when using utf-8 as
the charset and unicode as the _text argument.  Also makes the way in
which unicode gets encoded to quoted printable for other charsets more
sane (it only worked by accident previously).  The _payload now is encoded
to the charset.output_charset if it is unicode.

14 years agoIssue #8873: add a documentation note about possible performance issues with the
Antoine Pitrou [Wed, 2 Jun 2010 17:08:47 +0000 (17:08 +0000)]
Issue #8873: add a documentation note about possible performance issues with the
default of unbuffered IO in subprocess.Popen.

14 years agoLogging: improved error reporting for BaseConfigurator.resolve().
Vinay Sajip [Wed, 2 Jun 2010 10:05:31 +0000 (10:05 +0000)]
Logging: improved error reporting for BaseConfigurator.resolve().

14 years agoFix for issue8868: without this patch 'MacOS.WMAvailable()' will return
Ronald Oussoren [Wed, 2 Jun 2010 03:47:14 +0000 (03:47 +0000)]
Fix for issue8868: without this patch 'MacOS.WMAvailable()' will return
False on MacOSX 10.5 or earlier and scripts won't be able to access GUI
functionality.

14 years agoFix issue8788 - description of doseq parameter in urllib.urlencode
Senthil Kumaran [Wed, 2 Jun 2010 02:19:15 +0000 (02:19 +0000)]
Fix issue8788 - description of doseq parameter in urllib.urlencode

14 years agoFix #8618. Ask the Windows mixer API if there are any playback devices
Brian Curtin [Tue, 1 Jun 2010 13:29:13 +0000 (13:29 +0000)]
Fix #8618. Ask the Windows mixer API if there are any playback devices
configured before attempting to test PlaySound.

14 years agoFix Issue8797 - urllib2 basic authentication fix for wrong passwords. It fails after...
Senthil Kumaran [Tue, 1 Jun 2010 12:40:07 +0000 (12:40 +0000)]
Fix Issue8797 - urllib2 basic authentication fix for wrong passwords. It fails after 5 retries.

14 years agoPut docs for RegexObject.search() before RegexObject.match() to mirror re.search...
Georg Brandl [Tue, 1 Jun 2010 07:25:23 +0000 (07:25 +0000)]
Put docs for RegexObject.search() before RegexObject.match() to mirror re.search() and re.match() order.

14 years ago#7583: clarify discussion of hard tab expansion in doctests.
R. David Murray [Tue, 1 Jun 2010 01:42:41 +0000 (01:42 +0000)]
#7583: clarify discussion of hard tab expansion in doctests.

14 years agoImprove documentation for getaddrinfo() (part of #8857)
Antoine Pitrou [Mon, 31 May 2010 17:01:01 +0000 (17:01 +0000)]
Improve documentation for getaddrinfo() (part of #8857)

14 years agoIssue #8748: Fix incorrect results from comparisons between an integer
Mark Dickinson [Sun, 30 May 2010 13:18:10 +0000 (13:18 +0000)]
Issue #8748: Fix incorrect results from comparisons between an integer
and a complex instance.  Based on a patch by Meador Inge.

14 years agoRemove declaration for unused variable.
Mark Dickinson [Sun, 30 May 2010 12:17:11 +0000 (12:17 +0000)]
Remove declaration for unused variable.

14 years agoIssue #5211: Complete removal of implicit coercions for the complex
Mark Dickinson [Sun, 30 May 2010 12:12:25 +0000 (12:12 +0000)]
Issue #5211: Complete removal of implicit coercions for the complex
type.  Coercion for arithmetic operations was already removed in
r78280, but that commit didn't remove coercion for rich comparisons.

14 years agoUntabify Modules/config.c.in.
Mark Dickinson [Sat, 29 May 2010 21:00:52 +0000 (21:00 +0000)]
Untabify Modules/config.c.in.

14 years agoFix typo
Stefan Krah [Sat, 29 May 2010 12:54:35 +0000 (12:54 +0000)]
Fix typo

14 years agoIssue #8840: Make documentation for truncate() clearer
Antoine Pitrou [Sat, 29 May 2010 12:06:13 +0000 (12:06 +0000)]
Issue #8840: Make documentation for truncate() clearer

14 years ago#8616: add new turtle demo "nim".
Georg Brandl [Sat, 29 May 2010 08:46:18 +0000 (08:46 +0000)]
#8616: add new turtle demo "nim".

14 years agoMake the ctl-C shutdown of serve.py prettier.
R. David Murray [Fri, 28 May 2010 18:17:20 +0000 (18:17 +0000)]
Make the ctl-C shutdown of serve.py prettier.

14 years agoMake reference to Generic Attribute Management a hyperlink.
R. David Murray [Fri, 28 May 2010 18:08:11 +0000 (18:08 +0000)]
Make reference to Generic Attribute Management a hyperlink.

14 years agoFix #8405 for slow buildbots. Remove the sleep on startup and move the
Brian Curtin [Fri, 28 May 2010 15:49:21 +0000 (15:49 +0000)]
Fix #8405 for slow buildbots. Remove the sleep on startup and move the
pipe communication into a loop to retry in case a buildbot gets even slower.

14 years agoIssue #1759169: Drop _XOPEN_SOURCE on Solaris.
Martin v. Löwis [Fri, 28 May 2010 15:28:47 +0000 (15:28 +0000)]
Issue #1759169: Drop _XOPEN_SOURCE on Solaris.

14 years ago2to3 doesn't fix test_support #6583
Benjamin Peterson [Fri, 28 May 2010 03:10:31 +0000 (03:10 +0000)]
2to3 doesn't fix test_support #6583

14 years agoremove non-ascii coding per PEP 8
Benjamin Peterson [Fri, 28 May 2010 02:12:36 +0000 (02:12 +0000)]
remove non-ascii coding per PEP 8

14 years agoIssue #8835: test_support.transient_internet() catchs gaierror(EAI_NONAME) and
Victor Stinner [Thu, 27 May 2010 22:29:48 +0000 (22:29 +0000)]
Issue #8835: test_support.transient_internet() catchs gaierror(EAI_NONAME) and
gaierror(EAI_NODATA)

14 years agoAdd item
Andrew M. Kuchling [Thu, 27 May 2010 21:29:59 +0000 (21:29 +0000)]
Add item

14 years agoIssue #7150: Raise OverflowError if the result of adding or subtracting
Alexander Belopolsky [Thu, 27 May 2010 20:55:27 +0000 (20:55 +0000)]
Issue #7150: Raise OverflowError if the result of adding or subtracting
timedelta from date or datetime falls outside of the MINYEAR:MAXYEAR range.

14 years agoRemove top-level 'General Questions' section, pushing up the questions it contains
Andrew M. Kuchling [Thu, 27 May 2010 13:30:09 +0000 (13:30 +0000)]
Remove top-level 'General Questions' section, pushing up the questions it contains

14 years agoRewrite wxWidgets section
Andrew M. Kuchling [Thu, 27 May 2010 13:22:53 +0000 (13:22 +0000)]
Rewrite wxWidgets section

14 years agoAdded Andrej Krpic. (Thanks for issue #7879 patch.)
Alexander Belopolsky [Wed, 26 May 2010 20:57:04 +0000 (20:57 +0000)]
Added Andrej Krpic. (Thanks for issue #7879 patch.)

14 years agoIssue #7879: Skip negative timestamps test on any Windows platform
Alexander Belopolsky [Wed, 26 May 2010 20:45:37 +0000 (20:45 +0000)]
Issue #7879: Skip negative timestamps test on any Windows platform
using unittest.skipIf decorator.

14 years agoIssue #7879: Do not test negative timestamps on any Windows platform
Alexander Belopolsky [Wed, 26 May 2010 19:43:16 +0000 (19:43 +0000)]
Issue #7879: Do not test negative timestamps on any Windows platform
including Windows CE.

14 years agoIssue #8825: additional testcases for int(string, 0) and long(string, 0).
Mark Dickinson [Wed, 26 May 2010 19:06:33 +0000 (19:06 +0000)]
Issue #8825: additional testcases for int(string, 0) and long(string, 0).

14 years agoIssue #7449: Skip test_socketserver if threading support is disabled
Victor Stinner [Wed, 26 May 2010 17:25:28 +0000 (17:25 +0000)]
Issue #7449: Skip test_socketserver if threading support is disabled

14 years agoIssue #3798: Write sys.exit() message to sys.stderr to use stderr encoding and
Victor Stinner [Tue, 25 May 2010 22:30:32 +0000 (22:30 +0000)]
Issue #3798: Write sys.exit() message to sys.stderr to use stderr encoding and
error handler, instead of writing to the C stderr file in utf-8

14 years agoAdd Alexander Belopolsky.
Martin v. Löwis [Tue, 25 May 2010 20:06:02 +0000 (20:06 +0000)]
Add Alexander Belopolsky.

14 years agoFix a NameError in test_enumerate.
Mark Dickinson [Tue, 25 May 2010 19:44:49 +0000 (19:44 +0000)]
Fix a NameError in test_enumerate.

14 years agoIssue #8816: Extra tests for some built-in functions. These tests are
Mark Dickinson [Tue, 25 May 2010 19:01:08 +0000 (19:01 +0000)]
Issue #8816: Extra tests for some built-in functions.  These tests are
ports of IronPython tests.  Thanks Gregory Nofi.

14 years agoIssue 8818: urlparse/urlsplit keyword is 'scheme', not 'default_scheme'.
R. David Murray [Tue, 25 May 2010 15:32:06 +0000 (15:32 +0000)]
Issue 8818: urlparse/urlsplit keyword is 'scheme', not 'default_scheme'.

14 years agoIssue 8143: sync unquote in urlparse with urllib; add comment about doing so.
R. David Murray [Tue, 25 May 2010 15:20:46 +0000 (15:20 +0000)]
Issue 8143: sync unquote in urlparse with urllib; add comment about doing so.

unquote is duplicated in the two files to avoid a circular reference.
(This is fixed in Python3.)  Updates keep getting made to the public unquote
without fixing the urlparse one, however, so this fix syncs the two
and adds a comment to both to make sure changes are applied to both.

14 years agoFix #2810 - handle the case where some registry calls return
Brian Curtin [Tue, 25 May 2010 15:06:15 +0000 (15:06 +0000)]
Fix #2810 - handle the case where some registry calls return
ERROR_MORE_DATA, requiring another call to get the remaining data.

Patch by Daniel Stutzbach

14 years agoAdd three items
Andrew M. Kuchling [Tue, 25 May 2010 13:34:08 +0000 (13:34 +0000)]
Add three items

14 years agoMake the contributor list alphabetical again.
Brett Cannon [Tue, 25 May 2010 02:53:04 +0000 (02:53 +0000)]
Make the contributor list alphabetical again.

14 years agocorrect default docs
Benjamin Peterson [Tue, 25 May 2010 02:23:32 +0000 (02:23 +0000)]
correct default docs

14 years agoset svn:eol-style
Benjamin Peterson [Mon, 24 May 2010 22:04:53 +0000 (22:04 +0000)]
set svn:eol-style

14 years ago#8616: update module name
Georg Brandl [Mon, 24 May 2010 21:37:54 +0000 (21:37 +0000)]
#8616: update module name

14 years agoAdd the author of the last fix (Issue #6662)
Victor Stinner [Mon, 24 May 2010 21:37:28 +0000 (21:37 +0000)]
Add the author of the last fix (Issue #6662)

14 years agoIssue #6662: Fix parsing of malformatted charref (&#bad;)
Victor Stinner [Mon, 24 May 2010 21:33:24 +0000 (21:33 +0000)]
Issue #6662: Fix parsing of malformatted charref (&#bad;)

14 years ago#8016: add the CP858 codec (approved by Benjamin). (Also add CP720 to the tests...
Georg Brandl [Mon, 24 May 2010 21:29:07 +0000 (21:29 +0000)]
#8016: add the CP858 codec (approved by Benjamin).  (Also add CP720 to the tests, it was missing there.)

14 years agoFix default value for version help. Approved by Benjamin on python-dev: http://mail...
Steven Bethard [Mon, 24 May 2010 03:45:26 +0000 (03:45 +0000)]
Fix default value for version help. Approved by Benjamin on python-dev: http://mail.python.org/pipermail/python-dev/2010-May/100231.html

14 years agoargparse documentation updates (including updates to optparse and getopt documentatio...
Steven Bethard [Mon, 24 May 2010 02:38:00 +0000 (02:38 +0000)]
argparse documentation updates (including updates to optparse and getopt documentation that were promised in the PEP)

14 years ago#1436346: make it more obvious that timetuple[7] is yday.
Georg Brandl [Sun, 23 May 2010 21:29:29 +0000 (21:29 +0000)]
#1436346: make it more obvious that timetuple[7] is yday.

14 years agoNEWS rewrap and punctuation consistency.
Georg Brandl [Sat, 22 May 2010 21:26:21 +0000 (21:26 +0000)]
NEWS rewrap and punctuation consistency.

14 years agoMerged revisions 80937,81478 via svnmerge from
Benjamin Peterson [Sat, 22 May 2010 18:52:21 +0000 (18:52 +0000)]
Merged revisions 80937,81478 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r80937 | benjamin.peterson | 2010-05-07 14:10:58 -0500 (Fri, 07 May 2010) | 1 line

  remove redundant unicode call
........
  r81478 | benjamin.peterson | 2010-05-22 13:47:39 -0500 (Sat, 22 May 2010) | 1 line

  ensure doctests have some future_features
........

14 years agoFix my last commit (r81471) about codecs
Victor Stinner [Sat, 22 May 2010 13:44:25 +0000 (13:44 +0000)]
Fix my last commit (r81471) about codecs

Rememder: don't touch the code just before a commit

14 years agoIssue #6268: More bugfixes about BOM, UTF-16 and UTF-32
Victor Stinner [Sat, 22 May 2010 13:37:56 +0000 (13:37 +0000)]
Issue #6268: More bugfixes about BOM, UTF-16 and UTF-32

 * Fix seek() method of codecs.open(), don't write the BOM twice after seek(0)
 * Fix reset() method of codecs, UTF-16, UTF-32 and StreamWriter classes
 * test_codecs: use "w+" mode instead of "wt+". "t" mode is not supported by
   Solaris or Windows, but does it really exist? I found it the in the issue.

14 years ago#8635: document enumerate() start parameter in docstring.
Georg Brandl [Sat, 22 May 2010 11:43:25 +0000 (11:43 +0000)]
#8635: document enumerate() start parameter in docstring.

14 years agoUnderscore the name of an internal utility function.
Georg Brandl [Sat, 22 May 2010 11:31:16 +0000 (11:31 +0000)]
Underscore the name of an internal utility function.

14 years agoIssue #3924: Ignore cookies with invalid "version" field in cookielib.
Georg Brandl [Sat, 22 May 2010 11:29:19 +0000 (11:29 +0000)]
Issue #3924: Ignore cookies with invalid "version" field in cookielib.

14 years ago#8785: less confusing description of regex.find*.
Georg Brandl [Sat, 22 May 2010 08:17:23 +0000 (08:17 +0000)]
#8785: less confusing description of regex.find*.

14 years agoIssue #6268: Fix seek() method of codecs.open(), don't read the BOM twice
Victor Stinner [Sat, 22 May 2010 02:11:07 +0000 (02:11 +0000)]
Issue #6268: Fix seek() method of codecs.open(), don't read the BOM twice
after seek(0)

14 years agoIssue #5640: Fix Shift-JIS incremental encoder for error handlers different
Victor Stinner [Fri, 21 May 2010 22:50:28 +0000 (22:50 +0000)]
Issue #5640: Fix Shift-JIS incremental encoder for error handlers different
than strict

14 years ago#8709: mention Windows support for os.devnull.
Georg Brandl [Fri, 21 May 2010 22:03:29 +0000 (22:03 +0000)]
#8709: mention Windows support for os.devnull.

14 years agotypo
Georg Brandl [Fri, 21 May 2010 21:48:57 +0000 (21:48 +0000)]
typo

14 years agoCorrect info for Semaphore.acquire() semantics under OSX.
Georg Brandl [Fri, 21 May 2010 21:47:05 +0000 (21:47 +0000)]
Correct info for Semaphore.acquire() semantics under OSX.

14 years agosimplify and modernize updatecache()
Benjamin Peterson [Fri, 21 May 2010 21:35:44 +0000 (21:35 +0000)]
simplify and modernize updatecache()

14 years agoremove debugging rubish
Benjamin Peterson [Fri, 21 May 2010 21:32:49 +0000 (21:32 +0000)]
remove debugging rubish

14 years agoensure the last line has a trailing newline #8782
Benjamin Peterson [Fri, 21 May 2010 21:31:24 +0000 (21:31 +0000)]
ensure the last line has a trailing newline #8782

14 years ago#8707: remove duplicate paragraph part.
Georg Brandl [Fri, 21 May 2010 21:30:47 +0000 (21:30 +0000)]
#8707: remove duplicate paragraph part.

14 years agofix name
Benjamin Peterson [Fri, 21 May 2010 21:17:22 +0000 (21:17 +0000)]
fix name

14 years agouse addCleanup
Benjamin Peterson [Fri, 21 May 2010 21:16:12 +0000 (21:16 +0000)]
use addCleanup

14 years agoAdd missing parameter in SimpleXMLRPCServer signature.
Georg Brandl [Fri, 21 May 2010 20:58:12 +0000 (20:58 +0000)]
Add missing parameter in SimpleXMLRPCServer signature.