[issue3206] Multiprocessing Array and sharedctypes.Array error in docs/implementation

2008-06-26 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: georg.brandl -> jnoller ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3211] warnings.warn_explicit raises SystemError

2008-06-26 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> brett.cannon nosy: +brett.cannon ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue2512] decide what to do with gettext API

2008-06-26 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This is something that should definitely happen before beta 2. -- priority: critical -> release blocker ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3122] sys.getsizeof() gives an AttributeError for _sre objects.

2008-06-26 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I think it would be better to give a TypeError rather than an AttributeError for objects that don't support __sizeof__ as per other special methods. -- nosy: +benjamin.peterson ___

[issue3214] Suggest change to glossary explanation: "Duck Typing"

2008-06-27 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Georg, you may also want to amend this entry for ABCs. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3217] make text is broken

2008-06-27 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: Traceback (most recent call last): File "/temp/python/trunk/Doc/tools/sphinx/__init__.py", line 135, in main app.builder.build_update() File "/temp/python/trunk/Doc/tools/sphinx/builder.py", line 199, i

[issue3154] "Quick search" box renders too long on FireFox 3

2008-06-27 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: In that case, I think we can only advise to change the font size and/or make a Firefox bug report. -- resolution: -> works for me status: open -> closed ___ Python tracker <[

[issue3219] repeated keyword arguments

2008-06-27 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: The attached patch gives a SyntaxError. -- keywords: +patch nosy: +benjamin.peterson priority: -> critical Added file: http://bugs.python.org/file10755/repeated_kwargs.patch ___ Pytho

[issue3223] py3k warn on use of frame.f_exc*

2008-06-27 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: f_exc_value and friends are no longer available in 3.0 and should get a Py3k warning on use. -- keywords: easy messages: 68855 nosy: benjamin.peterson priority: high severity: normal status: open title: py3k warn on

[issue3221] SystemError: Parent module 'foo' not loaded on import statement

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

[issue3154] "Quick search" box renders too long on FireFox 3

2008-06-27 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- status: closed -> pending ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3154> ___ _

[issue3174] 3.0b1 doesn't seem to install on macs

2008-06-28 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> benjamin.peterson priority: -> release blocker ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3224] Small typo in 2.6 what's new

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

[issue3226] can't install on OSX 10.4

2008-06-28 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: Mac/Makefile.in uses the arch command which doesn't have the ability to run a given architecture in 10.4 like it does in 10.5. Hence, the install fails. -- assignee: ronaldoussoren messages: 68879 nosy: benjam

[issue3227] os.environ.clear has no effect on child processes

2008-06-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This has been fixed in the upcoming Python 2.6. -- nosy: +benjamin.peterson resolution: -> out of date status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <h

[issue2973] _ssl compiler warnings

2008-06-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Yes, although I have no idea what that feature may be... (sigh) Oh well, it's a wish. -- priority: normal -> low ___ Python tracker <[EMAIL PROTECTED]> <http://bu

[issue3226] can't install on OSX 10.4

2008-06-28 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- versions: -Python 3.0 ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3226> ___ _

[issue3229] Language reference, class definitions: missing text in "Programmer's note"

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

[issue2042] test_audioop.py converted to unittest

2008-06-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks! Committed in r64582. -- resolution: -> accepted status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3230] dictobject.c: inappropriate use of PySet_GET_SIZE?

2008-06-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I still see another instance of PySet_GET_SIZE on line 1274. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3236] ints contructed from strings don't use the smallint constants

2008-06-29 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I suspect this is because of the transition from PyInt to PyLong: Python 2.6b1+ (trunk:64580M, Jun 28 2008, 18:04:04) [GCC 4.0.1 (Apple Computer, Inc. build 5370)] on darwin Type "help", "copyright", "

[issue3234] subprocess.py strips last character when raising an AttributeError

2008-06-29 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: No, the class you are creating with cStringIO.cStringIO is actually called cStringIO.cStringI. -- nosy: +benjamin.peterson resolution: -> invalid status: open -> closed ___ Py

[issue3237] idlelib3.0 still using xrange

2008-06-29 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> kbk nosy: +kbk ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3237> ___ _

