[issue5256] rlcompleter adds builtins when custom dict is used

2010-08-07 Thread Michele Orrù
Michele Orrù added the comment: The attached patch fixes this issue and provides some tests. -- keywords: +patch nosy: +maker Added file: http://bugs.python.org/file18421/rlcompleter.patch ___ Python tracker __

[issue5256] rlcompleter adds builtins when custom dict is used

2010-08-07 Thread Michele Orrù
Changes by Michele Orrù : -- nosy: +ezio.melotti, mark.dickinson, pitrou, r.david.murray ___ Python tracker ___ ___ Python-bugs-list ma

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-08-07 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I said I saw same crash on test_threading in msg110902, but there is possibility that this is different problem. So I'll remove my patch and clear dependencies I set. -- dependencies: -Improve condition variable emulation on NT

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-08-07 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : Removed file: http://bugs.python.org/file18091/py3k_ceval_gil.patch ___ Python tracker ___ ___ Python-bugs-list

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-08-07 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- nosy: -ocean-city ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue9299] os.makedirs(): Add a keyword argument to suppress "File exists" exception

2010-08-07 Thread Ray.Allen
Ray.Allen added the comment: Since the patch cannot be applied to py3k cleanly, I update it. -- Added file: http://bugs.python.org/file18422/mkdir.diff ___ Python tracker ___ ___

[issue5871] email.header.Header too lax with embeded newlines

2010-08-07 Thread Ville Lindholm
Ville Lindholm added the comment: I tried doing a naive implementation (just checking for \n or \r in the argument to Header) but that breaks a lot of unit tests. For example the test message msg_16.txt contains a header like this: Received: from cougar.noc.ucla.edu (cougar.noc.ucla.edu [169.

[issue9417] Declaring a class creates circular references

2010-08-07 Thread Ray.Allen
Ray.Allen added the comment: krisvale: > What about my suggestion of simply providing a convention on how to disable > links manually, similar to how minidom.document does it with an "unlink" > method? If these cases are documented, then there shouldn't be any extra > bother to do so. We co

[issue6751] Default return value in ConfigParser

2010-08-07 Thread Juan Javier
Juan Javier added the comment: I would like the method to have the exact same behavior as before if the "default" argument is not present, and return the given default value when "deafult" argument is present. If you simply add a "default" keyword, it will always be present and you wouldn't

[issue5871] email.header.Header too lax with embeded newlines

2010-08-07 Thread Ray.Allen
Ray.Allen added the comment: Besides, not only the header value, but also the header name can only be printable ascii characters according to RFC2822: "A field name MUST be composed of printable US-ASCII characters (i.e., characters that have values between 33 and 126, inclusive), except co

[issue9516] sysconfig: $MACOSX_DEPLOYMENT_TARGET mismatch: now "10.3" but "10.5" during configure

2010-08-07 Thread Ronald Oussoren
Ronald Oussoren added the comment: I agree that this behavior wrong, this should only trigger an error when building packages. How did you build python? I guess something like this: $ export MACOSX_DEPLOYMENT_TARGET=10.5 $ configure --enable-framework $ make install This should result in get

[issue5612] whitespace folding in the email package could be better ; -)

2010-08-07 Thread Chris Withers
Chris Withers added the comment: What's email6 and where can I find out more about it? Chris -- ___ Python tracker ___ ___ Python-bug

[issue9047] Python 2.7rc2 includes -isysroot twice on each gcc command line

2010-08-07 Thread Ronald Oussoren
Ronald Oussoren added the comment: The patch is not sufficient to fix this issue. One problem is that the configure script also using CFLAGS and CPPFLAGS, which results in duplicate -isysroot flags when the compiler is used by configure. Fixing this properly is annoyingly hard, I'll have to w

[issue9425] Rewrite import machinery to work with unicode paths

2010-08-07 Thread STINNER Victor
STINNER Victor added the comment: The patch is too huge to be commited at once. I will split it again into smaller parts. First related commit: r83778 fixes tests for not encodable filenames. -- ___ Python tracker

[issue9425] Rewrite import machinery to work with unicode paths

2010-08-07 Thread STINNER Victor
STINNER Victor added the comment: r83779 creates run_command(), it's just a refactorization. -- ___ Python tracker ___ ___ Python-bugs

[issue6822] Error calling .storlines from ftplib

2010-08-07 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: I agree with Antoine. Maybe it would make sense to check the file object passed to storlines() and raise an exception if mode != binary. -- ___ Python tracker _

[issue8433] buildbot: test_curses failure, getmouse() returned ERR

2010-08-07 Thread Mark Dickinson
Mark Dickinson added the comment: I'm a bit surprised that the test *passes* at all, anywhere. The man page for getmouse says: """This function will return OK if a mouse event is actually visible in the given window, ERR otherwise.""" So if no mouse event occurs (which is presumably the us

[issue8433] buildbot: test_curses failure, getmouse() returned ERR

2010-08-07 Thread Mark Dickinson
Mark Dickinson added the comment: [Barry] > So clearly something about the curses module is not compatible with the newer > versions of ncurses. Yep. Here's a NEWS entry from the Ubuntu ncurses source: 20100102 + minor improvement to tic's checking of similar SGR's to allow for the

[issue9198] Should repr() print unicode characters outside the BMP?

2010-08-07 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue5110] Printing Unicode chars from the interpreter in a non-UTF8 terminal raises an error (Py3)

