]> granicus.if.org Git - python/log
python
15 years agoMade logging classes new-style and added name property to handlers.
Vinay Sajip [Tue, 24 Nov 2009 15:53:25 +0000 (15:53 +0000)]
Made logging classes new-style and added name property to handlers.

15 years agoIssue #7117: Update float formatting testcases to match those in py3k.
Mark Dickinson [Tue, 24 Nov 2009 15:12:20 +0000 (15:12 +0000)]
Issue #7117:  Update float formatting testcases to match those in py3k.

15 years agoFix some documentation examples involving the repr of a float.
Mark Dickinson [Tue, 24 Nov 2009 14:27:02 +0000 (14:27 +0000)]
Fix some documentation examples involving the repr of a float.

15 years agocomment out test added in r76438, which caused refleaks
Jesse Noller [Tue, 24 Nov 2009 14:17:29 +0000 (14:17 +0000)]
comment out test added in r76438, which caused refleaks

15 years agoround(0, "ermintrude") succeeded instead of producing a TypeError. Fix this.
Mark Dickinson [Tue, 24 Nov 2009 10:54:58 +0000 (10:54 +0000)]
round(0, "ermintrude") succeeded instead of producing a TypeError.  Fix this.

15 years agoIssue #7117, continued: Remove substitution of %g-style formatting for
Mark Dickinson [Mon, 23 Nov 2009 20:54:09 +0000 (20:54 +0000)]
Issue #7117, continued: Remove substitution of %g-style formatting for
%f-style formatting, which used to occur at high precision.  Float formatting
should now be consistent between 2.7 and 3.1.

15 years ago#7345: fix arguments of formatyear().
Georg Brandl [Mon, 23 Nov 2009 19:53:19 +0000 (19:53 +0000)]
#7345: fix arguments of formatyear().

15 years agoRemove restriction on precision when formatting floats. This is the
Mark Dickinson [Mon, 23 Nov 2009 18:46:41 +0000 (18:46 +0000)]
Remove restriction on precision when formatting floats.  This is the
first step towards removing the %f -> %g switch (see issues 7117,
5859).

15 years agoFix for issue1488943 - difflib.Differ() doesn't always add hints for tab
Senthil Kumaran [Mon, 23 Nov 2009 18:41:31 +0000 (18:41 +0000)]
Fix for issue1488943 - difflib.Differ() doesn't always add hints for tab
characters.

15 years agoIssue #7369: Fibonacci series should start at 0 in tutorial example.
Mark Dickinson [Mon, 23 Nov 2009 16:39:05 +0000 (16:39 +0000)]
Issue #7369: Fibonacci series should start at 0 in tutorial example.

15 years agoIssue #7379: Fix incorrect doctest for Fraction.limit_denominator.
Mark Dickinson [Mon, 23 Nov 2009 16:23:43 +0000 (16:23 +0000)]
Issue #7379:  Fix incorrect doctest for Fraction.limit_denominator.

