[issue3381] `./configure --enable-framework --enable-universalsdk` fails because of change in r63997

2008-07-17 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Ok applied in r65061. -- nosy: +benjamin.peterson resolution: accepted -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue874900] threading module can deadlock after fork

2008-07-17 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: test_3_join_in_forked_from_thread hangs for me in Py3k. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.

[issue3398] mac build 3.0 no MacOS module

2008-07-17 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I assume this is only 3.0 beta 1. This has been fixed for beta 2. -- nosy: +benjamin.peterson resolution: -> out of date status: open -> closed ___ Python tracker <[EMAIL PR

[issue3397] Mac 3.0 build cannot find cachersrc.py

2008-07-17 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This is fixed in beta 2. -- nosy: +benjamin.peterson resolution: -> out of date status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3398] mac build 3.0 no MacOS module

2008-07-17 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: It's supposed to be release tonight. Sorry for the confusion. :) ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue3400] dis module: undocumented new bytecodes

2008-07-17 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: LOAD_BUILD_CLASS is 3.0 only and I documented it. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3401] wsgiref can't handle unicode environments

2008-07-17 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: The following errors pop up on the Windows trunk build bot because the LIB environmental variable is unicode not str. This causes the validation to fail. Re-running test 'test_wsgiref' in verbose mode tes

[issue3401] wsgiref can't handle unicode environments

2008-07-17 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- components: +Library (Lib) priority: -> high type: -> behavior versions: +Python 2.6 ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3402] test_nis is hanging on Solaris

2008-07-17 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: The 3.0 Solaris buildbot keeps hanging on test_nis. -- components: Tests messages: 69931 nosy: benjamin.peterson priority: deferred blocker severity: normal status: open title: test_nis is hanging on Solaris type: be

[issue3346] test_ossaudiodev fails

2008-07-18 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3376] Use Python 3 lexer for 3.0 docs

2008-07-18 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: I'm attaching two patches. One, for the Sphinx trunk, adds a pygments_default_lexer option. The other, for the py3k branch, changes the default lexer to python3. It also includes a rather hacky, overriden highlightlang dir

[issue3376] Use Python 3 lexer for 3.0 docs

2008-07-18 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file10937/for_py3k_branch.diff ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2894] 2to3 discards comments before import statements

2008-07-18 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I still this problem with the latest version of 2to3. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3410] platform.version() don't work as expected in Vista in portuguese

2008-07-18 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> lemburg nosy: +lemburg ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3411] str.format() on negative floats

2008-07-18 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> eric.smith nosy: +eric.smith ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3413] typo in Mac/Makefile.in breaks installing IDLE

2008-07-18 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks! Fixed in r65129. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3417] make the fix_dict fixer explicit

2008-07-19 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: Can we make the part of fix_dict that converts d.items/values/keys to list(d.items) explicit? Most of the time, it's fine if the method returns a view and can be a bit of a performance hit to convert it to a list.

[issue3417] make the fix_dict fixer smarter

2008-07-19 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Exactly! For example, if the .items call is in a for loop, list() doesn't need to be called. -- title: make the fix_dict fixer explicit -> make the fix_dict fixer smarter ___

[issue2951] ElementTree parsing bus error (but only from mod_python)

2008-07-19 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This is probably a mod_python problem. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3417] make the fix_dict fixer smarter

2008-07-19 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Here's a patch that doesn't add the enclosing list call in a for loop. -- keywords: +patch Added file: http://bugs.python.org/file10949/smarter_fix_dict.diff ___ Python

[issue3419] multiprocessing module is racy

2008-07-19 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: When running test_multiprocessing in a loop, I see: test test_multiprocessing failed -- Traceback (most recent call last): File "/temp/python/trunk/Lib/test/test_multiprocessing.py", line 1157, in test_remote

[issue3417] make the fix_dict fixer smarter

2008-07-20 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: >for k in d.keys(): > return k # needs to return a list Could you explain this a bit more? ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3417] make the fix_dict fixer smarter

2008-07-22 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Ok. I'll mark this as something to do for 2.7/3.1. -- versions: +Python 2.7, Python 3.1 ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue3424] imghdr test order makes it slow

2008-07-22 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Do you have any benchmarks to prove this with? IMO, the difference would be extremely insignificant. -- nosy: +benjamin.peterson status: open -> pending ___ Python tracker <[EMA

[issue3348] Cannot start wsgiref simple server in Py3k

2008-07-22 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> pje nosy: +pje priority: high -> critical ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3429] urllib.urlopen() return type

2008-07-22 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I'll let Georg make the final determination about this, but IMO this is unneeded. File-like objects are so common in Python code, that just telling what methods are supported should be fine. -- nosy: +benjam

[issue3208] function annotation for builtin and C function

2008-07-23 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: There never should be multiple Python interpreters running in the same process, though. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3208] function annotation for builtin and C function

2008-07-23 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Wed, Jul 23, 2008 at 8:44 PM, Haoyu Bai <[EMAIL PROTECTED]> wrote: > > Haoyu Bai <[EMAIL PROTECTED]> added the comment: > > As I understand, at least C extension modules, which built as shared > libr

