]> granicus.if.org Git - python/log
python
16 years agogenerate py3k warnings on __getslice__, __delslice__, and __setslice__
Benjamin Peterson [Sun, 24 Aug 2008 18:10:20 +0000 (18:10 +0000)]
generate py3k warnings on __getslice__, __delslice__, and __setslice__

Reviewer: Brett Cannon

16 years agoUse the actual blacklist of leaky tests
Neal Norwitz [Sun, 24 Aug 2008 17:29:53 +0000 (17:29 +0000)]
Use the actual blacklist of leaky tests

16 years agoIgnore a couple more tests that report leaks inconsistently.
Neal Norwitz [Sun, 24 Aug 2008 17:27:43 +0000 (17:27 +0000)]
Ignore a couple more tests that report leaks inconsistently.

16 years agoFix:
Neal Norwitz [Sun, 24 Aug 2008 05:04:52 +0000 (05:04 +0000)]
Fix:
 * crashes on memory allocation failure found with failmalloc
 * memory leaks found with valgrind
 * compiler warnings in opt mode which would lead to invalid memory reads
 * problem using wrong name in decimal module reported by pychecker

Update the valgrind suppressions file with new leaks that are small/one-time
leaks we don't care about (ie, they are too hard to fix).

TBR=barry
TESTED=./python -E -tt ./Lib/test/regrtest.py -uall (both debug and opt modes)
  in opt mode:
  valgrind -q --leak-check=yes --suppressions=Misc/valgrind-python.supp \
    ./python -E -tt ./Lib/test/regrtest.py -uall,-bsddb,-compiler \
                        -x test_logging test_ssl test_multiprocessing
  valgrind -q --leak-check=yes --suppressions=Misc/valgrind-python.supp \
    ./python -E -tt ./Lib/test/regrtest.py test_multiprocessing
  for i in `seq 1 4000` ; do
    LD_PRELOAD=~/local/lib/libfailmalloc.so FAILMALLOC_INTERVAL=$i \
        ./python -c pass
  done

At least some of these fixes should probably be backported to 2.5.

16 years agofix warning
Benjamin Peterson [Sat, 23 Aug 2008 21:40:15 +0000 (21:40 +0000)]
fix warning

16 years ago#3643 add a few more checks to _testcapi to prevent segfaults
Benjamin Peterson [Sat, 23 Aug 2008 20:27:43 +0000 (20:27 +0000)]
#3643 add a few more checks to _testcapi to prevent segfaults

Author: Victor Stinner
Reviewer: Benjamin Peterson

16 years agoSmall updates to types member docs, backport from r65994.
Georg Brandl [Sat, 23 Aug 2008 15:15:31 +0000 (15:15 +0000)]
Small updates to types member docs, backport from r65994.

16 years agoFix bug 3625: test issues on 64bit windows. r=pitrou
Mark Hammond [Sat, 23 Aug 2008 00:59:14 +0000 (00:59 +0000)]
Fix bug 3625: test issues on 64bit windows. r=pitrou

16 years agod is the correct format string
Christian Heimes [Fri, 22 Aug 2008 21:23:47 +0000 (21:23 +0000)]
d is the correct format string

16 years agofix a few get_name() calls and turn then to .name
Benjamin Peterson [Fri, 22 Aug 2008 20:43:48 +0000 (20:43 +0000)]
fix a few get_name() calls and turn then to .name

Reviewer: Christian Heimes

16 years agoFixed two format strings in the _collections module. For example
Christian Heimes [Fri, 22 Aug 2008 20:10:27 +0000 (20:10 +0000)]
Fixed two format strings in the _collections module. For example
Modules/_collectionsmodule.c:674: warning: format '%i' expects type 'int', but argument 2 has type 'Py_ssize_t'
Reviewed by Benjamin Peterson

16 years agoSilenced a compiler warning in the sqlite module
Christian Heimes [Fri, 22 Aug 2008 19:55:54 +0000 (19:55 +0000)]
Silenced a compiler warning in the sqlite module
Modules/_sqlite/row.c:187: warning: suggest parentheses around && within ||
Reviewed by Benjamin Peterson

16 years agoSilenced compiler warning
Christian Heimes [Fri, 22 Aug 2008 19:47:25 +0000 (19:47 +0000)]
Silenced compiler warning
Objects/stringlib/find.h:97: warning: 'stringlib_contains_obj' defined but not used
Reviewed by Benjamin Peterson