15 years agoAdd a testcase that checks if the TarFile constructor successfully
Lars Gustäbel [Mon, 23 Nov 2009 15:46:19 +0000 (15:46 +0000)]
Add a testcase that checks if the TarFile constructor successfully
closes the internal file object in case of an error (issue #7341).

15 years agoIssue #6123: Fix opening empty archives and files.
Lars Gustäbel [Sun, 22 Nov 2009 18:30:53 +0000 (18:30 +0000)]
Issue #6123: Fix opening empty archives and files.

(Note that an empty archive is not the same as an empty file. An
empty archive contains no members and is correctly terminated with an
EOF block full of zeros. An empty file contains no data at all.)

The problem was that although tarfile was able to create empty
archives, it failed to open them raising a ReadError. On the other
hand, tarfile opened empty files without error in most read modes and
presented them as empty archives. (However, some modes still raised
errors: "r|gz" raised ReadError, but "r:gz" worked, "r:bz2" even
raised EOFError.)

In order to get a more fine-grained control over the various internal
error conditions I now split up the HeaderError exception into a
number of meaningful sub-exceptions. This makes it easier in the
TarFile.next() method to react to the different conditions in the
correct way.

The visible change in its behaviour now is that tarfile will open
empty archives correctly and raise ReadError consistently for empty
files.

15 years agoissue6615: Additional test for logging support in multiprocessing
Jesse Noller [Sat, 21 Nov 2009 14:38:23 +0000 (14:38 +0000)]
issue6615: Additional test for logging support in multiprocessing

15 years agorevert unintended change to multiprocessing/queues.py
Jesse Noller [Sat, 21 Nov 2009 14:06:24 +0000 (14:06 +0000)]
revert unintended change to multiprocessing/queues.py

15 years agoissue5738: The distribution example was confusing, and out of date. It's too large...
Jesse Noller [Sat, 21 Nov 2009 14:01:56 +0000 (14:01 +0000)]
issue5738: The distribution example was confusing, and out of date. It's too large to include inline in the docs as well. It belongs in an addons module outside the stdlib. Removing.

15 years agoIssue #7272: Add configure test to detect whether sem_open works
Mark Dickinson [Fri, 20 Nov 2009 19:30:22 +0000 (19:30 +0000)]
Issue #7272:  Add configure test to detect whether sem_open works
properly, and use this to skip test_multiprocessing on platforms
where sem_open raises a signal.  This should fix some FreeBSD buildbot
failures for test_multiprocessing.

15 years agoRegenerate configure with GNU autoconf 2.61.
Mark Dickinson [Fri, 20 Nov 2009 19:27:43 +0000 (19:27 +0000)]
Regenerate configure with GNU autoconf 2.61.

15 years agoIssue 7363: fix indentation in socketserver udpserver example.
R. David Murray [Fri, 20 Nov 2009 13:29:43 +0000 (13:29 +0000)]
Issue 7363: fix indentation in socketserver udpserver example.

15 years agoavoid doing an uneeded import in a function
Benjamin Peterson [Fri, 20 Nov 2009 02:56:43 +0000 (02:56 +0000)]
avoid doing an uneeded import in a function

15 years agoturn goto into do while loop
Benjamin Peterson [Fri, 20 Nov 2009 02:15:50 +0000 (02:15 +0000)]
turn goto into do while loop

15 years agogenexps have linenos
Benjamin Peterson [Fri, 20 Nov 2009 01:16:58 +0000 (01:16 +0000)]
genexps have linenos

15 years agoprovide line number for lambdas
Benjamin Peterson [Fri, 20 Nov 2009 01:15:53 +0000 (01:15 +0000)]
provide line number for lambdas

15 years agospelling
Benjamin Peterson [Thu, 19 Nov 2009 23:19:29 +0000 (23:19 +0000)]
spelling

15 years agoadd news notes for r76416
Benjamin Peterson [Thu, 19 Nov 2009 22:58:01 +0000 (22:58 +0000)]
add news notes for r76416

15 years agoimprove several corner cases related with argument names in parenthesis
Benjamin Peterson [Thu, 19 Nov 2009 22:54:57 +0000 (22:54 +0000)]
improve several corner cases related with argument names in parenthesis

- Fix #7362: give a good error message for parenthesized arguments with
  defaults.

- Add a py3k warning for any parenthesized arguments since those are not allowed
  in Py3.  This warning is not given in tuple unpacking, since that incurs the
  tuple unpacking warning.

15 years agoMisc/NEWS entries for issue 7117.
Mark Dickinson [Thu, 19 Nov 2009 18:41:49 +0000 (18:41 +0000)]
Misc/NEWS entries for issue 7117.

15 years agoDon't use the '==' operator with test, that's an unportable bash-ism.
Ronald Oussoren [Thu, 19 Nov 2009 17:42:51 +0000 (17:42 +0000)]
Don't use the '==' operator with test, that's an unportable bash-ism.

(Issue 7179)

15 years agoFix for issue #7085
Ronald Oussoren [Thu, 19 Nov 2009 16:25:21 +0000 (16:25 +0000)]
Fix for issue #7085

On MacOSX 10.6 the CoreFoundation framework must be initialized on the main
thread, the constructor function in that framework will cause an SIGABRT when
it is called on any other thread.

Because a number of extension link (indirectly) to CoreFoundation and the
Python core itself didn't the interpreter crashed when importing some
extensions, such as _locale, on a secondary thread.

This fix ensures that Python is linked to CoreFoundation on OSX, which results
in the CoreFoundation constructor being called when Python is loaded. This
does not require code changes.

15 years agodragfullwindows can have value 2
Tarek Ziadé [Thu, 19 Nov 2009 05:33:16 +0000 (05:33 +0000)]
dragfullwindows can have value 2

15 years ago#5037 proxy __unicode__ correctly
Benjamin Peterson [Thu, 19 Nov 2009 03:00:02 +0000 (03:00 +0000)]
#5037 proxy __unicode__ correctly

15 years agoFix docstrings for itertools combinatoric functions.
Raymond Hettinger [Thu, 19 Nov 2009 01:22:04 +0000 (01:22 +0000)]
Fix docstrings for itertools combinatoric functions.

15 years agoIssue 7263: Fix set.intersection() docstring.
Raymond Hettinger [Wed, 18 Nov 2009 20:28:22 +0000 (20:28 +0000)]
Issue 7263: Fix set.intersection() docstring.

15 years agoIssue #7341: Close the internal file object in the TarFile
Lars Gustäbel [Wed, 18 Nov 2009 20:24:54 +0000 (20:24 +0000)]
Issue #7341: Close the internal file object in the TarFile
constructor in case of an error.

15 years agoMention Giampolo R's new FTP TLS support in the what's new file
Antoine Pitrou [Wed, 18 Nov 2009 20:20:46 +0000 (20:20 +0000)]
Mention Giampolo R's new FTP TLS support in the what's new file

15 years agoEnable short float repr!
Mark Dickinson [Wed, 18 Nov 2009 20:14:57 +0000 (20:14 +0000)]
Enable short float repr!

15 years agoFix markup.
Georg Brandl [Wed, 18 Nov 2009 20:05:15 +0000 (20:05 +0000)]
Fix markup.

15 years agoupcase Python
Georg Brandl [Wed, 18 Nov 2009 19:39:14 +0000 (19:39 +0000)]
upcase Python

15 years agoIssue #7117, continued: Change round implementation to use the correctly-rounded
Mark Dickinson [Wed, 18 Nov 2009 19:33:35 +0000 (19:33 +0000)]
Issue #7117, continued:  Change round implementation to use the correctly-rounded
string <-> float conversions;  this makes sure that the result of the round
operation is correctly rounded, and hence displays nicely using the new float
repr.

15 years agoMake separate section for deprecations in 2.7 whatsnew.
Georg Brandl [Wed, 18 Nov 2009 18:52:35 +0000 (18:52 +0000)]
Make separate section for deprecations in 2.7 whatsnew.

15 years agoMake separate section for deprecations in 2.6 whatsnew.
Georg Brandl [Wed, 18 Nov 2009 18:52:23 +0000 (18:52 +0000)]
Make separate section for deprecations in 2.6 whatsnew.

15 years agoCorrectly escape arbitrary error message text in the runpy unit tests
Nick Coghlan [Wed, 18 Nov 2009 11:27:53 +0000 (11:27 +0000)]
Correctly escape arbitrary error message text in the runpy unit tests

15 years ago#7293: distutils.test_msvc9compiler now uses a key that exists on any fresh windows...
Tarek Ziadé [Wed, 18 Nov 2009 08:46:56 +0000 (08:46 +0000)]
#7293: distutils.test_msvc9compiler now uses a key that exists on any fresh windows install

15 years agoa better callable replacement
Benjamin Peterson [Tue, 17 Nov 2009 21:24:54 +0000 (21:24 +0000)]
a better callable replacement

15 years ago#1757126: fix typo with the cyrillic_asian alias
Philip Jenvey [Tue, 17 Nov 2009 02:42:26 +0000 (02:42 +0000)]
#1757126: fix typo with the cyrillic_asian alias

15 years agoSilence another MSVC warning about unary minus.
Mark Dickinson [Mon, 16 Nov 2009 19:17:16 +0000 (19:17 +0000)]
Silence another MSVC warning about unary minus.

15 years agoSilence MSVC warning about unary minus applied to unsigned type.
Mark Dickinson [Mon, 16 Nov 2009 17:33:25 +0000 (17:33 +0000)]
Silence MSVC warning about unary minus applied to unsigned type.

15 years ago#7302: fix link.
Georg Brandl [Mon, 16 Nov 2009 16:44:05 +0000 (16:44 +0000)]
#7302: fix link.

15 years agoAllow for backslashes in file paths passed to the regex engine
Nick Coghlan [Mon, 16 Nov 2009 03:57:32 +0000 (03:57 +0000)]
Allow for backslashes in file paths passed to the regex engine

15 years agoAccount for another cache when hunting ref leaks
Nick Coghlan [Mon, 16 Nov 2009 03:55:51 +0000 (03:55 +0000)]
Account for another cache when hunting ref leaks

15 years agoIssue #7328: don't corrupt sys.path when running pydoc with the -m switch
Nick Coghlan [Sun, 15 Nov 2009 22:36:47 +0000 (22:36 +0000)]
Issue #7328: don't corrupt sys.path when running pydoc with the -m switch

15 years agoIssue #2054: ftplib now provides an FTP_TLS class to do secure FTP using
Antoine Pitrou [Sun, 15 Nov 2009 17:22:09 +0000 (17:22 +0000)]
Issue #2054: ftplib now provides an FTP_TLS class to do secure FTP using
TLS or SSL.  Patch by Giampaolo Rodola'.

15 years agoIssue #7228: Add '%lld' and '%llu' support to PyFormat_FromString,
Mark Dickinson [Sun, 15 Nov 2009 16:18:58 +0000 (16:18 +0000)]
Issue #7228:  Add '%lld' and '%llu' support to PyFormat_FromString,
PyFormat_FromStringV and PyErr_Format.

15 years agoIssue #4969: The mimetypes module now reads the MIME database from
Antoine Pitrou [Sun, 15 Nov 2009 14:10:48 +0000 (14:10 +0000)]
Issue #4969: The mimetypes module now reads the MIME database from
the registry under Windows.  Patch by Gabriel Genellina.

15 years agoIssue #5792: Extend short float repr support to x86 platforms using suncc or icc.
Mark Dickinson [Sun, 15 Nov 2009 13:12:43 +0000 (13:12 +0000)]
Issue #5792:  Extend short float repr support to x86 platforms using suncc or icc.
Many thanks Stefan Krah for help and OpenSolaris testing.

15 years agoAvoid signed overflow in some xrange calculations, and extend
Mark Dickinson [Sun, 15 Nov 2009 12:31:13 +0000 (12:31 +0000)]
Avoid signed overflow in some xrange calculations, and extend
xrange tests to cover some special cases that caused problems
in py3k.  This is a partial backport of r76292-76293 (see
issue #7298.)

15 years agoFix for Issue4683 - urllib2.HTTPDigestAuthHandler fails on third hostname?.
Senthil Kumaran [Sun, 15 Nov 2009 08:36:20 +0000 (08:36 +0000)]
Fix for Issue4683 - urllib2.HTTPDigestAuthHandler fails on third hostname?.
Resolution: Reset the nonce value for each unique nonce (as per RFC 2617)

15 years agoIssue #6816: expose the zipfile and directory execution mechanism to Python code...
Nick Coghlan [Sun, 15 Nov 2009 07:30:34 +0000 (07:30 +0000)]
Issue #6816: expose the zipfile and directory execution mechanism to Python code via the runpy module. Also consolidated some script execution functionality in the test harness into a helper module and removed some implementation details from the runpy module documentation.

15 years agoAddition of some details in the code comments.
Senthil Kumaran [Sun, 15 Nov 2009 06:10:30 +0000 (06:10 +0000)]
Addition of some details in the code comments.

15 years agoRemove 'g' from regrtest getopt argument string, since there's no
R. David Murray [Sun, 15 Nov 2009 00:07:00 +0000 (00:07 +0000)]
Remove 'g' from regrtest getopt argument string, since there's no
handler for it.

15 years agoIssue 7324: add a sanity check to regrtest argument parsing to
R. David Murray [Sun, 15 Nov 2009 00:04:32 +0000 (00:04 +0000)]
Issue 7324: add a sanity check to regrtest argument parsing to
catch the case of an option with no handler.

15 years agoTurn the bsddb replication startup timeout test into a
R. David Murray [Sat, 14 Nov 2009 17:43:16 +0000 (17:43 +0000)]
Turn the bsddb replication startup timeout test into a
warning, to improve buildbot stability.

15 years agoIssue #7312 (new feature): Add a -F flag to run the selected tests in
R. David Murray [Sat, 14 Nov 2009 15:18:22 +0000 (15:18 +0000)]
Issue #7312 (new feature): Add a -F flag to run the selected tests in
a loop until a test fails.  Can be combined with -j.  Patch by Antoine
Pitrou.

15 years agoFix terminology.
Georg Brandl [Sat, 14 Nov 2009 11:50:51 +0000 (11:50 +0000)]
Fix terminology.

15 years agouse Sphinx 0.6.3
Benjamin Peterson [Fri, 13 Nov 2009 23:11:54 +0000 (23:11 +0000)]
use Sphinx 0.6.3

15 years agorevert r76243; I was right, actually :)
Benjamin Peterson [Fri, 13 Nov 2009 22:56:00 +0000 (22:56 +0000)]
revert r76243; I was right, actually :)

