[issue9315] The trace module lacks unit tests

2010-08-07 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: [attaching a new patch version] 1. Are you refering to Lib/test/tracedmodules/__init__.py? I did add it - it appears in the patchfile. What do you mean? 2. Fixed 3. Fixed 4. I'm not sure. Tracing of the current file is also a common use

[issue9323] trace.py bug with the main file being traced

2010-08-07 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: It appears to affect 2.7 as well (probably because of a back-port from py3k to 27-maint in revision 83421). -- versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org

[issue9323] trace.py bug with the main file being traced

2010-08-07 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: Looking at Lib/test/regrtest.py: if __name__ == '__main__': # Simplification for findtestdir(). assert __file__ == os.path.abspath(sys.argv[0]) I'm not sure regrtest.py is prepared to be run from trace at all. Note that this

[issue5256] rlcompleter adds builtins when custom dict is used

2010-08-07 Thread Michele Orrù
Michele Orrù maker...@gmail.com 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 rep...@bugs.python.org

[issue5256] rlcompleter adds builtins when custom dict is used

2010-08-07 Thread Michele Orrù
Changes by Michele Orrù maker...@gmail.com: -- nosy: +ezio.melotti, mark.dickinson, pitrou, r.david.murray ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5256 ___

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-08-07 Thread Hirokazu Yamamoto
Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp 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

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-08-07 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp: Removed file: http://bugs.python.org/file18091/py3k_ceval_gil.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9116 ___

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-08-07 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp: -- nosy: -ocean-city ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9116 ___ ___

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

2010-08-07 Thread Ray.Allen
Ray.Allen ysj@gmail.com 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 rep...@bugs.python.org http://bugs.python.org/issue9299

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

2010-08-07 Thread Ville Lindholm
Ville Lindholm ville.lindh...@gmail.com 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

[issue9417] Declaring a class creates circular references

2010-08-07 Thread Ray.Allen
Ray.Allen ysj@gmail.com 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

[issue6751] Default return value in ConfigParser

2010-08-07 Thread Juan Javier
Juan Javier jjdomingu...@gmail.com 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

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

2010-08-07 Thread Ray.Allen
Ray.Allen ysj@gmail.com 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,

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

2010-08-07 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com 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

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

2010-08-07 Thread Chris Withers
Chris Withers ch...@simplistix.co.uk added the comment: What's email6 and where can I find out more about it? Chris -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5612 ___

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

2010-08-07 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com 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

[issue9425] Rewrite import machinery to work with unicode paths

2010-08-07 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com 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 victor.stin...@haypocalc.com added the comment: r83779 creates run_command(), it's just a refactorization. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9425 ___

[issue6822] Error calling .storlines from ftplib

2010-08-07 Thread Giampaolo Rodola'
Giampaolo Rodola' g.rod...@gmail.com 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 rep...@bugs.python.org

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

2010-08-07 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com 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

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

2010-08-07 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com 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

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

2010-08-07 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +merwok ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9198 ___ ___ Python-bugs-list mailing