16 years agoChanged type of numarenas from uint to size_t to silence a GCC warning on 64bit OSes...
Christian Heimes [Fri, 22 Aug 2008 19:34:15 +0000 (19:34 +0000)]
Changed type of numarenas from uint to size_t to silence a GCC warning on 64bit OSes. Reviewed by Benjamin Peterson.

16 years agoIssue #1342811: Fixed broken patch. Reviewed by benjamin.peterson.
Robert Schuppenies [Fri, 22 Aug 2008 08:03:43 +0000 (08:03 +0000)]
Issue #1342811: Fixed broken patch. Reviewed by benjamin.peterson.

16 years agoissue 3633: Solaris allows fullwidth Unicode digits in isxdigit, so
Mark Dickinson [Thu, 21 Aug 2008 21:38:38 +0000 (21:38 +0000)]
issue 3633: Solaris allows fullwidth Unicode digits in isxdigit, so
rewrite float.fromhex to only allow ASCII hex digits on all platforms.
(Tests for this are already present, but the test_float failures
on Solaris hadn't been noticed before.)

Reviewed by Antoine Pitrou.

16 years agoFix float.fromhex test to give additional information on failure. This
Mark Dickinson [Thu, 21 Aug 2008 20:02:24 +0000 (20:02 +0000)]
Fix float.fromhex test to give additional information on failure.  This
change is aimed at diagnosing issue 3633 (test_float fails on Solaris).

Reviewed by Benjamin Peterson

16 years agodone with the release
Barry Warsaw [Thu, 21 Aug 2008 02:12:56 +0000 (02:12 +0000)]
done with the release

16 years agoTagging 2.6b3
Barry Warsaw [Thu, 21 Aug 2008 01:15:57 +0000 (01:15 +0000)]
Tagging 2.6b3

16 years agoBump to 2.6b3. v2.6b3
Barry Warsaw [Thu, 21 Aug 2008 01:15:08 +0000 (01:15 +0000)]
Bump to 2.6b3.

16 years agoReverted r65900. See http://mail.python.org/pipermail/python-checkins/2008-August...
Hirokazu Yamamoto [Wed, 20 Aug 2008 16:15:28 +0000 (16:15 +0000)]
Reverted r65900. See http://mail.python.org/pipermail/python-checkins/2008-August/073116.html

16 years agoNews for the tp_flags change.
Guido van Rossum [Wed, 20 Aug 2008 15:01:50 +0000 (15:01 +0000)]
News for the tp_flags change.

16 years agoNews for the imageop fix.
Guido van Rossum [Wed, 20 Aug 2008 14:57:20 +0000 (14:57 +0000)]
News for the imageop fix.

16 years agofix up the multiprocessing docs a little
Benjamin Peterson [Wed, 20 Aug 2008 14:07:59 +0000 (14:07 +0000)]
fix up the multiprocessing docs a little

16 years agoIssue #3612: Added some missing basic types in ctypes.wintypes.
Hirokazu Yamamoto [Wed, 20 Aug 2008 13:14:07 +0000 (13:14 +0000)]
Issue #3612: Added some missing basic types in ctypes.wintypes.

16 years agofixed get_file_system in test_os.py ('path' is unicode on py3k and ansi on trunk)
Hirokazu Yamamoto [Wed, 20 Aug 2008 04:13:28 +0000 (04:13 +0000)]
fixed get_file_system in test_os.py ('path' is unicode on py3k and ansi on trunk)

16 years agofix silly errors of mine
Benjamin Peterson [Wed, 20 Aug 2008 02:15:42 +0000 (02:15 +0000)]
fix silly errors of mine

16 years agonewSymbolTable is not public API
Benjamin Peterson [Wed, 20 Aug 2008 01:44:45 +0000 (01:44 +0000)]
newSymbolTable is not public API

16 years agodeprecate some useless, noop methods in symtable
Benjamin Peterson [Wed, 20 Aug 2008 01:42:01 +0000 (01:42 +0000)]
deprecate some useless, noop methods in symtable

16 years agoadd a NEWS note for new args syntax
Benjamin Peterson [Wed, 20 Aug 2008 01:27:30 +0000 (01:27 +0000)]
add a NEWS note for new args syntax

16 years agofollow-up of issue3473: update the compiler package to recognize the new syntax.
Amaury Forgeot d'Arc [Wed, 20 Aug 2008 00:08:47 +0000 (00:08 +0000)]
follow-up of issue3473: update the compiler package to recognize the new syntax.

16 years agocheck that the parser module can handle the new keyword syntax
Benjamin Peterson [Tue, 19 Aug 2008 22:06:11 +0000 (22:06 +0000)]
check that the parser module can handle the new keyword syntax

16 years agoMerged revisions 65876 via svnmerge from
Benjamin Peterson [Tue, 19 Aug 2008 21:07:15 +0000 (21:07 +0000)]
Merged revisions 65876 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r65876 | benjamin.peterson | 2008-08-19 15:54:52 -0500 (Tue, 19 Aug 2008) | 1 line

  apply a fix I think will help Windows
........

16 years agoIssue 1179: [CVE-2007-4965] Integer overflow in imageop module.
Guido van Rossum [Tue, 19 Aug 2008 21:02:04 +0000 (21:02 +0000)]
Issue 1179: [CVE-2007-4965] Integer overflow in imageop module.

16 years agoHopeful fix for issue 1878: remove Py_TPFLAGS_HAVE_VERSION_TAG from
Guido van Rossum [Tue, 19 Aug 2008 20:13:02 +0000 (20:13 +0000)]
Hopeful fix for issue 1878: remove Py_TPFLAGS_HAVE_VERSION_TAG from
Py_TPFLAGS_DEFAULT when not building the core.

16 years agoallow keyword args to be passed in after *args #3473
Benjamin Peterson [Tue, 19 Aug 2008 19:52:46 +0000 (19:52 +0000)]
allow keyword args to be passed in after *args #3473

16 years agoCOM method code is windows specific
Thomas Heller [Tue, 19 Aug 2008 19:40:23 +0000 (19:40 +0000)]
COM method code is windows specific

16 years agofix a little typo
Benjamin Peterson [Tue, 19 Aug 2008 19:27:53 +0000 (19:27 +0000)]
fix a little typo

16 years agoFix a regression introduced by rev. 63792: ctypes function pointers
Thomas Heller [Tue, 19 Aug 2008 19:25:04 +0000 (19:25 +0000)]
Fix a regression introduced by rev. 63792: ctypes function pointers
that are COM methods must have a boolean True value.

16 years agosilence callable warning in hmac
Benjamin Peterson [Tue, 19 Aug 2008 19:07:38 +0000 (19:07 +0000)]
silence callable warning in hmac

16 years agoissue3352: clean up the multiprocessing API to remove many get_/set_ methods and...
Jesse Noller [Tue, 19 Aug 2008 19:06:19 +0000 (19:06 +0000)]
issue3352: clean up the multiprocessing API to remove many get_/set_ methods and convert them to properties. Update the docs and the examples included.

16 years agoget unparse to at least unparse its self
Benjamin Peterson [Tue, 19 Aug 2008 17:59:23 +0000 (17:59 +0000)]
get unparse to at least unparse its self

16 years agoFix strange character in the docstring.
Thomas Heller [Tue, 19 Aug 2008 17:47:13 +0000 (17:47 +0000)]
Fix strange character in the docstring.

16 years agoMerged revisions 65853-65854 via svnmerge from
Benjamin Peterson [Tue, 19 Aug 2008 16:41:34 +0000 (16:41 +0000)]
Merged revisions 65853-65854 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r65853 | benjamin.peterson | 2008-08-19 11:09:09 -0500 (Tue, 19 Aug 2008) | 1 line

  apply a patch for #3131. this solves the problem for the moment, but we should do some refactoring to get display logic out of RefactoringTool
........
  r65854 | benjamin.peterson | 2008-08-19 11:37:38 -0500 (Tue, 19 Aug 2008) | 1 line

  another quick fix to get lib2to3 to work
........

16 years agoFix grammar.
Georg Brandl [Mon, 18 Aug 2008 23:09:49 +0000 (23:09 +0000)]
Fix grammar.

16 years agoupdate the threading docs to account for recent changes
Benjamin Peterson [Mon, 18 Aug 2008 22:29:19 +0000 (22:29 +0000)]
update the threading docs to account for recent changes

16 years agoadd py3k warnings for old threading APIs
Benjamin Peterson [Mon, 18 Aug 2008 21:53:29 +0000 (21:53 +0000)]
add py3k warnings for old threading APIs

they will still live in 3.0 but it can't hurt

16 years ago#2234 distutils failed with mingw binutils 2.18.50.20080109.
Amaury Forgeot d'Arc [Mon, 18 Aug 2008 19:23:47 +0000 (19:23 +0000)]
#2234 distutils failed with mingw binutils 2.18.50.20080109.
Be less strict when parsing these version numbers,
they don't necessarily follow the python numbering scheme.

16 years agofix old API names in test_ssl
Benjamin Peterson [Mon, 18 Aug 2008 18:39:57 +0000 (18:39 +0000)]
fix old API names in test_ssl

16 years agopatch up multiprocessing until it's API can be changed too
Benjamin Peterson [Mon, 18 Aug 2008 18:31:58 +0000 (18:31 +0000)]
patch up multiprocessing until it's API can be changed too

16 years agobring back the old API
Benjamin Peterson [Mon, 18 Aug 2008 18:13:17 +0000 (18:13 +0000)]
bring back the old API

16 years agochange a few uses of the threading APIs
Benjamin Peterson [Mon, 18 Aug 2008 18:01:43 +0000 (18:01 +0000)]
change a few uses of the threading APIs

16 years agobackport threading property changes
Benjamin Peterson [Mon, 18 Aug 2008 17:45:09 +0000 (17:45 +0000)]
backport threading property changes

16 years agochange threading.getIdent to a property
Benjamin Peterson [Mon, 18 Aug 2008 16:40:03 +0000 (16:40 +0000)]
change threading.getIdent to a property

This is new in 2.6 so now need to worry about backwards compatibility :)