[issue3433] Mac, 3.0 framework install error with fink cp

2008-07-24 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Isn't this a Fink problem then? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue3437] robotparser.py missing one line

2008-07-24 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> skip.montanaro nosy: +skip.montanaro ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3441] Regression in "module as a script" command-line option

2008-07-25 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Please see #2751. -- nosy: +benjamin.peterson resolution: -> duplicate status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3442] wsgiref.validate.InputWrapper.readline does not accept optional "length" argument

2008-07-25 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> pje nosy: +pje ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3442> ___ _

[issue3444] add warnings for intra-package imports

2008-07-25 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: Non-absolute or relative imports in 2.6 should give a Py3k warning. -- components: Interpreter Core messages: 70254 nosy: benjamin.peterson priority: release blocker severity: normal status: open title: add warnings for

[issue3447] itertools.izip_longest docs don't specify default fillvalue

2008-07-25 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks. Fixed in r65226. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3358] 2to3 Iterative Wildcard Matching

2008-07-25 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Maybe this is a bad idea, but would it be possible/reasonable to provide recursive and iterative implementations and use the iterative one on large files? -- nosy: +benjamin.peterson ___

[issue3445] functools.update_wrapper bug

2008-07-27 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I think what you want is functools.update_wrapper(myWrapper, str.split, ('__name__', '__doc__')) -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTEC

[issue3452] subprocess.Popen description unclear.

2008-07-27 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks for the report. Fixed in r65259. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3452] subprocess.Popen description unclear.

2008-07-27 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3453] PyType_Ready doesn't ensure that all bases are ready

2008-07-27 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I believe that's because the bases are supposed to be ready at the time a subclass is created. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <ht

[issue3358] 2to3 Iterative Wildcard Matching

2008-07-27 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Sun, Jul 27, 2008 at 6:07 PM, Collin Winter <[EMAIL PROTECTED]> wrote: > > Collin Winter <[EMAIL PROTECTED]> added the comment: > > One option would be to use the faster recursive version, falling back to

[issue3455] os.remove()method document error

2008-07-27 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: What do you mean by "in use"? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://

[issue3358] 2to3 Iterative Wildcard Matching

2008-07-27 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Never mind. I had thought it would take a while for the RuntimeError to be generated, but it only took about 7 seconds; I have no need for a command line switch. ___ Python tracker <[EMAIL

[issue3455] os.remove()method document error

2008-07-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Editors usually don't cause the file to be "in use." "In use" would mean that the file was being held open by a program. Editors only do that when they are opening or saving a file. -- resol

[issue3457] Release notes for 2.6b2 call it an alpha release

2008-07-28 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: georg.brandl -> barry nosy: +barry ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue2491] io.open() handles errors differently on different platforms

2008-07-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: What's the status of this? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue2777] subprocess unit tests for kill, term and send_signal flaky

2008-07-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: What's the status of this? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue2538] memoryview of bytes is not readonly

2008-07-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: How's this coming? -- priority: critical -> release blocker ___ Python tracker <[EMAIL PROTECTED]> <http://bu

[issue2534] Restore isinstance and issubclass speed in 2.6

2008-07-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Can this patch go in? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1967] Backport dictviews to 2.6

2008-07-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I'm going to defer this to 2.7. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue1745] Backport of PEP 3102 "keyword-only arguments" to 2.6

2008-07-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This will probably have to be deferred to 2.7. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2222] Memory leak in os.rename?

2008-07-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: How's this coming along? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue2542] PyErr_ExceptionMatches must not fail

2008-07-28 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: critical -> release blocker ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue1242657] list(obj) can swallow KeyboardInterrupt

2008-07-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Raymond, can you comment? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue3462] test_builtin fails after test_decimal

2008-07-28 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: In Py3k: $ ./python Lib/test/regrtest.py test_decimal test_builtin test_decimal test_builtin test test_builtin failed -- Traceback (most recent call last): File "Lib/test/regrtest.py", line 603, in runtest_inner

[issue3462] test_builtin fails after test_decimal

2008-07-29 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Tue, Jul 29, 2008 at 8:30 AM, Amaury Forgeot d'Arc <[EMAIL PROTECTED]> wrote: > > Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: > > Bingo! doctest sets the __builtins__._ variable,

[issue3462] test_builtin fails after test_decimal

2008-07-29 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I vote for fixing doctest then! -- components: +Library (Lib), Tests type: -> behavior ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3462] test_builtin fails after test_decimal

2008-07-29 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Ok. Thanks! Applied in r65285. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3462] test_builtin fails after test_decimal

2008-07-29 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Tue, Jul 29, 2008 at 10:29 AM, Antoine Pitrou <[EMAIL PROTECTED]> wrote: > > Antoine Pitrou <[EMAIL PROTECTED]> added the comment: > > Well except that it would be better spelt as: >__builtins__._ =

