Matteo Bertini added the comment:
Bumped in this bug yesterday, sadly a script working (by chance) in Python2
doesn't work in Python3 because of this bug.
--
nosy: +naufraghi
___
Python tracker
<http://bugs.python.org/is
Matteo Bertini added the comment:
I'm back on this issue with a minimal patch, and a longer motivation.
Distutils does not support Visual C++ for Python compiler, but it could, with a
one-line patch.
The proposed workaround is to use `setuptools`. But, we are not alone in this
World,
Changes by Matteo Bertini :
--
nosy: +naufraghi
___
Python tracker
<http://bugs.python.org/issue1596>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Matteo Bertini :
--
nosy: +naufraghi
type: -> behavior
___
Python tracker
<http://bugs.python.org/issue1488934>
___
___
Python-bugs-list mai
Matteo Bertini added the comment:
sorry, title restored!
--
title: stdout closed -> core dump when stderr is moved
___
Python tracker
<http://bugs.python.org/iss
Changes by Matteo Bertini :
--
title: core dump when stderr is moved -> stdout closed
___
Python tracker
<http://bugs.python.org/issue7111>
___
___
Python-
Changes by Matteo Bertini :
--
nosy: +naufraghi
___
Python tracker
<http://bugs.python.org/issue7111>
___
___
Python-bugs-list mailing list
Unsubscribe:
Matteo Bertini added the comment:
Ups, I duplicated myself... issue3475
--
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue5779>
___
_
New submission from Matteo Bertini :
(the patch is old, I forwarded it to Fredrik but I forgot to open the bug)
Playing with PyInstaller I have found that the final part of _elementtree.c:
Index: Modules/_elementtree.c
Matteo Bertini added the comment:
no EINTR patch upgraded to 25-maint r65475 that protects:
*) all direct calls
*) all returned fd
I hope :P
Added file:
http://bugs.python.org/file12438/no-EINTR-subprocess.py-25-maint-r65475.patch
___
Python tracker
Changes by Matteo Bertini :
Removed file:
http://bugs.python.org/file11511/subprocess-eintr-safety-25maint-r65475.patch
___
Python tracker
<http://bugs.python.org/issue1068
Changes by Matteo Bertini :
Removed file:
http://bugs.python.org/file11818/subprocess-retry-on-EINTR-std-in-out-err.diff
___
Python tracker
<http://bugs.python.org/issue1068
Matteo Bertini added the comment:
Please have a look at the proposed patch:
http://bugs.python.org/file11511/subprocess-eintr-safety-25maint-
r65475.patch
the list is more or less the patch itself.
___
Python tracker
<http://bugs.python.org/issue1068
Matteo Bertini added the comment:
Python 2.5.3 is near but the I think the fix in
http://svn.python.org/view?rev=65475&view=rev
is not enough, there are a lot of other places where EINTR can cause and
error.
--
versions: +Python 2.5.3
___
Py
Matteo Bertini <[EMAIL PROTECTED]> added the comment:
I can add that providing the option:
-mmacosx-version-min=10.4
or setting the anv var
MACOSX_DEPLOYMENT_TARGET=10.4
is it possible to build an extension in MacPython.org too
(without that option there was a problem with some 10.
Matteo Bertini <[EMAIL PROTECTED]> added the comment:
The solution I found is:
LINKFORSHARED = -u _PyMac_Error -framework Python
as in the Apple included Python Makefile
and
LDFLAGS += -F$(PYTHONFRAMEWORKPREFIX)
that makes linker use the right framework (not sure, but works with
Mac
Matteo Bertini <[EMAIL PROTECTED]> added the comment:
I confirm this issue, some handy workaround available?
--
nosy: +naufraghi
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Matteo Bertini <[EMAIL PROTECTED]> added the comment:
Ups, forgot a _no_intr around select.select
Index: subprocess.py
===
--- subprocess.py (revisione 19645)
+++ subprocess.py (copia locale)
@@ -1178,7 +
Matteo Bertini <[EMAIL PROTECTED]> added the comment:
Factorized try-except code, merged r65475 from 25-maint.
Protetect std[in|out|err] read and write too.
Added file:
http://bugs.python.org/file11818/subprocess-retry-on-EINTR-std-in-out-er
Matteo Bertini <[EMAIL PROTECTED]> added the comment:
I have the same error as in msg74221
RuntimeError: tk.h version (8.4) doesn't match libtk.a version (8.5)
Some workaround not involving a full rebuild?
--
nosy: +naufraghi
___
Pyt
Matteo Bertini <[EMAIL PROTECTED]> added the comment:
Upgrade subprocess.py patch to 25-maint r65475
(apply cleanly with http://bugs.python.org/issue2113 fixed)
--
keywords: +patch
Added file:
http://bugs.python.org/file11511/subprocess-eintr-safety-25maint-r65475
Matteo Bertini <[EMAIL PROTECTED]> added the comment:
I'd like to suggest to rise the priority of this bug.
Till this bus is around, no way using any module using subprocess.Popen
form a PyQt app (and I suppose PyGtk and wxPython too).
--
nosy:
New submission from Matteo Bertini <[EMAIL PROTECTED]>:
Playing with PyInstaller I have found that the final part of
_elementtree.c:
Index: Modules/_elementtree.c
===
--- Modules/_elementtree.c (revisione 59540)
+++ M
23 matches
Mail list logo