15 years agoIssue #7318: multiprocessing now uses a timeout when it fails to establish
Antoine Pitrou [Fri, 13 Nov 2009 22:31:18 +0000 (22:31 +0000)]
Issue #7318: multiprocessing now uses a timeout when it fails to establish
a connection with another process, rather than looping endlessly. The
default timeout is 20 seconds, which should be amply sufficient for
local connections.

15 years agonever mind about eval mode in this case
Benjamin Peterson [Fri, 13 Nov 2009 22:17:17 +0000 (22:17 +0000)]
never mind about eval mode in this case

15 years agothis main is much more useful
Benjamin Peterson [Thu, 12 Nov 2009 23:42:23 +0000 (23:42 +0000)]
this main is much more useful

15 years agofix several compile() issues by translating newlines in the tokenizer
Benjamin Peterson [Thu, 12 Nov 2009 23:39:44 +0000 (23:39 +0000)]
fix several compile() issues by translating newlines in the tokenizer

15 years agofix highlight in the datetime example
Ezio Melotti [Thu, 12 Nov 2009 09:10:02 +0000 (09:10 +0000)]
fix highlight in the datetime example

15 years agoGive the profile module a module directive.
Georg Brandl [Thu, 12 Nov 2009 08:29:46 +0000 (08:29 +0000)]
Give the profile module a module directive.