16 years agoBackport of r63826.
Eric Smith [Mon, 18 Aug 2008 14:27:38 +0000 (14:27 +0000)]
Backport of r63826.

Optimization of str.format() for cases with str, unicode, int, long,
and float arguments.  This gives about 30% speed improvement for the
simplest (but most common) cases.  This patch skips the __format__
dispatch, and also avoids creating an object to hold the format_spec.

Unfortunately there's a complication in 2.6 with int, long, and float
because they always expect str format_specs.  So in the unicode
version of this optimization, just check for unicode objects.  int,
float, long, and str can be added later, if needed.

16 years agoFix typo
Nick Coghlan [Mon, 18 Aug 2008 13:32:19 +0000 (13:32 +0000)]
Fix typo

16 years agoIssue 2235: document PyObject_HashNotImplemented
Nick Coghlan [Mon, 18 Aug 2008 13:14:22 +0000 (13:14 +0000)]
Issue 2235: document PyObject_HashNotImplemented

16 years agoBelated NEWS entry for r65642
Nick Coghlan [Mon, 18 Aug 2008 12:42:46 +0000 (12:42 +0000)]
Belated NEWS entry for r65642

16 years agoRestore Python 2.3 compatibility and remove "with" usage.
Marc-André Lemburg [Mon, 18 Aug 2008 11:13:45 +0000 (11:13 +0000)]
Restore Python 2.3 compatibility and remove "with" usage.

