[issue5756] idle pydoc et al removed from 3.1 without versioned replacements

2009-04-14 Thread David Ripton
David Ripton d+pyt...@ripton.net added the comment: issue1590 was only supposed to fix make altinstall, which is a secondary install target intended specifically to not break the primary Python on a system. I agree with Ned that if it changed the behavior of make install then the change

[issue1590] make altinstall installs pydoc, idle, smtpd.py

2009-04-07 Thread David Ripton
David Ripton d+pyt...@ripton.net added the comment: I see this has been marked as test needed, but this patch is a change to Makefile.pre.in, and it's not clear to me how to unit test it using the existing Python test framework. FWIW, I've manually tested it (on Linux) by doing ./configure

[issue5461] python3 symlink

2009-03-09 Thread David Ripton
New submission from David Ripton d+pyt...@ripton.net: When Python 2.x is manually installed on Linux, a python2 symlink is created, like this: lrwxrwxrwx 1 root root 9 Jan 24 00:03 /usr/bin/python2 - python2.6 (make install updates the symlink; make altinstall does not). When Python 3.x

[issue4012] Minor errors in multiprocessing docs

2008-10-09 Thread David Ripton
David Ripton [EMAIL PROTECTED] added the comment: Also, two of the example code blurbs in that page still refer to the module as processing instead of multiprocessing. (Search for import processing to find them.) -- nosy: +dripton ___ Python tracker

[issue2279] distutils sdist add_defaults does not add data_files

2008-03-12 Thread David Ripton
New submission from David Ripton [EMAIL PROTECTED]: distutils.sdist.add_defaults adds the Python modules and scripts and C extensions found in setup.py to the MANIFEST. It does *not* add data_files mentioned in setup.py to the MANIFEST. This is non-orthogonal and confusing, because it means

[issue1183] race in SocketServer.ForkingMixIn.collect_children

2008-02-28 Thread David Ripton
David Ripton added the comment: The if pid not in self.active_children: continue check that was added in r61106 appears to fix the bug, so I'm happy. Thanks. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1183

[issue1183] race in SocketServer.ForkingMixIn.collect_children

2008-02-04 Thread David Ripton
David Ripton added the comment: Just noticed that this is a partial duplicate of issue 1540386. -- versions: +Python 2.5 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1183

[issue1590] make altinstall installs pydoc, idle, smtpd.py

2007-12-12 Thread David Ripton
David Ripton added the comment: Here's a patch, against the 3.0a2 tarball. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1590 __ ___ Python-bugs-list mailing list Unsubscribe

[issue1590] make altinstall installs pydoc, idle, smtpd.py

2007-12-12 Thread David Ripton
David Ripton added the comment: Same patch appears to work fine against the 2.5.1 tarball. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1590 __ ___ Python-bugs-list mailing

[issue1590] make altinstall installs pydoc, idle, smtpd.py

2007-12-12 Thread David Ripton
Changes by David Ripton: Added file: http://bugs.python.org/file8931/altinstall.patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1590 __ ___ Python-bugs-list mailing list

[issue1590] make altinstall installs pydoc, idle, smtpd.py

2007-12-11 Thread David Ripton
New submission from David Ripton: Python 3.0a2, Gentoo Linux, x86 make altinstall installs idle, pydoc, and smtpd.py This can partially break the previous Python install, which is counter to the idea of altinstall being safe to use in parallel with an existing install of a different version

[issue1183] race in SocketServer.ForkingMixIn.collect_children

2007-10-29 Thread David Ripton
David Ripton added the comment: No signal handler. Yes, we run subprocesses. I don't believe either is necessary to trigger the race condition, though. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1183

[issue1183] race in SocketServer.ForkingMixIn.collect_children

2007-09-20 Thread David Ripton
New submission from David Ripton: CentOS Linux 5, Python 2.4.3 (but code appears unchanged in 2.5 and trunk, so I don't believe this bug has already been fixed) We have an xmlrpc server that subclasses DocXMLRPCServer.DocXMLRPCServer and SocketServer.ForkingMixIn. Under load, it sometimes

[issue1117] Spurious warning about missing _sha256 and _sha512 when not needed

2007-09-06 Thread David Ripton
New submission from David Ripton: Python 3.0a1, Gentoo Linux x86, with OpenSSL 0.9.8e installed. $ ./configure; make Failed to find the necessary bits to build these modules: _sha256 _sha512 To find the necessary bits, look in setup.py in detect_modules() for the module's name

[issue1118] hashlib module fails with TypeError

2007-09-06 Thread David Ripton
New submission from David Ripton: The hashlib module seems not to work at all: $ python3.0 Python 3.0a1 (py3k, Sep 5 2007, 08:17:11) [GCC 4.1.2 (Gentoo 4.1.2)] on linux2 Type help, copyright, credits or license for more information. import hashlib m = hashlib.md5() m.update(Nobody inspects

[issue1120] make altinstall installs pydoc, idle, smtpd.py with broken shebang lines

2007-09-06 Thread David Ripton
New submission from David Ripton: Gentoo Linux, x86, Python 3.0a I did a vanilla ./configure; make; make test; make altinstall build. The following files were created in /usr/local/bin: -rwxr-xr-x 1 root root 18036 Sep 6 17:49 smtpd.py -rwxr-xr-x 1 root root 81 Sep 6 17:49 pydoc -rwxr