15 years agoIssue #7295: Do not use a hardcoded file name in test_tarfile.
Antoine Pitrou [Wed, 11 Nov 2009 20:55:07 +0000 (20:55 +0000)]
Issue #7295: Do not use a hardcoded file name in test_tarfile.

15 years agoI got the relative magnitudes of the timeout increases reversed, so
R. David Murray [Wed, 11 Nov 2009 18:07:27 +0000 (18:07 +0000)]
I got the relative magnitudes of the timeout increases reversed, so
I'm bumping up the longer test to the 60 seconds I intended to make it.
If this doesn't cure the intermittent buildbot timeouts, I'm going to
turn that test into a warning rather than a failure.

15 years agoFixing the NameError on Windows - issue1235
Senthil Kumaran [Wed, 11 Nov 2009 17:22:35 +0000 (17:22 +0000)]
Fixing the NameError on Windows - issue1235

15 years agoCGIHTTPRequestHandler.run_cgi() to use subprocess for Non Unix platforms. Fix
Senthil Kumaran [Wed, 11 Nov 2009 01:34:44 +0000 (01:34 +0000)]
CGIHTTPRequestHandler.run_cgi() to use subprocess for Non Unix platforms. Fix
based on Issue1235.

15 years agoBackport micro-fix from the py3k svnmerge
Antoine Pitrou [Tue, 10 Nov 2009 21:39:25 +0000 (21:39 +0000)]
Backport micro-fix from the py3k svnmerge