2010-08-07 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue5256] rlcompleter adds builtins when custom dict is used

2010-08-07 Thread Éric Araujo
Éric Araujo added the comment: The report says “This behaviour may sometimes be unwanted. It would be nice to have an option”, so I’m requalifying as a RFE and adjusting versions. The patch changes behavior (search order was builtins, self.namespace and is now reversed), is this wanted? The

[issue9529] Converge re.findall and re.finditer

2010-08-07 Thread MizardX
MizardX added the comment: I don't think (1) would break any code. finditer() would still generate match-objects. The only time you would be discard the match-object, is if you try to do a destructuring bind in, e.g. a loop. This shouldn't be unexpected for the programmer. -- _

[issue8433] buildbot: test_curses failure, getmouse() returned ERR

2010-08-07 Thread Mark Dickinson
Mark Dickinson added the comment: Here's a patch that simply reverses the getmouse and ungetmouse calls in the test, ensuring that getmouse actually has something to get. This fixes the test_curses failure for me on Ubuntu 10.10, and doesn't seem to introduce new failures where test_curses w

[issue8433] buildbot: test_curses failure, getmouse() returned ERR

2010-08-07 Thread Mark Dickinson
Mark Dickinson added the comment: Patch applied to py3k in r83780. I'll watch the py3k buildbots to see how they do. -- versions: +Python 2.7, Python 3.1 ___ Python tracker ___

[issue9417] Declaring a class creates circular references

2010-08-07 Thread Daniel Urban
Changes by Daniel Urban : -- nosy: +durban ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue9312] Fix usage of :option: markup in stdlib ReST docs

2010-08-07 Thread Eli Bendersky
Eli Bendersky added the comment: Following the discussions on pydev and some private correspondence with Georg Brandl, I'm attaching an updated patch. Things changed: 1. Changes of :option: to ``...`` similar to previous patch 2. :program:`prog` :option:`opt` was changed to ``prog opt`` 3.

[issue9312] Fix usage of :option: markup in stdlib ReST docs

2010-08-07 Thread Éric Araujo
Éric Araujo added the comment: Nice changes! Especially the program/cmdoption directives combo. Your patch introduces trailing whitespace (good editor settings can show those, as well as hg diff with the color extension) and has one unnecessary change: -line, ``options.filename`` will be ``"o

[issue5871] email.header.Header too lax with embeded newlines

2010-08-07 Thread R. David Murray
R. David Murray added the comment: Yeah, after I posted that suggestion it occurred to me that the newline stuff *is* embedded in the way email5 works, but I hadn't gotten back here to post a followup yet. I don't like it, but it is what it is. (I believe the theory is to preserve the forma

[issue9312] Fix usage of :option: markup in stdlib ReST docs

2010-08-07 Thread Eli Bendersky
Eli Bendersky added the comment: Eric, thanks for the catch and the fix. If there's anything else, just let me know. -- ___ Python tracker ___ __

[issue5871] email.header.Header too lax with embeded newlines

2010-08-07 Thread R. David Murray
R. David Murray added the comment: Re __getitem__: yes, the email package allows you to work with messages that are *not* RFC conformant (which you do encounter when processing actual email :), and this is an important feature. The plan in email6 is to detect and report additional RFC violat

[issue9312] Fix usage of :option: markup in stdlib ReST docs

2010-08-07 Thread Éric Araujo
Éric Araujo added the comment: Nothing else to say, +1 on commit. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue5612] whitespace folding in the email package could be better ; -)