16 years agoadd a test for reduce's move
Benjamin Peterson [Mon, 18 Aug 2008 02:12:23 +0000 (02:12 +0000)]
add a test for reduce's move

16 years agofollup to #3473: don't duplicate the reduce code
Benjamin Peterson [Mon, 18 Aug 2008 02:01:21 +0000 (02:01 +0000)]
follup to #3473: don't duplicate the reduce code

16 years agocorrect version
Benjamin Peterson [Mon, 18 Aug 2008 01:27:05 +0000 (01:27 +0000)]
correct version

16 years agoUpdate __all__ for cookielib, csv, os, and urllib2 for objects imported into
Brett Cannon [Mon, 18 Aug 2008 00:46:22 +0000 (00:46 +0000)]
Update __all__ for cookielib, csv, os, and urllib2 for objects imported into
the module but exposed as part of the API.

16 years agoRemove an unneeded import of abc.ABCMeta from 'inspect'.
Brett Cannon [Mon, 18 Aug 2008 00:41:11 +0000 (00:41 +0000)]
Remove an unneeded import of abc.ABCMeta from 'inspect'.

16 years agoRemove two unneeded imports in 'io'.
Brett Cannon [Mon, 18 Aug 2008 00:36:52 +0000 (00:36 +0000)]
Remove two unneeded imports in 'io'.