15 years agoIssue #7197: Allow unittest.TextTestRunner objects to be pickled and
Antoine Pitrou [Tue, 10 Nov 2009 20:49:30 +0000 (20:49 +0000)]
Issue #7197: Allow unittest.TextTestRunner objects to be pickled and
unpickled. This fixes crashes under Windows when trying to run
test_multiprocessing in verbose mode.

Additionally, Test_TextTestRunner hadn't been enabled in test_unittest.

15 years agoShow example of how to make a sorted dictionary
Raymond Hettinger [Tue, 10 Nov 2009 19:35:55 +0000 (19:35 +0000)]
Show example of how to make a sorted dictionary

15 years agoUpdate the FAQ entry that explains that assignments in the local scope
R. David Murray [Tue, 10 Nov 2009 18:58:02 +0000 (18:58 +0000)]
Update the FAQ entry that explains that assignments in the local scope
shadow variables in the outer scope (issue 7290).

15 years agoAdd extra information to a test_signal failure message to aid diagnosis of buildbot...
Mark Dickinson [Mon, 9 Nov 2009 19:54:51 +0000 (19:54 +0000)]
Add extra information to a test_signal failure message to aid diagnosis of buildbot failure.

15 years agoIssue #7251: Break out round tests for large values into a separate
Mark Dickinson [Mon, 9 Nov 2009 17:03:34 +0000 (17:03 +0000)]
Issue #7251: Break out round tests for large values into a separate
test function, and skip that test on Linux/alpha systems with a broken
system round function.