2010-08-07 Thread R. David Murray
R. David Murray added the comment: It's a plan to redesign the email API so that it can easily manipulate both bytes and strings as needed, with a backward compatibility layer that allows the current API to be used if all you need to do is process strings. If we're lucky there may be a PyPI

[issue5256] rlcompleter adds builtins when custom dict is used

2010-08-07 Thread Michele Orrù
Michele Orrù added the comment: Yes, it is. I think the user would expect that kind of behaviour. The attached patch updates the Doc. -- Added file: http://bugs.python.org/file18426/rlcompleter_docs.patch ___ Python tracker

[issue5256] rlcompleter adds builtins when custom dict is used

2010-08-07 Thread Michele Orrù
Changes by Michele Orrù : Removed file: http://bugs.python.org/file18426/rlcompleter_docs.patch ___ Python tracker ___ ___ Python-bugs-list mai

[issue9417] Declaring a class creates circular references

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am opposed to a new 'unlink' builtin and '__unlink__' special method. There are more than enough builtin functions now, and this need is specific to those who both make lots temporary classes that they need garbage collected AND need to run with gc turned o

[issue5256] rlcompleter adds builtins when custom dict is used

2010-08-07 Thread Michele Orrù
Changes by Michele Orrù : Added file: http://bugs.python.org/file18427/rlcompleter_docs.patch ___ Python tracker ___ ___ Python-bugs-list maili

[issue5027] xml namespace not understood by xml.sax.saxutils.XMLGenerator

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: There are no specific maintainers for xml.sax.utils. As per RDM's suggestion, Fred or Martin, do either of you have any comments on this or who it might be referred to? -- nosy: +fdrake, loewis ___ Python tracker

[issue2628] ftplib Persistent data connection

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : Removed file: http://bugs.python.org/file10025/ftplib.py.blockmode.patch ___ Python tracker ___ ___ Python-bugs-lis

[issue2628] ftplib Persistent data connection

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2628] ftplib Persistent data connection

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> unit test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue1306248] Add 64-bit Solaris 9 build instructions to README

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: In the absence of a patch submission, I am closing this. Perhaps it is obsolete anyway. -- resolution: -> out of date status: open -> closed versions: +Python 3.2 -Python 2.6, Python 3.1 ___ Python tracker

[issue6804] IDLE: Detect Python files even if name doesn't end in .py

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am a little puzzled by this issue. 1. Why would a Windows user use any extention other than .py or .pyw, which IDLE opens fine. How many people do something senseless like hand-registering, say 'xiq', as a python file? 2. .pyc files are binary files and NOT

[issue7450] document that os.chmod accepts an octal digit mode

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: (3.1.2) 15.1.5. Files and Directories os.chmode entry: I recommend changing the first sentence "Change the mode of path to the numeric mode." to "Change the mode of path to the integer mode (such as 0x755)." For 2.7, delete the 'x'. This should make it clear t

[issue8228] pprint, single/multiple items per line parameter

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> unit test needed versions: +Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-lis

[issue7798] document pydoc methods

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: Pydoc has a number of useful things that might be moved elsewhere and imported. An example is the no-yes filter _split_list. Documenting them in place would create something of a jumble. So I think this issue should be either closed (and possibly another open

[issue6926] socket module missing IPPROTO_IPV6, IPPROTO_IPV4

2010-08-07 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue8713] multiprocessing needs option to eschew fork() under Linux

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.6, Python 2.7, Python 3.1, Python 3.3 ___ Python tracker ___ ___ Python-bugs-list m

[issue1038909] pydoc method documentation lookup enhancement

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue1371826] distutils is silent about multiple -I/-L/-R

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.6, Python 2.7, Python 3.0, Python 3.1 ___ Python tracker ___ ___ Pyth