16 years agoRemove imports of 'warnings' that are no longer needed in dummy_thread,
Brett Cannon [Sun, 17 Aug 2008 22:10:11 +0000 (22:10 +0000)]
Remove imports of 'warnings' that are no longer needed in dummy_thread,
filecmp, and shelve.

16 years agoFix a refleak in bytearray.split and bytearray.rsplit, detected by
Amaury Forgeot d'Arc [Sun, 17 Aug 2008 21:05:18 +0000 (21:05 +0000)]
Fix a refleak in bytearray.split and bytearray.rsplit, detected by
   regrtest.py -R:: test_bytes

16 years agoset svn:executable on a script
Benjamin Peterson [Sun, 17 Aug 2008 20:33:45 +0000 (20:33 +0000)]
set svn:executable on a script

16 years ago#3580: fix a failure in test_os
Antoine Pitrou [Sun, 17 Aug 2008 20:15:07 +0000 (20:15 +0000)]
#3580: fix a failure in test_os

16 years agoget the symtable module back in working order
Benjamin Peterson [Sun, 17 Aug 2008 17:13:26 +0000 (17:13 +0000)]
get the symtable module back in working order
- Fix broken functions
- Add (hopefully) extensive tests
- Modernize a little

16 years ago#3556: test_raiseMemError consumes an insane amount of memory
Antoine Pitrou [Sun, 17 Aug 2008 17:01:49 +0000 (17:01 +0000)]
#3556: test_raiseMemError consumes an insane amount of memory

16 years agobackport r65723: strengthen test_os.test_closerange
Antoine Pitrou [Sun, 17 Aug 2008 14:43:41 +0000 (14:43 +0000)]
backport r65723: strengthen test_os.test_closerange

16 years agoBackport r65661, r65760: Issue #3575: Incremental decoder's decode
Hirokazu Yamamoto [Sun, 17 Aug 2008 13:10:46 +0000 (13:10 +0000)]
Backport r65661, r65760: Issue #3575: Incremental decoder's decode
function now takes bytearray by using 's*' instead of 't#'.

16 years agofix ZipFile.testzip() to work with very large embedded files
Antoine Pitrou [Sun, 17 Aug 2008 13:06:29 +0000 (13:06 +0000)]
fix ZipFile.testzip() to work with very large embedded files

16 years agoI forgot to update NEWS.
Hirokazu Yamamoto [Sun, 17 Aug 2008 09:46:56 +0000 (09:46 +0000)]
I forgot to update NEWS.

16 years agoIssue #2222: Fixed reference leak when occured os.rename()
Hirokazu Yamamoto [Sun, 17 Aug 2008 09:19:52 +0000 (09:19 +0000)]
Issue #2222: Fixed reference leak when occured os.rename()
fails unicode conversion on 2nd parameter. (windows only)

16 years agoUpdate distutils so that it triggers no warnings when run under -3.
Brett Cannon [Sun, 17 Aug 2008 04:16:04 +0000 (04:16 +0000)]
Update distutils so that it triggers no warnings when run under -3.

16 years agoIssue 2464. Supports a malformation in the URL received
Facundo Batista [Sun, 17 Aug 2008 03:38:39 +0000 (03:38 +0000)]
Issue 2464. Supports a malformation in the URL received
in a redirect.

16 years agouhh PySTEntry->ste_unoptimized has to be exposed too
Benjamin Peterson [Sun, 17 Aug 2008 02:23:43 +0000 (02:23 +0000)]
uhh PySTEntry->ste_unoptimized has to be exposed too

16 years agofix compile errors
Benjamin Peterson [Sun, 17 Aug 2008 01:27:30 +0000 (01:27 +0000)]
fix compile errors

16 years agoa few improvements
Benjamin Peterson [Sun, 17 Aug 2008 01:17:15 +0000 (01:17 +0000)]
a few improvements

16 years agoexpose PySTEntry.nested so the symtable module will work
Benjamin Peterson [Sun, 17 Aug 2008 01:09:17 +0000 (01:09 +0000)]
expose PySTEntry.nested so the symtable module will work

16 years agoMake test_ossaudiodev work.
Antoine Pitrou [Sun, 17 Aug 2008 00:36:03 +0000 (00:36 +0000)]
Make test_ossaudiodev work.

