[issue14787] pkgutil.walk_packages returns extra modules

2012-07-16 Thread Nick Coghlan
Nick Coghlan ncogh...@gmail.com added the comment: Right, this is a separate bug in pkgutil. Specifically, when it goes to import a package in order to check it for submodules, it invokes the global import system via __import__() rather than constraining the import to the path argument

[issue1492704] distinct error type from shutil.move()

2012-07-16 Thread Hynek Schlawack
Hynek Schlawack h...@ox.cx added the comment: If nobody else, I’ll review it tomorrow at the latest. On a first glance I realized our shutil Exceptions are all derived from EnvironmentError which is just a compatibility alias for OSError since 3.3. Quick poll before I open a dedicated ticket,

[issue1492704] distinct error type from shutil.move()

2012-07-16 Thread Atsuo Ishimoto
Atsuo Ishimoto ishim...@gembook.org added the comment: So, the title of this issue is misleading. The patch originally proposed by Zooko does not raise SameFileError in shutil.move(). If source and destination is same file, shutil.move() may raise exception, but the exception is NOT

[issue1492704] distinct error type from shutil.move()

2012-07-16 Thread Hynek Schlawack
Hynek Schlawack h...@ox.cx added the comment: Well, then fix is for shutil.move() too please, otherwise we can’t close this ticket which is a pity after over 6 years. :) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1492704

[issue1492704] distinct error type from shutil.move()

2012-07-16 Thread Atsuo Ishimoto
Atsuo Ishimoto ishim...@gembook.org added the comment: Well, I happy to improve patch. But, on Linux and Windows, shutil.move() does not raise any exception if source and destination are identical. If we change the behavior, I'm afraid we would break a lot of existing applications.

[issue15368] bytecode generation is not deterministic

2012-07-16 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- nosy: +mark.dickinson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15368 ___ ___

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

2012-07-16 Thread Hynek Schlawack
Hynek Schlawack h...@ox.cx added the comment: Sorry, I didn’t look at zooko’s patch which was also just about copyfile. I presume it’s all about the copy fallback that happens when os.rename didn’t work out. Will look at your code more closely later. -- title: distinct error type

[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 ishim...@gembook.org added the comment: Ooops, shutil.move() will raise SameFileError if destination is directory. I'll investigate the patch further more. -- ___ Python tracker rep...@bugs.python.org

[issue14787] pkgutil.walk_packages returns extra modules

2012-07-16 Thread Nick Coghlan
Nick Coghlan ncogh...@gmail.com added the comment: At the very least, the pkgutil docs need to state clearly that walk_packages only works properly with sys.path entries, and the constraint feature may not descend into packages correctly if an entry is shadowed by a sys.modules entry or an

[issue15370] test_runpy should include namespace package tests

2012-07-16 Thread Nick Coghlan
New submission from Nick Coghlan ncogh...@gmail.com: test_runpy doesn't currently check that code can be correctly executed from namespace packages -- components: Tests messages: 165613 nosy: ncoghlan priority: normal severity: normal status: open title: test_runpy should include

[issue15371] test_cmd_line_script should include namespace package tests

2012-07-16 Thread Nick Coghlan
New submission from Nick Coghlan ncogh...@gmail.com: test_cmd_line_script doesn't currently check that namespace packages and submodules of namespace packages can be executed via the -m switch -- components: Library (Lib) messages: 165614 nosy: ncoghlan priority: normal severity:

[issue15307] Patch for --symlink support in pyvenv with framework python

2012-07-16 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: And a final update: don't use TAB characters -- Added file: http://bugs.python.org/file26398/venv-symlinks-v7.txt ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15307

[issue15368] bytecode generation is not deterministic

2012-07-16 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- nosy: +flox ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15368 ___ ___ Python-bugs-list

[issue15358] Test pkgutil.walk_packages in test_pkgutil instead of test_runpy

2012-07-16 Thread Nick Coghlan
Nick Coghlan ncogh...@gmail.com added the comment: The walk_packages tests should also be enhanced to ensure correctly handling of namespace packages -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15358

[issue15358] Test pkgutil.walk_packages in test_pkgutil instead of test_runpy

2012-07-16 Thread Nick Coghlan
Nick Coghlan ncogh...@gmail.com added the comment: Note that the problem described in #14787 will limit the scope of what can be tested. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15358

[issue14787] pkgutil.walk_packages returns extra modules

2012-07-16 Thread Nick Coghlan
Nick Coghlan ncogh...@gmail.com added the comment: I just realised this is going to behave strangely with namespace packages as well: the __import__ step will pick up *every* portion of the namespace package, not just those defined in the identified subset of sys.path. --

[issue15368] bytecode generation is not deterministic

2012-07-16 Thread Nick Coghlan
Nick Coghlan ncogh...@gmail.com added the comment: At least we know the hash randomisation is working :) Spurious changes when freezing modules seems like a legitimate reason to fix it - the import benchmarks would probably give the compiler enough of a workout to highlight if the sorting is