[issue2683] subprocess.Popen.communicate takes bytes, not str

2008-06-29 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Hmm. I think it's better to make people explicity encode their string. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue3237] idlelib3.0 still using xrange

2008-06-29 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- resolution: -> duplicate status: open -> closed superseder: -> idlelib/EditorWindow.py uses xrange() ___ Python tracker <[EMAIL PROTECTED]> <http://b

[issue2325] isinstance(anything, MetaclassThatDefinesInstancecheck) raises instead of returning False

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

[issue2829] Copy cgi.parse_qs() to urllib.parse

2008-06-30 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- resolution: -> duplicate status: open -> closed superseder: -> relocate cgi.parse_qs() into urlparse ___ Python tracker <[EMAIL PROTECTED]> <http://b

[issue3245] Memory leak on OS X

2008-06-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I assume it was fixed then. -- nosy: +benjamin.peterson resolution: -> out of date status: open -> closed type: performance -> resource usage ___ Python tracker <[EMAIL

[issue3242] Segfault in PyFile_SoftSpace/PyEval_EvalFrameEx with sys.stdout reassigned

2008-06-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Can you try on later versions of Python. 2.4 is no longer supported. -- nosy: +benjamin.peterson resolution: invalid -> status: closed -> open ___ Python tracker <[EMAIL PR

[issue3250] datetime.time does not support arithmetic

2008-07-01 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- type: -> feature request versions: +Python 2.7 -Python 2.4, Python 2.5 ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3249] bug adding datetime.timedelta to datetime.date

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

[issue3252] str.tobytes() and bytes/bytearray.tostr()

2008-07-01 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: -1 encoding and decoding is generally accepted terminology. Besides then we would be binding ourselves to returning bytes or a str; that's not necessarily guaranteed. Anyway, I think this hardly has a chance in the place we a

[issue3174] 3.0b1 doesn't seem to install on macs

2008-07-01 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Ok. I tried to get it working in r64618. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3219] repeated keyword arguments

2008-07-01 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Done for 2.6 in r64622. (Georg reviewed.) -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3174] 3.0b1 doesn't seem to install on macs

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

[issue3254] Suggestion: change default behavior of __ne__

2008-07-01 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Sorry, this is documented [1], and it unlikely to ever be changed. [1] http://docs.python.org/ref/customization.html -- nosy: +benjamin.peterson resolution: -> rejected status: open

[issue3254] Suggestion: change default behavior of __ne__

2008-07-01 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: 1) It's much more flexible. 2) It would break compatibility. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue3256] Multiprocessing docs are not 3.0-ready

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

[issue678464] Docs don't define sequence-ness very well

2008-07-02 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I think the glossary now has some good definitions of iterable and sequence, so we can close this. (after 5 years!) -- nosy: +benjamin.peterson resolution: -> out of date status: open

[issue3259] fix_imports needs to be using the 'as' keyword

2008-07-02 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Yeah, but then commands will be replaced with subprocess. $ cat > m import commands commands.getoutput() $ 2to3 m RefactoringTool: Skipping implicit fixer: buffer RefactoringTool: Skipping implicit fixer: idioms RefactoringTool:

[issue3267] yield in list comprehensions possibly broken in 3.0

2008-07-03 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This is because list comprehensions are implemented as functions in 3.0 so their scope is not leaked out to the rest of the function. Here is the bytecode for 2.6: >>> dis.dis(f) 2 0 BUILD_LIST 0

[issue3271] iter.next() or iter.__next__() ?

2008-07-03 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Where in the 3.0 docs do you see it.next() used? It should be changed. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3271] iter.next() or iter.__next__() ?

2008-07-03 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: fixed in r64696. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3271> ___ __

[issue3271] iter.next() or iter.__next__() ?

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

[issue3275] Control flow not optimized

2008-07-03 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: A patch for this was just recently rejected. See #1394. -- nosy: +benjamin.peterson resolution: -> rejected status: open -> closed ___ Python tracker <[EMAIL PR

[issue3284] Delete obsolete 'Unicode' in Py3 str docstrings; related fixes

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

[issue3291] rlcompleter doesn't work anymore

2008-07-05 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Antoine, can you try it before r64671? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3291] rlcompleter doesn't work anymore