[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 mer...@netwok.org: -- nosy: +merwok ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5110 ___ ___ Python-bugs-list mailing

[issue5256] rlcompleter adds builtins when custom dict is used

2010-08-07 Thread Éric Araujo
Éric Araujo mer...@netwok.org 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

[issue9529] Converge re.findall and re.finditer

2010-08-07 Thread MizardX
MizardX miza...@gmail.com 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 dicki...@gmail.com 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

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

2010-08-07 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com 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 rep...@bugs.python.org http://bugs.python.org/issue8433

[issue9417] Declaring a class creates circular references

2010-08-07 Thread Daniel Urban
Changes by Daniel Urban urban.dani...@gmail.com: -- nosy: +durban ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9417 ___ ___ Python-bugs-list

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

2010-08-07 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com 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

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

2010-08-07 Thread Éric Araujo
Éric Araujo mer...@netwok.org 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,

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

2010-08-07 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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

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

2010-08-07 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: Eric, thanks for the catch and the fix. If there's anything else, just let me know. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9312

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

2010-08-07 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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

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

2010-08-07 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Nothing else to say, +1 on commit. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9312 ___ ___

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

2010-08-07 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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

[issue5256] rlcompleter adds builtins when custom dict is used

2010-08-07 Thread Michele Orrù
Michele Orrù maker...@gmail.com 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ù maker...@gmail.com: Removed file: http://bugs.python.org/file18426/rlcompleter_docs.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5256 ___

[issue9417] Declaring a class creates circular references

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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

[issue5256] rlcompleter adds builtins when custom dict is used

2010-08-07 Thread Michele Orrù
Changes by Michele Orrù maker...@gmail.com: Added file: http://bugs.python.org/file18427/rlcompleter_docs.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5256 ___

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

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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 ___

[issue2628] ftplib Persistent data connection

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: Removed file: http://bugs.python.org/file10025/ftplib.py.blockmode.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2628 ___

[issue2628] ftplib Persistent data connection

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2628 ___ ___

[issue2628] ftplib Persistent data connection

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- stage: - unit test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2628 ___ ___

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

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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

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

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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

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

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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

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

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- stage: - unit test needed versions: +Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8228 ___

[issue7798] document pydoc methods

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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

[issue6926] socket module missing IPPROTO_IPV6, IPPROTO_IPV4

2010-08-07 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' g.rod...@gmail.com: -- nosy: +giampaolo.rodola ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6926 ___ ___

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

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1944 ___

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

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: -Python 2.6, Python 2.7, Python 3.1, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8713 ___

[issue1038909] pydoc method documentation lookup enhancement

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1038909 ___ ___

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

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 3.2 -Python 2.6, Python 2.7, Python 3.0, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1371826 ___

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

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4086 ___ ___

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

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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 rep...@bugs.python.org http://bugs.python.org/issue9127

[issue6824] help for a module should list supported platforms

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: -Python 2.6, Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6824 ___

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

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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

[issue5784] raw deflate format and zlib module

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5784 ___ ___ Python-bugs-list

[issue6678] inspect.currentframe documentation omits optional depth parameter

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- stage: - needs patch versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6678 ___

[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 tjre...@udel.edu: -- versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5962 ___ ___ Python-bugs-list

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

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1554133 ___ ___

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

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1626300 ___ ___

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

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- stage: - needs patch versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1643712 ___

[issue1865] Bytes alias for 2.6

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1865 ___ ___ Python-bugs-list

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

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4965 ___ ___ Python-bugs-list

[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 tjre...@udel.edu: -- versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7867 ___ ___ Python-bugs-list

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

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8269 ___ ___ Python-bugs-list

[issue9529] Converge re.findall and re.finditer

2010-08-07 Thread Matthew Barnett
Matthew Barnett pyt...@mrabarnett.plus.com 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) #

[issue8387] use universal newline mode in csv module examples

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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

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

2010-08-07 Thread Joel Brobecker
Joel Brobecker brobec...@gnat.com 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

[issue8722] Documentation for __getattr__

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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

[issue8722] Documentation for __getattr__

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: /raise/raises/ I am pretty sure that when __getattribute__ is bypassed, so is __getattr__. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8722

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

2010-08-07 Thread Terry J. Reedy
New submission from Terry J. Reedy tjre...@udel.edu: 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

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

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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).,

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

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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 rep...@bugs.python.org

[issue8145] Documentation about sqlite3 isolation_level

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- stage: - patch review versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8145 ___

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

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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

[issue1098749] Single-line option to pygettext.py

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1098749 ___ ___

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

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: -Python 2.6, Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2920 ___

[issue8340] bytearray undocumented on trunk

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- stage: needs patch - patch review versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8340 ___

[issue9105] pickle security note should be more prominent

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 3.1 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9105 ___ ___

[issue9105] pickle security note should be more prominent

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: FWIW, I agree too. The current location is a bit odd. -- nosy: +terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9105 ___

[issue8834] Define order of Misc/ACKS entries

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: Only a few days left for 2.6 ;-) -- nosy: +terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8834 ___

[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 tjre...@udel.edu: -- nosy: +belopolsky stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7790 ___ ___

[issue1945] Document back ported C functions

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- keywords: +patch stage: - patch review versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1945 ___

[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 tjre...@udel.edu: -- stage: - unit test needed versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1062 ___

[issue1605] Semi autogenerated _types module

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1605 ___

[issue1203650] Allow larger programs to be frozen under Win32

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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

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

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- dependencies: +Allow larger programs to be frozen under Win32 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7962 ___

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

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2786 ___

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

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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 rep...@bugs.python.org

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

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1173134 ___ ___

[issue416670] MatchObjects not deepcopy()able

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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

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

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- resolution: - out of date superseder: - Major reworking of Python 2.5.2 re module versions: +Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue433024

[issue5501] Update multiprocessing docs re: freeze_support

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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

[issue5501] Update multiprocessing docs re: freeze_support

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 2.7, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5501 ___

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

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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 tjre...@udel.edu 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 rep...@bugs.python.org

[issue2057] difflib: add patch capability

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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

[issue1353344] python.desktop

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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

  1   2   >