[issue4086] support %z format in time.strftime and _strptime?

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9127] subprocess.Popen.communicate() and SIGCHLD handlers

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: Can you suggest a specific doc patch with new text and location? -- nosy: +terry.reedy versions: +Python 3.2 -Python 2.6 ___ Python tracker ___

[issue6824] help for a module should list supported platforms

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.6, Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue7352] python2.6-config --ldflags out of /usr and missing -L

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am not sure that such a change to python-config.in could go into a bugfix release as it might need more testing on a variety of systems than bugfix releases tend to get. Does (in your opinion) 3.1/2 need the same change? Martin, who should look at Linux bui

[issue5784] raw deflate format and zlib module

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue6678] inspect.currentframe documentation omits optional depth parameter

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> needs patch versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue5962] Ambiguity about the semantics of sys.exit() and os._exit() in multithreaded program

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue1554133] PyOS_InputHook() and related API funcs. not documented

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue1626300] 'Installing Python Modules' does not work for Windows

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue1643712] Emphasize buffering issues when sys.stdin is used

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> needs patch versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1865] Bytes alias for 2.6

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue4965] Can doc index of html version be separately scrollable?

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue7867] Proposed FAQ entry on pass-by-? semantics and the meaning of 'variable' in python

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue8269] Missing return values for PyUnicode C/API functions

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue9529] Converge re.findall and re.finditer

2010-08-07 Thread Matthew Barnett
Matthew Barnett added the comment: Ah, I see what you mean. I still think you're wrong, though! :-) The 'for' loop is doing is basically this: it = re.finditer(r'(\w+):(\w+)', text) try: while True: match_object = next(it) # body of loop except StopI

[issue8387] use universal newline mode in csv module examples

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: In the current 2.7 docs, files are opened with 'rb' or 'wb'. In msg106210 of #1072404, RDM says "The doc has been fixed;". I am not sure if this refers a change in the open or just removal of reference to non-working delimiter option. David? Any opinion on this

[issue7352] python2.6-config --ldflags out of /usr and missing -L

2010-08-07 Thread Joel Brobecker
Joel Brobecker added the comment: I agree that more testing in head would be useful before possibly considering inclusion in one of the bug-fix releases. Given that this only affects binaries installed at a different location than the configure prefix, this seems hardly critical (and easy to

[issue8722] Documentation for __getattr__

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: The problem with changing 2.7 docs is that object access is different for old- and new-style properties. Does your example work if you remove 'object'? (IE, can old style classes have properties?) For new-style classes, the example behavior is clear if you 1.

[issue8722] Documentation for __getattr__

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: /raise/raises/ I am pretty sure that when __getattribute__ is bypassed, so is __getattr__. -- ___ Python tracker ___ __

[issue9538] Replace confusing pseudoname 'object' in special methods section.

2010-08-07 Thread Terry J. Reedy
New submission from Terry J. Reedy : In 3.3. Special method names, 'object' is used as a pseudo class name to prefix all the special method entries. This conflicts with the usual two Python meanings. 1. 'object' is the name of a specific class. So the entry for object.__getattribute__(self, n

[issue9538] Replace confusing pseudoname 'object' in special methods section.

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: I also think that in "In order to avoid infinite recursion in this method, its implementation should always call the base class method with the same name to access any attributes it needs, for example, object.__getattribute__(self, name).", 'the base class' s

[issue9538] Replace confusing pseudoname 'object' in special methods section.

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: I filed this because I just reread the __getattr(ibute)__ entries to respond to #8722 and found myself again stumbling over the 'object' confusion. -- ___ Python tracker _

[issue8145] Documentation about sqlite3 isolation_level

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> patch review versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue724459] Add documentation about line endings in email messages.

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: Sorry this slipped thru the cracks so long. RDM is revamping email, most likely for 3.3, and will consider open issues in doing so. -- nosy: +terry.reedy versions: -Python 2.6, Python 2.7, Python 3.1 ___ Python tra

[issue1098749] Single-line option to pygettext.py

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue2920] Patch to print symbolic value or errno in EnvironmentError.__str__()

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.6, Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue8340] bytearray undocumented on trunk

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: needs patch -> patch review versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list ma