16 years agoPySTEntry's constructor is static; there's no point in a fancy API name
Benjamin Peterson [Sat, 16 Aug 2008 23:29:40 +0000 (23:29 +0000)]
PySTEntry's constructor is static; there's no point in a fancy API name

16 years agoReview symtable docs.
Georg Brandl [Sat, 16 Aug 2008 22:37:05 +0000 (22:37 +0000)]
Review symtable docs.

16 years agoinclude filename and line number in SyntaxError
Benjamin Peterson [Sat, 16 Aug 2008 22:11:33 +0000 (22:11 +0000)]
include filename and line number in SyntaxError

16 years agoSilence DeprecationWarning raised by mimetools and rfc822 in cgi.
Brett Cannon [Sat, 16 Aug 2008 22:00:27 +0000 (22:00 +0000)]
Silence DeprecationWarning raised by mimetools and rfc822 in cgi.

16 years agoSilence the DeprecationWarning raised in httplib when mimetools is imported.
Brett Cannon [Sat, 16 Aug 2008 21:56:03 +0000 (21:56 +0000)]
Silence the DeprecationWarning raised in httplib when mimetools is imported.

16 years agoSilence the DeprecationWarning raised by importing mimetools in BaseHTTPServer.
Brett Cannon [Sat, 16 Aug 2008 21:47:07 +0000 (21:47 +0000)]
Silence the DeprecationWarning raised by importing mimetools in BaseHTTPServer.
This does have an unfortunate side-effect of silencing the warning for all
subsequent code that imports mimetools as well since the warning is only
executed upon the first import of mimetools.

16 years agoadd some documentation for symtable
Benjamin Peterson [Sat, 16 Aug 2008 21:04:16 +0000 (21:04 +0000)]
add some documentation for symtable

16 years ago#3424 rearrange the order of tests in imghdr to place more common types first
Benjamin Peterson [Sat, 16 Aug 2008 16:29:02 +0000 (16:29 +0000)]
#3424 rearrange the order of tests in imghdr to place more common types first

16 years agoIssue #2776: fixed small issue when handling an URL with double slash
Facundo Batista [Sat, 16 Aug 2008 14:44:07 +0000 (14:44 +0000)]
Issue #2776: fixed small issue when handling an URL with double slash
after a 302 response in the case of not going through a proxy.

16 years agonote how os.utime should be used for emulating touch
Benjamin Peterson [Sat, 16 Aug 2008 03:13:07 +0000 (03:13 +0000)]
note how os.utime should be used for emulating touch

16 years agofix markup
Benjamin Peterson [Sat, 16 Aug 2008 03:02:41 +0000 (03:02 +0000)]
fix markup

16 years agoMerged revisions 65397 via svnmerge from
Benjamin Peterson [Fri, 15 Aug 2008 23:51:24 +0000 (23:51 +0000)]
Merged revisions 65397 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r65397 | collin.winter | 2008-08-01 22:39:06 -0500 (Fri, 01 Aug 2008) | 5 lines

  Patch #3480 by Nick Edds.

  Dramatically simplifies the fix_imports pattern, resulting in a reduction of the test_all_fixers runtime from 122+ secs to 59 secs (a good predictor of 2to3 performance).
........

16 years agodocument that waitpid raises OSError
Gregory P. Smith [Fri, 15 Aug 2008 23:14:00 +0000 (23:14 +0000)]
document that waitpid raises OSError

16 years ago#2676: email/message.py [Message.get_content_type]: Trivial regex hangs on pathologic...
Antoine Pitrou [Fri, 15 Aug 2008 21:03:21 +0000 (21:03 +0000)]
#2676: email/message.py [Message.get_content_type]: Trivial regex hangs on pathological input

16 years ago#3558: Attribute reference binds more tightly than subscription and call.
Georg Brandl [Fri, 15 Aug 2008 18:35:09 +0000 (18:35 +0000)]
#3558: Attribute reference binds more tightly than subscription and call.

16 years agoIssue #3476: make BufferedReader and BufferedWriter thread-safe
Antoine Pitrou [Thu, 14 Aug 2008 21:04:30 +0000 (21:04 +0000)]
Issue #3476: make BufferedReader and BufferedWriter thread-safe

16 years agoDisable the test until I have one that works.
Thomas Heller [Thu, 14 Aug 2008 20:19:18 +0000 (20:19 +0000)]
Disable the test until I have one that works.