[issue3470] Wrong name for getrandbits in docstring and documentation

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks! Fixed in r65307. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3139] bytearrays are not thread safe

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Sorry, that was my oversight! I've backported the fix. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue3295] PyExc_BufferError is declared but nowhere defined

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: ... and backported to the trunk in r65310. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3295] PyExc_BufferError is declared but nowhere defined

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Wed, Jul 30, 2008 at 6:46 PM, Antoine Pitrou <[EMAIL PROTECTED]> wrote: > > Antoine Pitrou <[EMAIL PROTECTED]> added the comment: > > About r65312, BufferError inherits from StandardError, not directly f

[issue2542] PyErr_ExceptionMatches must not fail

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I just merged it. -- nosy: +benjamin.peterson status: pending -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue1692335] Fix exception pickling: Move initial args assignment to BaseException.__new__

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: How is this coming? Can we apply this to 2.6? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue2322] Clean up getargs.c and its formatting possibilities

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Hmm. I suppose this is still an issue. Should it be a release blocker yet? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2335] Backport set literals

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I'm going to defer this to 2.7. -- nosy: +benjamin.peterson versions: +Python 2.7 -Python 2.6 ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue2336] Backport PEP 3114 (__next__)

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This has been done. -- nosy: +benjamin.peterson resolution: -> duplicate status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue2340] Backport PEP 3132 (extended iterable unpacking)

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I'm deferring this to 2.7 -- nosy: +benjamin.peterson versions: +Python 2.7 -Python 2.6 ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue2369] Fixer for new integer literals are needed

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Is this still an issue? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2368] Fixer needed to change __builtin__ -> builtins

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: We have a fixer for this. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue2226] Small _abcoll Bugs / Oddities

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Ping. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2373] Raise Py3K warnings for comparisons that changed

2008-07-30 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue2367] Fixer to handle new places where parentheses are needed

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: How is this coming? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2366] Fixer for new metaclass syntax is needed

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Ping -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1581] xmlrpclib.ServerProxy() doesn't use x509 data

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I assume you wanted to close this too. -- nosy: +benjamin.peterson status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue1616] compiler warnings

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Is this still a problem? ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1616> ___ _

[issue2357] sys.exc_{type, values, traceback} should raise a Py3K warning

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Collin, can you review the 2to3 patch? -- assignee: -> collinwinter components: +2to3 (2.x to 3.0 conversion tool) -Interpreter Core nosy: +benjamin.peterson, collinwinter ___ Pytho

[issue2470] Need fixer for dl (removed) -> ctypes module

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: What's the status of this? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue1518] Fast globals/builtins access (patch)

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Ping. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2443] uninitialized access to va_list

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: What's the status of this? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue2375] PYTHON3PATH environment variable to supersede PYTHONPATH for multi-Python environments

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: What's the status of this? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue2458] Allow Python code to change Py3k warning flag

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I guess this isn't going anywhere... -- resolution: -> rejected status: open -> closed versions: +Python 2.7 -Python 2.6 ___ Python tracker <[EMAIL PROTECTED]>

[issue1731717] race condition in subprocess module

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Any more information on this? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue1717] Get rid of more refercenes to __cmp__

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Ping -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2389] Array pickling exposes internal memory representation of elements

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Ping. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1563] asyncore and asynchat incompatible with Py3k str and bytes

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Any progress? -- assignee: -> josiahcarlson nosy: +benjamin.peterson, josiahcarlson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue2370] operator.{isCallable,sequenceIncludes} needs a fixer

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Collin, can you review? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1179] [CVE-2007-4965] Integer overflow in imageop module

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Does anybody still care about this for 2.6? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1685] linecache .updatecache fails on utf8 encoded files

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: re now handles bytes, so what's next? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue2902] tkinter uses MacOS

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: [ccing people who might now if this should still be an issue.] -- nosy: +gpolo, loewis ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2853] *** glibc detected *** python: double free or corruption

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On lack of response from the OP, I'm going to mark this closed. -- nosy: +benjamin.peterson resolution: -> works for me status: open -> closed ___ Python tracker <[EMA

[issue2965] Update interface of weakref dictionaries

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: What needs to happen here? ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2965> ___ _

[issue2384] [Py3k] line number is wrong after encoding declaration

2008-07-30 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: critical -> release blocker ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue2744] Fix test_cProfile

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Alexandre, are you still computerless? ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2548] Undetected error in exception handling

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Ping -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2919] Merge profile/cProfile in 3.0

2008-07-30 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: critical -> release blocker ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3132] implement PEP 3118 struct changes

2008-07-30 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: critical -> release blocker ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue1878] class attribute cache failure (regression)

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Ping -- nosy: +benjamin.peterson priority: critical -> release blocker ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3473] In function call, keyword arguments could follow *args

2008-07-31 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: The patches look good to me. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3476] BufferedWriter not thread-safe

2008-07-31 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: It seems that as with the quadratic binary buffered reading, the best solution is the list of bytes which should be especially helped by your bytes joining optimization. -- nosy: +benjamin.pe

<    4   5   6   7   8   9   10   11   12   13   >