[issue4130] Intel icc 9.1 does not support __int128_t used by ctypes

2012-07-16 Thread Alex Leach
Alex Leach added the comment: It skips 55, sorry, passing 1659. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue4130] Intel icc 9.1 does not support __int128_t used by ctypes

2012-07-16 Thread Alex Leach
Alex Leach added the comment: That's the same patch as I attached before actually, so sorry for the spam.. -- ___ Python tracker ___ _

[issue1492704] distinct error type if shutil.copyfile() fails because of src and dst are the same file

2012-07-16 Thread Atsuo Ishimoto
Atsuo Ishimoto added the comment: Patch updated. - SameFileError is reverted to be derived from shutil.Error as original patch. -- Added file: http://bugs.python.org/file26406/issue1492704_new_3.patch ___ Python tracker

[issue15364] sysconfig confused by relative paths

2012-07-16 Thread Richard Oudkerk
Richard Oudkerk added the comment: In the attached patch _safe_realpath() is only called after calculating the absolute path for srcdir. -- keywords: +patch Added file: http://bugs.python.org/file26407/sysconf.patch ___ Python tracker

[issue14635] telnetlib uses select instead of poll - limited to FD_SETSIZE fds

2012-07-16 Thread Gregory P. Smith
Gregory P. Smith added the comment: Those should all be fixed as of my most recent commit. -- ___ Python tracker ___ ___ Python-bugs-

[issue15374] venv environment variable should follow the conventions

2012-07-16 Thread Vinay Sajip
Vinay Sajip added the comment: This name was picked because the virtualenv tool uses it, and keeping the name allows any existing third-party projects and scripts which use it to require minimal, if any, changes. -- ___ Python tracker

[issue15374] venv environment variable should follow the conventions

2012-07-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: > This name was picked because the virtualenv tool uses it, and keeping > the name allows any existing third-party projects and scripts which > use it to require minimal, if any, changes. Which means that these third-party projects are automatically compatible

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

2012-07-16 Thread Roger Serwy
Roger Serwy added the comment: Is the error message a traceback? If so, could you open a separate issue for it? -- ___ Python tracker ___

[issue15374] venv environment variable should follow the conventions

2012-07-16 Thread Vinay Sajip
Vinay Sajip added the comment: > Which means that these third-party projects are automatically > compatible with pyvenv? I can't speak for them, but it's one less thing for people to have to change. The intention certainly was to minimise friction in this area. I would be interested in Carl's

[issue15375] Trivial for fix in the subprocess documentation

2012-07-16 Thread Renato Cunha
New submission from Renato Cunha : The word "child" is needlessly repeated in the subprocess documentation. This trivial patch fixes this. -- assignee: docs@python components: Documentation files: subprocess.diff keywords: patch messages: 165670 nosy: docs@python, trovao priority: norma

[issue15375] Trivial for fix in the subprocess documentation

2012-07-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 227a22288688 by R David Murray in branch '2.7': #15375: remove duplicated word 'child' http://hg.python.org/cpython/rev/227a22288688 -- nosy: +python-dev ___ Python tracker

[issue15375] Trivial for fix in the subprocess documentation

2012-07-16 Thread R. David Murray
R. David Murray added the comment: Thanks. (This error existed on only in the 2.7 docs.) -- nosy: +r.david.murray resolution: -> fixed stage: -> committed/rejected status: open -> closed type: enhancement -> behavior ___ Python tracker

[issue1767933] Badly formed XML using etree and utf-16

2012-07-16 Thread Eli Bendersky
Eli Bendersky added the comment: Fixed the invariant violation in changeset 64ff90e07d71 I'll review the performance difference separately -- ___ Python tracker ___ _

[issue15374] venv environment variable should follow the conventions

2012-07-16 Thread Carl Meyer
Carl Meyer added the comment: Yes, there are a number of third-party utility packages (and many, many e.g. personal custom bash prompts) that check the value of the $VIRTUAL_ENV variable to detect whether one is currently active, and display its name. Unless there's an overriding reason, it w

[issue1767933] Badly formed XML using etree and utf-16

2012-07-16 Thread Eli Bendersky
Eli Bendersky added the comment: I posted a message to python-dev about the performance issue -- ___ Python tracker ___ ___ Python-

[issue15368] bytecode generation is not deterministic

2012-07-16 Thread Meador Inge
Meador Inge added the comment: I haven't done any benchmarking (yet), but here is a patch implementing the basic sorting approach. -- keywords: +patch Added file: http://bugs.python.org/file26409/issue15368-v0.patch ___ Python tracker

[issue14332] Better explain "junk" concept in difflib doc

2012-07-16 Thread Eli Bendersky
Eli Bendersky added the comment: I agree. Any improvement is preferred over just letting this decay in the issue tracker ;-) -- ___ Python tracker ___ _

[issue14988] _elementtree: Raise ImportError when importing of pyexpat fails

2012-07-16 Thread Eli Bendersky
Eli Bendersky added the comment: I tried blocking the import of 'pyexpat' in a test by using test.support.import_fresh_module, placing 'pyexpat' into the blocked list, but it doesn't work (i.e. pyexpat, if it exists, is still imported) -- ___ Pytho

[issue14988] _elementtree: Raise ImportError when importing of pyexpat fails

2012-07-16 Thread Eli Bendersky
Eli Bendersky added the comment: Benjamin, what "old behavior"? Did it happen to raise ImportError historically and only recent changes made it RuntimeError? I'm not sure this is the case. -- ___ Python tracker

[issue14988] _elementtree: Raise ImportError when importing of pyexpat fails

2012-07-16 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: > Did it happen to raise ImportError historically and only recent > changes made it RuntimeError? I'm not sure this is the case. ImportError was raised in Python 2. -- ___ Python tracker

[issue15151] Documentation for Signature, Parameter and signature in inspect module

2012-07-16 Thread Yury Selivanov
Yury Selivanov added the comment: Larry, Brett, I compiled the documentation from the PEP (attached as inspect.pep362.1.patch). Please take a look and feel free to add/edit. -- keywords: +patch Added file: http://bugs.python.org/file26410/inspect.pep362.1.patch _

<    1   2