This should turn the Debian/alpha buildbot green.

15 years agoIssue #7282: Fix a memory leak when an RLock was used in a thread other
Antoine Pitrou [Mon, 9 Nov 2009 16:00:11 +0000 (16:00 +0000)]
Issue #7282: Fix a memory leak when an RLock was used in a thread other
than those started through `threading.Thread` (for example, using
`thread.start_new_thread()`.

15 years agoIssue 7294: Fixed URL in a comment.
Eric Smith [Mon, 9 Nov 2009 15:16:23 +0000 (15:16 +0000)]
Issue 7294: Fixed URL in a comment.

15 years agoRemove redundant sentence.
R. David Murray [Mon, 9 Nov 2009 14:18:14 +0000 (14:18 +0000)]
Remove redundant sentence.

15 years agodiscuss how to use -p
Benjamin Peterson [Mon, 9 Nov 2009 04:10:53 +0000 (04:10 +0000)]
discuss how to use -p

15 years agoProperly detect whether a C file is using tabs or spaces for Vim.
Brett Cannon [Sun, 8 Nov 2009 21:35:28 +0000 (21:35 +0000)]
Properly detect whether a C file is using tabs or spaces for Vim.

Closes issue #5611. Thanks Kirk McDonald and Johannes Hoff.

15 years agoKill a small potential leak in test_threading.
Antoine Pitrou [Sun, 8 Nov 2009 00:24:12 +0000 (00:24 +0000)]
Kill a small potential leak in test_threading.
The leak may not manifest itself if the OS re-uses the same thread ids
(I suppose Neal's machine doesn't :-))