2008-07-05 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks for the report and the fix! (committed in r64748) -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3294] SVN repository contains an incorrect symbolic link

2008-07-05 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Fixed in r64749. -- assignee: -> benjamin.peterson nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> &l

[issue3295] PyExc_BufferError is declared but nowhere defined

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

[issue3296] print function not executed in python 3.0 tutorial

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

[issue3315] abc.rst little error

2008-07-07 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This is fixed on the trunk, and should be merged into Py3k shortly. -- nosy: +benjamin.peterson resolution: -> later status: open -> closed ___ Python tracker <[EMAIL PR

[issue3333] Need -3 warning for exec statement becoming a function

2008-07-10 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: No, I don't think we do. This is something that 2to3 can handle well, and also rather pointless because it would be impossible to get rid of the warning in 2.x because exec isn't a function in 2.x.(short of removing the

[issue2280] parser module chokes on unusual characters

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

[issue3324] Broken link in online doc

2008-07-12 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This has been fixed in the development docs: http://docs.python.org/dev/install/index.html -- nosy: +benjamin.peterson resolution: -> out of date status: open -> closed ___ Py

[issue2910] Remove plat-mac from 3.0

2008-07-12 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Carbon may still be in your wc because svn didn't delete it on update. (I can't remember the exact behavior of SVN with dir deletes, but it's weird.) See [1]. I killed plat-mac off in r64896. [1] http://svn.python.org

[issue3320] various doc typos

2008-07-12 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks very much, and feel free to be bored anytime you want! :) Committed in r64897. Jesse, can you look at the mp item? -- nosy: +benjamin.peterson, jnoller ___ Python tracker &

[issue3320] various doc typos

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

[issue2377] Replace import.c with a pure Python implementation

2008-07-12 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2377> ___

[issue1778443] robotparser.py fixes

2008-07-12 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: OK. I committed the patch in r64901. Thanks for the work! -- resolution: remind -> accepted status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3238] backport python 3.0 language functionality to python 2.6 by adding 7 opcodes to ceval.c

2008-07-13 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This isn't dealing with the 2to3 conversion tool. Please do not add it. -- assignee: collinwinter -> components: -2to3 (2.x to 3.0 conversion tool), Tests nosy: +benjamin.peterson

[issue3238] backport python 3.0 language functionality to python 2.6 by adding 7 opcodes to ceval.c

2008-07-13 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- nosy: -benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3238> ___

[issue616013] cPickle documentation incomplete

2008-07-13 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: +1 to backporting _pickle as cPickle. Do bring it up on python-dev. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.

[issue3350] multiprocessing adds built-in types to the global copyreg.dispatch_table

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

[issue3238] backport python 3.0 language functionality to python 2.6 by adding 7 opcodes to ceval.c

2008-07-13 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Sun, Jul 13, 2008 at 2:03 PM, kai zhu <[EMAIL PROTECTED]> wrote: > > kai zhu <[EMAIL PROTECTED]> added the comment: > > why not? it allows developers to migrate 2.x scripts one-by-one to > working 3.0

[issue3218] 2to3 Fix_imports optimization

2008-07-13 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: -> high ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3218> ___ ___

[issue3354] sort(reverse=None) prints misleading error message

2008-07-14 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Well, booleans technically are integers. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3335] subprocess lib - opening same command fails

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

[issue3354] sort(reverse=None) prints misleading error message

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

[issue3352] Deficiencies in multiprocessing/threading API

2008-07-14 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I think we should still keep the py3k warnings on (I'll change them to PendingDeprecationWarnings if you want.), so the API doesn't abruptly change on people. With your approval, I'll make it so. -- assignee:

[issue2512] decide what to do with gettext API

2008-07-14 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: done in r64947. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3354] sort(reverse=None) prints misleading error message

2008-07-14 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Patches are welcome. -- priority: -> low resolution: wont fix -> status: closed -> open ___ Python tracker <[EMAIL PROTECTED]> <http://b

[issue3356] some tests fail in debug mode (test_distutils, test_set)

2008-07-14 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Neither of these fail for me on MacOS. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3357] A bug in the __doc__ string of the sys module

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