[issue15364] sysconfig confused by relative paths

2012-07-16 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: I don't recall what the issue was the resulted in the check-in that you mention. Sadly enough it is not-trivial to find that check-in I mention due to the migration from Subversion to Mercurial. How was python itself configured

[issue15368] bytecode generation is not deterministic

2012-07-16 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Ditto. I think predictability of bytecode generation is useful, e.g. for make-like tools that examine content, or for unit testing. -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org

[issue15238] shutil.copystat should copy Linux extended attributes

2012-07-16 Thread Larry Hastings
Larry Hastings la...@hastings.org added the comment: Hynek, it's clear you understand this far better than I do. Could I get you to fix the Fedora buildbot problem, etc, etc? -- ___ Python tracker rep...@bugs.python.org

[issue15352] importlib.h should be regenerated when the marshaling code changes

2012-07-16 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15352 ___

[issue15368] bytecode generation is not deterministic

2012-07-16 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15368 ___

[issue11698] Improve repr for structseq objects to show named, but unindexed fields

2012-07-16 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11698 ___

[issue15238] shutil.copystat should copy Linux extended attributes

2012-07-16 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 265e36e277f3 by Hynek Schlawack in branch 'default': #15238: Fix xattr related shutil.copystat tests http://hg.python.org/cpython/rev/265e36e277f3 -- ___ Python tracker

[issue15366] venv assumes header files in sys._home + '/Include'

2012-07-16 Thread Richard Oudkerk
Richard Oudkerk shibt...@gmail.com added the comment: Updated patch. Old one broke test_distutils... -- Added file: http://bugs.python.org/file26399/distutils-sysconfig.patch ___ Python tracker rep...@bugs.python.org

[issue15367] build_ext in a venv on Windows assumes pyconfig.h in sys.exec_prefix + '\PC'

2012-07-16 Thread Richard Oudkerk
Richard Oudkerk shibt...@gmail.com added the comment: Updated patch which does not fail test_distutils. -- Added file: http://bugs.python.org/file26400/build_ext.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15367

[issue15238] shutil.copystat should copy Linux extended attributes

2012-07-16 Thread Hynek Schlawack
Hynek Schlawack h...@ox.cx added the comment: I removed the check for good as we check for the existence of the xattr in the next line. However we check the destination now whether the xattrs have been copied. ;) Fedora is green again. -- ___

[issue14787] pkgutil.walk_packages returns extra modules

2012-07-16 Thread Chris Jerdonek
Chris Jerdonek chris.jerdo...@gmail.com added the comment: This isn't an easy one to fix - you basically need something along the lines of a PEP 406 style import engine API in order to do the import without having potentially adverse effects on the state in the sys module. By adverse, do

[issue15364] sysconfig confused by relative paths

2012-07-16 Thread Richard Oudkerk
Richard Oudkerk shibt...@gmail.com added the comment: I don't recall what the issue was the resulted in the check-in that you mention. I think it was http://bugs.python.org/issue8577. The issue was about having srcdir != builddir. The initial patch caused a test failure, and 356d0ea8ea34

[issue15364] sysconfig confused by relative paths

2012-07-16 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15364 ___ ___ Python-bugs-list