15 years ago#7271: fix typo.
Georg Brandl [Sat, 7 Nov 2009 08:26:07 +0000 (08:26 +0000)]
#7271: fix typo.

15 years agoSome minor cleanups to private runpy code and docstrings
Nick Coghlan [Sat, 7 Nov 2009 08:15:01 +0000 (08:15 +0000)]
Some minor cleanups to private runpy code and docstrings

15 years agoAdd test for runpy.run_module package execution and use something other than logging...
Nick Coghlan [Sat, 7 Nov 2009 08:13:55 +0000 (08:13 +0000)]
Add test for runpy.run_module package execution and use something other than logging as the example of a non-executable package

15 years agospelling
Benjamin Peterson [Sat, 7 Nov 2009 01:04:38 +0000 (01:04 +0000)]
spelling

15 years agoIssue #7270: Add some dedicated unit tests for multi-thread synchronization
Antoine Pitrou [Fri, 6 Nov 2009 22:34:35 +0000 (22:34 +0000)]
Issue #7270: Add some dedicated unit tests for multi-thread synchronization
primitives such as Lock, RLock, Condition, Event and Semaphore.

15 years agoMerged revisions 76131 via svnmerge from
Benjamin Peterson [Thu, 5 Nov 2009 23:54:42 +0000 (23:54 +0000)]
Merged revisions 76131 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r76131 | benjamin.peterson | 2009-11-05 17:53:21 -0600 (Thu, 05 Nov 2009) | 1 line

  import sys
........

15 years agoMerged revisions 76127-76128 via svnmerge from
Benjamin Peterson [Thu, 5 Nov 2009 23:20:06 +0000 (23:20 +0000)]
Merged revisions 76127-76128 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r76127 | benjamin.peterson | 2009-11-05 17:04:58 -0600 (Thu, 05 Nov 2009) | 1 line

  set svn:eol-style
........
  r76128 | benjamin.peterson | 2009-11-05 17:07:46 -0600 (Thu, 05 Nov 2009) | 1 line

  skip this test on windows to avoid newline horrors
........

15 years agoMerged revisions 76125 via svnmerge from
Benjamin Peterson [Thu, 5 Nov 2009 21:29:56 +0000 (21:29 +0000)]
Merged revisions 76125 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r76125 | benjamin.peterson | 2009-11-05 15:26:55 -0600 (Thu, 05 Nov 2009) | 1 line

  handle newline issues better for comparing files
........

15 years agoIssue #7264: Fix a possible deadlock when deallocating thread-local objects
Antoine Pitrou [Thu, 5 Nov 2009 13:42:29 +0000 (13:42 +0000)]
Issue #7264: Fix a possible deadlock when deallocating thread-local objects
which are part of a reference cycle.

15 years agoIncrease the timeout in the bsddb3 replication test to allow
R. David Murray [Thu, 5 Nov 2009 01:50:56 +0000 (01:50 +0000)]
Increase the timeout in the bsddb3 replication test to allow
the test time to complete on slow buildbots.  See issue 6462.

15 years agoIssue #7211: Allow 64-bit values for the `ident` and `data` fields of kevent
Antoine Pitrou [Wed, 4 Nov 2009 19:25:14 +0000 (19:25 +0000)]
Issue #7211: Allow 64-bit values for the `ident` and `data` fields of kevent
objects on 64-bit systems.  Patch by Michael Broghton.

I will revert this checkin if it causes problems on our BSD buildbots.

15 years ago#7259: show correct equivalent for operator.i* operations in docstring; fix minor...
Georg Brandl [Wed, 4 Nov 2009 07:38:12 +0000 (07:38 +0000)]
#7259: show correct equivalent for operator.i* operations in docstring; fix minor issues in operator docs.