[issue9105] pickle security note should be more prominent

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.1 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9105] pickle security note should be more prominent

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: FWIW, I agree too. The current location is a bit odd. -- nosy: +terry.reedy ___ Python tracker ___ _

[issue8834] Define order of Misc/ACKS entries

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: Only a few days left for 2.6 ;-) -- nosy: +terry.reedy ___ Python tracker ___ ___ Python-bugs-list m

[issue7790] struct_time documentation entry should point to the table defining the tuple

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +belopolsky stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue1945] Document back ported C functions

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- keywords: +patch stage: -> patch review versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-l

[issue1062] nice to have a way to tell if a socket is bound

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> unit test needed versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___ ___ Pyt

[issue1605] Semi autogenerated _types module

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1203650] Allow larger programs to be frozen under Win32

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: I added this as a dependency to #7962. I believe there was some thought on the pydev list of removing freeze (because not-working or obsolete). -- nosy: +terry.reedy versions: +Python 3.2 -Python 2.6 ___ Python trac

[issue7962] Demo and Tools need to be tested and pruned

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- dependencies: +Allow larger programs to be frozen under Win32 ___ Python tracker ___ ___ Python-bugs-lis

[issue2786] Names in traceback should have class names, if they're methods

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue433030] SRE: Atomic Grouping (?>...) is not supported

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: Does the re2 work (#2636) make this outdated? -- nosy: +terry.reedy stage: -> patch review versions: +Python 3.2 -Python 2.6 ___ Python tracker _

[issue1173134] improvement of the script adaptation for the win32 platform

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue416670] MatchObjects not deepcopy()able

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: The OP has no interest in this, there is no patch, and re2 is coming. Should we close this? -- nosy: +terry.reedy stage: -> unit test needed versions: +Python 3.2 -Python 2.6, Python 2.7 ___ Python tracker

[issue433024] SRE: (?flag) isn't properly scoped

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> out of date superseder: -> Major reworking of Python 2.5.2 re module versions: +Python 3.2 -Python 2.6 ___ Python tracker ___ ___

[issue5501] Update multiprocessing docs re: freeze_support

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: I think that question is covered by "If the module is being run normally by the Python interpreter then freeze_support() has no effect." Jesse, do you think anything more is needed, like '(on any platform)' after 'interpreter', or should be close this? -

[issue5501] Update multiprocessing docs re: freeze_support

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 2.7, Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1546442] subprocess.Popen can't read file object as stdin after seek

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: In the absence of a doc patch, I am following Daniel's suggestion to close this. -- nosy: +terry.reedy resolution: -> later status: open -> closed versions: +Python 3.2 -Python 2.6 ___ Python tracker

[issue1095821] The doc for DictProxy is missing

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: In 3.x, DictProxy and other internal types are gone from types. -- nosy: +terry.reedy resolution: -> rejected status: open -> closed ___ Python tracker

[issue2057] difflib: add patch capability

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: I would like to see this more easily available, perhaps in /Scripts. Are unified diffs the type usually posted to the tracker? I am not sure what you meant by ' diff/patch lib is not.' -- nosy: +terry.reedy stage: -> unit test needed versions: +Python

[issue1353344] python.desktop

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: I see lots of interest and several translations. Was there an intention to add this to the distribution (or has it been)? Or is it out-of-date? -- nosy: +terry.reedy stage: -> patch review versions: +Python 3.2 -Python 2.6, Python 3.0 ___

[issue7798] document pydoc methods

2010-08-07 Thread Ron Adam
Ron Adam added the comment: I think a good place for the pager is in the cmd module. I have a separated version of it I could upload if there is consensus on this. I've extracted the text server, but it's in a minimum 'works for pydoc' stage. (See issue 2001) Both of these need some more ey

[issue1294232] Error in metaclass search order

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: Is the 3.1/2 doc still lacking in this area? -- nosy: +terry.reedy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker _

[issue1722] Undocumented urllib functions

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: When internal functions lack '_', perhaps the doc should say "xys,uie, and ooe are intentionally undocumented internal functions." Otherwise, how is one supposed to know? -- nosy: +terry.reedy versions: -Python 2.6 __

  1   2   >