[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 ishim...@gembook.org added the comment: Patch updated. - SameFileError is now derived from EnvironmentError. - Fixed documentation. - Fixed test method name. I investigated this patch: - shutil.copyfile() and shutil.copy() raises SameFileError if source and destination are

[issue15372] Python is missing alternative for common quoting character

2012-07-16 Thread Luca Fabbri
New submission from Luca Fabbri luca...@gmail.com: Using the unicodedata.decomposition function on characters like \u201c and \u201d I didn't get back the classic quote character (). This is a very common error when text is taken from Microsoft Word (where in italian language a couple of

[issue15373] copy.copy() does not properly copy os.environment

2012-07-16 Thread Hartmut Goebel
New submission from Hartmut Goebel h.goe...@crazy-compilers.com: Wehn copying os.environ usinf copy.copy(), any manipulation on the copied object will change os.environment, too. $ python Python 2.7.3 (default, Apr 22 2012, 07:46:58) [GCC 4.6.3] on linux2 Type help, copyright, credits or

[issue15364] sysconfig confused by relative paths

2012-07-16 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: It is actually simple to find the revision: http://hg.python.org/lookup/r81999 :) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15364 ___

[issue15364] sysconfig confused by relative paths

2012-07-16 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I have to add that I’m quite confused by srcdir vs. projectbase. There are a handful of open bugs related to sysconfig and built but uninstalled Pythons, and many commits changing code to use srcdir or projectbase after empirical testing or

[issue15364] sysconfig confused by relative paths

2012-07-16 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: srcdir vs. project base is quite easy: srcdir is the directory containing the source files, the project base is where you ran configure. These are the same if you run configure in the root of a checkout, but don't have to be, for

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

2012-07-16 Thread Hynek Schlawack
Hynek Schlawack h...@ox.cx added the comment: - SameFileError is now derived from EnvironmentError. Why? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1492704 ___

[issue15372] Python is missing alternative for common quoting character

2012-07-16 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: I don't understand why you would expect to get a . The unicode characters aren't s. As far as I can see (from, for example, http://codepoints.net/U+201C), Python is behaving as expected here. -- nosy: +r.david.murray

[issue15373] copy.copy() does not properly copy os.environment

2012-07-16 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: os.environ is not a dictionary, so it isn't all that surprising that a shallow copy doesn't behave like a shallow copy of a dictionary. deepcopy does what you'd expect, as does os.environ.copy(). Perhaps it is worth improving this by

[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 ishim...@gembook.org added the comment: - SameFileError is now derived from EnvironmentError. Why? oh, sorry, I misunderstood you suggested to do so. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1492704

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

2012-07-16 Thread Hynek Schlawack
Hynek Schlawack h...@ox.cx added the comment: No, sorry if my ramblings confused you. I'm pondering about deriving Error from OSError in 3.4. That has nothing to do with this ticket. I just saw it while glancing over your patch. -- ___ Python

[issue504714] hasattr catches only AttributeError

2012-07-16 Thread Karl Chen
Karl Chen qu...@09e0.clgubaohtf.z.quarl.org added the comment: For the record, this was eventually fixed for Python 3.2. See http://bugs.python.org/issue9666. Adding this here because issue504714 comes up earlier than issue9666 in many web searches. -- nosy: +quarl

[issue15368] bytecode generation is not deterministic

2012-07-16 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: OK, so it sounds like we need to do the equivalent of sorting those tuples when generating the bytecode. That would suggest that probably need to tweak Python/compile.c to make it deterministic. --

[issue15366] venv assumes header files in sys._home + '/Include'

2012-07-16 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 998c8a8f2aea by Vinay Sajip in branch 'default': Closes #15366: Corrected computation of include location for source builds. Thanks to Richard Oudkerk for the bug report and patch.

[issue15367] build_ext in a venv on Windows assumes pyconfig.h in sys.exec_prefix + '\PC'

2012-07-16 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset a970054a93fb by Vinay Sajip in branch 'default': Closes #15367: Corrected computation of include locations for source builds on Windows. Thanks to Richard Oudkerk for the bug report and patch.

[issue15372] Python is missing alternative for common quoting character

2012-07-16 Thread Matthew Barnett
Matthew Barnett pyt...@mrabarnett.plus.com added the comment: A codepoint such as é (\N{LATIN SMALL LETTER E WITH ACUTE}) can be decomposed to \u0065\u0301 (\N{LATIN SMALL LETTER E}\N{COMBINING ACUTE ACCENT), but \u201c (\N{LEFT DOUBLE QUOTATION MARK}) and \u201d (\N{RIGHT DOUBLE QUOTATION

[issue15372] Python is missing alternative for common quoting character

2012-07-16 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15372 ___ ___ Python-bugs-list

[issue15374] venv environment variable should follow the conventions

2012-07-16 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: pyvenv's environment variable is currently named VIRTUAL_ENV (it seems). It would be better if it followed the trend of other Python environment variables such as PYTHONHOME, PYTHONSTARTUP, etc. (so, PYTHONVENV ?) Setting as deferred blocker,

[issue14201] Documented caching for shared library's __getattr__ and __getitem__ is incorrect

2012-07-16 Thread Erik Johansson
Erik Johansson e...@ejohansson.se added the comment: Document the difference between __getattr__ and __getitem__. -- keywords: +patch Added file: http://bugs.python.org/file26402/issue14201.patch ___ Python tracker rep...@bugs.python.org

[issue15373] copy.copy() does not properly copy os.environment

2012-07-16 Thread Anton Barkovsky
Anton Barkovsky swarmer...@gmail.com added the comment: Here's a patch. -- keywords: +patch nosy: +anton.barkovsky Added file: http://bugs.python.org/file26403/environcopy.patch ___ Python tracker rep...@bugs.python.org

[issue15307] Patch for --symlink support in pyvenv with framework python

2012-07-16 Thread Ned Deily
Ned Deily n...@acm.org added the comment: v7 looks good to me -- stage: - commit review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15307 ___

[issue15171] Fix 64-bit building for buildbot scripts (3.2)

2012-07-16 Thread David Bolen
David Bolen db3l@gmail.com added the comment: It seems really unlikely to be related to this issue since I'm pretty sure build-amd64 doesn't get used on XP-4. From the log it looks like it couldn't clean out and reuse the VS temporary build directory. Manually cleaning it out and

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

2012-07-16 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: This broke the buildbots without poll() (Windows). -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14635 ___

[issue15314] Use importlib instead of pkgutil in runpy

2012-07-16 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: A test fails on the XP buildbots: == FAIL: test_get_importer_avoids_emulation (test.test_pkgutil.ImportlibMigrationTests)

[issue15373] copy.copy() does not properly copy os.environment

2012-07-16 Thread Anton Barkovsky
Anton Barkovsky swarmer...@gmail.com added the comment: A new patch with tests. -- Added file: http://bugs.python.org/file26404/environcopy_v2.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15373

[issue15171] Fix 64-bit building for buildbot scripts (3.2)

2012-07-16 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: David, since you are here, perhaps you could take a look at why your Windows 7 buildbot doesn't compile? http://buildbot.python.org/all/builders/x86%20Windows7%203.x I tried to e-mail you but apparently you didn't receive the message.

[issue15364] sysconfig confused by relative paths

2012-07-16 Thread Chris Jerdonek
Chris Jerdonek chris.jerdo...@gmail.com added the comment: Issue 15322 is a recently filed bug regarding srcdir: sysconfig.get_config_var('srcdir') returns unexpected value -- nosy: +cjerdonek ___ Python tracker rep...@bugs.python.org

[issue15351] Add to unittest.TestCase support for using context managers

2012-07-16 Thread Chris Jerdonek
Chris Jerdonek chris.jerdo...@gmail.com added the comment: Attached is a patch illustrating the API I suggested for discussion. To add custom setup and teardown context managers, the user can override the following method: def executeTest(self): with self.setUpContext():

[issue15230] runpy.run_path doesn't set __package__ correctly

2012-07-16 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: This broke some 3.2 buildbots, e.g.: http://buildbot.python.org/all/builders/AMD64%20Lion%203.2/builds/25 -- nosy: +pitrou status: closed - open ___ Python tracker rep...@bugs.python.org

[issue15184] Test failure in test_sysconfig_module

2012-07-16 Thread Ned Deily
Ned Deily n...@acm.org added the comment: Georg, are you still able to reproduce this? I've subsequently tried on a Debian platform with an installed clang and could not reproduce. And, after further inspecting the current code, I really don't see how the clang substitution could happen on a

[issue15184] Test failure in test_sysconfig_module

2012-07-16 Thread Ned Deily
Changes by Ned Deily n...@acm.org: Removed file: http://bugs.python.org/file26163/issue15184_preserve_config_vars.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15184 ___

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

2012-07-16 Thread Daniel Swanson
Daniel Swanson popcorn.tomato.d...@gmail.com added the comment: I am also somewhat puzzled by this issue. The other day I was able to open some .txt files just to see if I could and they opened just fine. Just now I tryed to open a .jpg file and I got an error message, but then again, why

[issue6493] Can not set value for structure members larger than 32 bits

2012-07-16 Thread HCT
HCT hcta...@gmail.com added the comment: Hirokazu's v3 patch is a clean solution for the issue and works on 3.2 any update on when it will go into 3.2/3.3? I can help if needed -- nosy: +hct ___ Python tracker rep...@bugs.python.org

[issue6493] Can not set value for structure members larger than 32 bits

2012-07-16 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- assignee: theller - components: +Library (Lib), Windows nosy: +meador.inge stage: commit review - patch review versions: +Python 3.3 -Python 3.1 ___ Python tracker rep...@bugs.python.org

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

2012-07-16 Thread Alex Leach
Alex Leach beamesle...@gmail.com added the comment: I just had a dig around my cpython build dir, and found an ffi64.c I hacked at a while back. I copied the edits over to the latest libffi git revision, rebuilt, and `make check` (of libffi) passes all tests. So as far as I can tell the below

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

2012-07-16 Thread Alex Leach
Alex Leach beamesle...@gmail.com added the comment: It skips 55, sorry, passing 1659. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4130 ___

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

2012-07-16 Thread Alex Leach
Alex Leach beamesle...@gmail.com added the comment: That's the same patch as I attached before actually, so sorry for the spam.. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4130 ___

[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 ishim...@gembook.org 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 shibt...@gmail.com 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

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

2012-07-16 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: Those should all be fixed as of my most recent commit. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14635 ___

[issue15374] venv environment variable should follow the conventions

2012-07-16 Thread Vinay Sajip
Vinay Sajip vinay_sa...@yahoo.co.uk 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. -- ___

[issue15374] venv environment variable should follow the conventions

2012-07-16 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr 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

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

2012-07-16 Thread Roger Serwy
Roger Serwy roger.se...@gmail.com added the comment: Is the error message a traceback? If so, could you open a separate issue for it? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6804

[issue15374] venv environment variable should follow the conventions

2012-07-16 Thread Vinay Sajip
Vinay Sajip vinay_sa...@yahoo.co.uk 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

[issue15375] Trivial for fix in the subprocess documentation

2012-07-16 Thread Renato Cunha
New submission from Renato Cunha ren...@renatocunha.com: 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,

[issue15375] Trivial for fix in the subprocess documentation

2012-07-16 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za 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

[issue15375] Trivial for fix in the subprocess documentation

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

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

2012-07-16 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: Fixed the invariant violation in changeset 64ff90e07d71 I'll review the performance difference separately -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1767933

[issue15374] venv environment variable should follow the conventions

2012-07-16 Thread Carl Meyer
Carl Meyer c...@dirtcircle.com 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

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

2012-07-16 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: I posted a message to python-dev about the performance issue -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1767933 ___

[issue15368] bytecode generation is not deterministic

2012-07-16 Thread Meador Inge
Meador Inge mead...@gmail.com 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

[issue14332] Better explain junk concept in difflib doc

2012-07-16 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: I agree. Any improvement is preferred over just letting this decay in the issue tracker ;-) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14332

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

2012-07-16 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com 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) --

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

2012-07-16 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com 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 rep...@bugs.python.org

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

2012-07-16 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com 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. -- ___

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

2012-07-16 Thread Yury Selivanov
Yury Selivanov yselivanov...@gmail.com 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:

<    1   2