[issue5341] A selection of spelling errors and typos throughout source

2009-02-21 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: I reviewed the patch and found nothing wrong. (BTW, if you noticed the almost-total lack of its-it's errors, it's because I fixed all of them some time ago :) built-in is fine. About AE/BE: I think we had a consensus somewhere that we have no

[issue5313] multiprocessing.process using os.close(sys.stdin.fileno) instead of sys.stdin.close()

2009-02-21 Thread Jesse Noller
Jesse Noller jnol...@gmail.com added the comment: Joshua Judson Rosen to python-list Jesse Noller jnol...@gmail.com writes: On Tue, Feb 17, 2009 at 10:34 PM, Graham Dumpleton graham.dumple...@gmail.com wrote: Why is the multiprocessing module, ie.,

[issue4565] Rewrite the IO stack in C

2009-02-21 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Ok. I've split the Python io implementation into the _pyio module and rewritten the tests. All the C ones are passing, but some Python implementation ones are failing. ___ Python tracker

[issue5336] collections.namedtuple generates code causing PyChecker warnings

2009-02-21 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: Will look at this one. Am initially disinclined to change _asdict() because I like its compact presentation. -- priority: - low ___ Python tracker rep...@bugs.python.org

[issue1282] re module needs to support bytes / memoryview well

2009-02-21 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: re has supported bytes for a while now. -- nosy: +benjamin.peterson resolution: accepted - out of date status: open - closed ___ Python tracker rep...@bugs.python.org

[issue5308] cannot marshal objects with more than 2**31 elements

2009-02-21 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: Why not. Besides it ought to be fun to write the test case for this one :-) ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5308

[issue5341] A selection of spelling errors and typos throughout source

2009-02-21 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: Please do not change builtin to built-in. In a python context, it reads fine as one word. -- nosy: +rhettinger ___ Python tracker rep...@bugs.python.org

[issue2396] Backport memoryview object to Python 2.7

2009-02-21 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Some comments: - PyBytes_* API is fine. - memory_str should die. - Py_TPFLAGS_HAVE_NEWBUFFER needs to be documented. Otherwise it looks good. ___ Python tracker rep...@bugs.python.org

[issue5342] distutils removing old files, deleting unneeded old files from installed location.

2009-02-21 Thread Rene Dudfield
New submission from Rene Dudfield ill...@users.sourceforge.net: A common problem is removing old files from the installed location. eg. version 1 installs. site-packages/packagename/bla.so version 2 installs. site-packages/packagename/_bla.so site-packages/packagename/bla.py However, in

[issue4524] Build fails at running build_scripts

2009-02-21 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: fixed in r69598. Thanks for the patch Amaury. -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4524 ___

[issue5342] distutils removing old files, deleting unneeded old files from installed location.

2009-02-21 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: A uninstall command, based on the record of installed files, will be proposed for #4673. It should adress your problem, since we will be able to add a new option in the install command. I am leaving this issue open so we can keep track of

[issue1578269] Add os.link() and os.symlink() support for Windows

2009-02-21 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- versions: +Python 2.7, Python 3.1 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1578269 ___

[issue5340] Change in cgi behavior breaks existing software

2009-02-21 Thread Paul Boddie
Paul Boddie p...@boddie.org.uk added the comment: The issue of distinguishing between query-originating parameters and form-originating parameters has been around for a very long time, and in my own work, especially where the cgi module has been used, I've been careful to distinguish between the

[issue4565] Rewrite the IO stack in C

2009-02-21 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Ok. I've fixed all the tests except PyBufferedRandomTest.testFlushAndPeek and the garbage collections ones. ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4565

[issue5343] remove or make work pdb retval and rv

2009-02-21 Thread rocky bernstein
New submission from rocky bernstein ro...@gnu.org: Remove pdb's undocumentedretval/rv debugger commands. It is conceivable this may have once worked on a version of Python long ago, but not in recent releases. If it's of interest to make this work, one approach would be to use the arg

[issue1533164] Installed but not listed *.pyo break bdist_rpm

2009-02-21 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: Mads, I am all set now, under a fresh Fedora 10. But it seems that the generated command for rpm does not work. it calls: $ rpm -ba --define _topdir xxx --clean build/xxx/foo.spec -ba unkown option. (My Fedora runs rpm 4.6.0rc3) Anything

[issue5344] typo in what's new in 2.6

2009-02-21 Thread George Yoshida
New submission from George Yoshida qui...@users.sourceforge.net: In What's new in 2.6 PEP 343 section, the following sentence lacks a closing parenthesis: The expression is evaluated, and it should result in an object that supports the context management protocol (that is, has __enter__() and

[issue5328] Crash when doing some list iteration

2009-02-21 Thread qwjqwj
qwjqwj q...@papayamobile.com added the comment: I used the script from issue 4732 and can reproduce segfault on my RHEL 5. After that I updated the system with yum update and get a new version of libc. Currently the script cannot cause segfault after updating. Thank you for your help.

[issue5345] cStringIO class name typo

2009-02-21 Thread qwjqwj
New submission from qwjqwj q...@papayamobile.com: It has a typo error in cStringIO.StringIO's class name StringO: import cStringIO a=cStringIO.StringIO() a cStringIO.StringO object at 0xb7eef240 a.__class__.__name__ 'StringO' So we can't unpickle the object correctly with Python 2.5.4:

[issue5345] cStringIO class name typo

2009-02-21 Thread qwjqwj
qwjqwj q...@papayamobile.com added the comment: This bug also exists in Python 2.6.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5345 ___ ___

<    1   2