[issue3112] implement PEP 3134 exception reporting

2008-07-15 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Antonine, do you have a patch address the review comments? -- assignee: -> benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3364] An ortographical typo in Zen of Python text

2008-07-15 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I'm sorry, but syntax is part of poetry, too. Please stop misusing the tracker. -- nosy: +benjamin.peterson resolution: -> invalid status: open -> closed ___ Python tracker

[issue3112] implement PEP 3134 exception reporting

2008-07-15 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Sorry, Antoine! The patch is in with r64965. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3113] Document exception chaining

2008-07-15 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: high -> critical ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3113> ___ _

[issue3231] re.compile fails with some bytes patterns

2008-07-15 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Antoine's patch (with a 3 character fix) looks just fine to me. Guido, I'm assigning this to you because svn annotate tells me, you made this change. -- assignee: -> gvanrossum nosy:

[issue3316] Proposal for fix_urllib

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

[issue3327] NULL member in modules_by_index

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

[issue3324] Broken link in online doc

2008-07-15 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: For Python 2.6 and 3.0, we have transitioned over from LaTex to a new document format, reST. For this reason, we are not backporting fixes to the docs. However, when 2.7 and 3.1 become the development focus, we will again backport

[issue3371] 2to3 fails in 3.0

2008-07-15 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: I'm disabling lib2to3 in the trunk because it fails just for Python 2.6. (Python 2.5 and 3.0 are fine.) -- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) messages: 69739 nosy: benjam

[issue3371] 2to3 fails in Python 2.6

2008-07-15 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- title: 2to3 fails in 3.0 -> 2to3 fails in Python 2.6 type: -> crash ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3371] 2to3 fails in Python 2.6

2008-07-15 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: That revision caused the test suite to fail because it caused to be actually run. :) ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3371] 2to3 fails in Python 2.6

2008-07-15 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: > IOW, this is a duplicate of issue2969. and so it is. Well, it's disabled now, so no point in arguing how. -- resolution: -> duplicate status: open -> closed ___ Py

[issue2969] Test_imports fails in 2.6

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

[issue3352] Deficiencies in multiprocessing/threading API

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

[issue3379] Option to not-exit on test

2008-07-16 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This is related to (maybe a duplicate of) #2674. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2969] Test_imports fails in 2.6

2008-07-16 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I have fixed this in r65017 and am currently merging it into the trunk and py3k. Martin, do you still want to keep the lib2to3 resource around? -- nosy: +benjamin.peterson resolution: -> fixed status: open

[issue3380] documentation for ElementTree is unusable

2008-07-16 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: It is found in the new docs: http://doc.python.org/dev/ -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

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

2008-07-16 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> ronaldoussoren ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3381> ___ _

[issue3218] 2to3 Fix_imports optimization

2008-07-16 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I've fixed the tests, so you can cross that one off your list. However, the buildbots are now failing because lib2to3 takes too long to test. How soon can we have this optimization applied? -- nosy: +benjam

[issue3373] sys recursion limit a lot shorter on trunk?

2008-07-16 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Brett: >It was originally 10,000, but people wanted thread switches to occur >more often. I thought that was managed by sys.setcheckinterval. -- nosy: +benjamin.peterson ___ Py

[issue2969] Test_imports fails in 2.6

2008-07-16 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I understand that #3218 helps test_import a lot, so once that patch is when I'll remove the resource. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue3226] can't install on OSX 10.4

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

[issue3218] 2to3 Fix_imports optimization

2008-07-16 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Can we expect this in the next 2 hours? It's fine if not, I just need to know whether the 2to3 tests should be disabled for the beta. ___ Python tracker <[EMAIL PROTECTED]> <ht

[issue3389] [PATCH] Allow custom logging Handlers in logging config files

2008-07-16 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> vsajip ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3389> ___ __

[issue3218] 2to3 Fix_imports optimization

2008-07-16 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks very much for getting this done! I checked in the changes in r65053, so they can make beta 2. I'm leaving the issue open, though, in case Collin wants to make more changes. ___ Pyt

[issue874900] threading module can deadlock after fork

2008-07-16 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Can somebody also merge this into Py3k, please? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.

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