[issue16335] Integer overflow in unicode-escape decoder

2012-11-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: Serhiy, please be more specific as to 'measure' and 'how much' for what effect. I ran two examples, one ran (with error), the other raised. -- ___ Python tracker _

[issue16423] urllib data URL

2012-11-17 Thread Mathias Panzenböck
Changes by Mathias Panzenböck : Removed file: http://bugs.python.org/file27994/urllib.request-data-url.patch ___ Python tracker ___ ___ Python

[issue16423] urllib data URL

2012-11-17 Thread Mathias Panzenböck
Changes by Mathias Panzenböck : Added file: http://bugs.python.org/file28018/urllib.request-data-url.patch ___ Python tracker ___ ___ Python-b

[issue16423] urllib data URL

2012-11-17 Thread Mathias Panzenböck
Changes by Mathias Panzenböck : Removed file: http://bugs.python.org/file28017/urllib.request-data-url.patch ___ Python tracker ___ ___ Python

[issue16423] urllib data URL

2012-11-17 Thread Mathias Panzenböck
Mathias Panzenböck added the comment: Ok, I've added a documentation and some tests. Is it ok this way? More tests? More/other documentation? -- Added file: http://bugs.python.org/file28017/urllib.request-data-url.patch ___ Python tracker

[issue10966] eliminate use of ImportError implicitly representing SkipTest

2012-11-17 Thread Brett Cannon
Changes by Brett Cannon : -- stage: patch review -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue10966] eliminate use of ImportError implicitly representing SkipTest

2012-11-17 Thread Brett Cannon
Changes by Brett Cannon : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue10966] eliminate use of ImportError implicitly representing SkipTest

2012-11-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset eb3714863872 by Brett Cannon in branch 'default': Issue #10966: Remove the concept of unexpected skipped tests. http://hg.python.org/cpython/rev/eb3714863872 -- nosy: +python-dev ___ Python tracker

[issue16423] urllib data URL

2012-11-17 Thread Mathias Panzenböck
Mathias Panzenböck added the comment: On 11/18/2012 12:36 AM, Antoine Pitrou wrote: > > - the patch needs a test (and docs too) > - are you sure ignoring POSTed data is the right thing to do? Shouldn't we > forbid it instead? Btw.: The file:// protocol handler also just ignores posted data, so

[issue15031] Split .pyc parsing from module loading

2012-11-17 Thread Brett Cannon
Brett Cannon added the comment: I can go with parse_cache_contents() as that aligns with imp.cache_from_source(). Does the API look reasonable (other than the parameter names since those would have to be renamed to be more in line with "cache")? Only thing I'm worried about. --

[issue16497] zipimport.zipimporter.find_module() does not work with dotted module names

2012-11-17 Thread Brett Cannon
Brett Cannon added the comment: It actually does work, you just have to embed the subdirectory in the path you pass to zipimport.zipimporter(): >>> importer = zipimport.zipimporter('zipimport_example.zip/package/') >>> importer.find_module('package.eggs') -- resolution: -> invalid st

[issue2005] posixmodule expects sizeof(pid_t/gid_t/uid_t) <= sizeof(long)

2012-11-17 Thread Trent Nelson
Changes by Trent Nelson : -- nosy: +trent ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue11679] readline interferes with characters beginning with byte \xe9

2012-11-17 Thread STINNER Victor
STINNER Victor added the comment: I confirm that the issue exists, but I don't think that it comes from Python. I bet that the readline library uses *byte* string, not *character* string, and so is unable to handle correctly multibyte characters like the chinese character U+9000. --

[issue11679] readline interferes with characters beginning with byte \xe9

2012-11-17 Thread Éric Araujo
Éric Araujo added the comment: Original bug report: https://github.com/ipython/ipython/issues/58 -- nosy: +eric.araujo stage: -> needs patch versions: +Python 3.4 ___ Python tracker ___

[issue2005] posixmodule expects sizeof(pid_t/gid_t/uid_t) <= sizeof(long)

2012-11-17 Thread STINNER Victor
STINNER Victor added the comment: > On some OSes and combination of 64bit typess and 32bit long > it's an invalid assumption. Can you give an example of OS where pid_t, gid_t or uid_t type are longer than the long type? (If I remember correctly, the "identifier" of a Windows process is an addr

[issue2005] posixmodule expects sizeof(pid_t/gid_t/uid_t) <= sizeof(long)

2012-11-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: > I think the patch will break on Unix systems that don't have uid_t or > gid_t types. Do these exist? uid_t and gid_t are part of POSIX: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_types.h.html --

[issue16423] urllib data URL

2012-11-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: > > - are you sure ignoring POSTed data is the right thing to do? Shouldn't we > > forbid it instead? > > - I think it would be nice to reference the RFC number somewhere > > - not sure why you raise IOError on a bad URL; I would say ValueError is > > the right

[issue16335] Integer overflow in unicode-escape decoder

2012-11-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Terry, can you measure how much memory tests really needed (3.2 and 3.3 should want different quantity)? Looks as I wrong in my assumptions. -- ___ Python tracker __

[issue16497] zipimport.zipimporter.find_module() does not work with dotted module names

2012-11-17 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +brett.cannon, ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue16423] urllib data URL

2012-11-17 Thread Mathias Panzenböck
Mathias Panzenböck added the comment: On 11/18/2012 12:36 AM, Antoine Pitrou wrote: > > Antoine Pitrou added the comment: > > A couple of comments: > > - the patch needs a test (and docs too) Will do (when I have time). > - are you sure ignoring POSTed data is the right thing to do? Shouldn't w

[issue15031] Split .pyc parsing from module loading

2012-11-17 Thread Nick Coghlan
Nick Coghlan added the comment: "parse_cache_contents" is my last proposed colour for the shed, but I can live with "parse_bytecode_container" -- ___ Python tracker ___ _

[issue16497] zipimport.zipimporter.find_module() does not work with dotted module names

2012-11-17 Thread Berker Peksag
New submission from Berker Peksag: I am trying to write a test for issue 8585. The `zipimport.zipimporter.find_module()` docs says: "Search for a module specified by fullname. fullname must be the fully qualified (dotted) module name." (from http://docs.python.org/3.4/library/zipimport.html#z

[issue16423] urllib data URL

2012-11-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: A couple of comments: - the patch needs a test (and docs too) - are you sure ignoring POSTed data is the right thing to do? Shouldn't we forbid it instead? - I think it would be nice to reference the RFC number somewhere - not sure why you raise IOError on a ba

[issue16477] tarfile fails to close file handles in case of exception

2012-11-17 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue16496] Simplify and optimize random_seed()

2012-11-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: Ah. The cleanup looks good, from a shallow glance. I haven't verified yet that the change is actually correct. -- ___ Python tracker ___ _

[issue16408] FD leaks in zipfile

2012-11-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thank you for the patches. They looked fine, so I committed them. -- nosy: +pitrou resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue16408] FD leaks in zipfile

2012-11-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset eba28506eed3 by Antoine Pitrou in branch '2.7': Issue #16408: Fix file descriptors not being closed in error conditions in the zipfile module. http://hg.python.org/cpython/rev/eba28506eed3 -- ___ Python

[issue16408] FD leaks in zipfile

2012-11-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset d51d95c9ea81 by Antoine Pitrou in branch '3.2': Issue #16408: Fix file descriptors not being closed in error conditions in the zipfile module. http://hg.python.org/cpython/rev/d51d95c9ea81 New changeset 27cb1a3d57c8 by Antoine Pitrou in branch '3.3

[issue16475] Support object instancing and recursion in marshal

2012-11-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: When I added interning support to marshal, I specifically cared about the size of pyc. I find it sad that this support was thrown out, so I support restoring it. I'm also skeptical about general sharing, and would like to see some specific numbers pointing o

[issue10182] match_start truncates large values

2012-11-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I can't write a test, because I have no such big memory. -- ___ Python tracker ___ ___ Python-bugs

[issue16496] Simplify and optimize random_seed()

2012-11-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is not a problem at all. This just a code cleanup. Removing a code duplicate. Performance boost is a side effect. I confused by an old code comment about _PyLong_AsByteArray(). I don't see any difficulties. -- _

[issue16496] Simplify and optimize random_seed()

2012-11-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: Why is this a problem? -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue13572] import _curses fails because of UnicodeDecodeError('utf8' codec can't decode byte 0xb5 ...') on ARM Ubuntu 3.x

2012-11-17 Thread STINNER Victor
STINNER Victor added the comment: > The issue obviously in PyUnicode_FromString() call from > PyCursesWindow_GetKey(). > We can try latin1 encoding, locale encoding or utf-8 with surrogateescape > error handler. PyUnicode_FromString() uses the UTF-8 decoder. I don't think that curses uses any

[issue10182] match_start truncates large values

2012-11-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Patch looks good to me. Do you think it's possible to add some bigmem tests for this? -- ___ Python tracker ___ ___

[issue16215] Possible double memory free in str.replace

2012-11-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed, thank you. -- nosy: +pitrou resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue16215] Possible double memory free in str.replace

2012-11-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 26e5234239ae by Antoine Pitrou in branch '3.3': Issue #16215: Fix potential double memory free in str.replace(). http://hg.python.org/cpython/rev/26e5234239ae New changeset 5f2624db78bd by Antoine Pitrou in branch 'default': Issue #16215: Fix potent

[issue8627] Unchecked PyErr_WarnPy3k return value in Objects/typeobject.c

2012-11-17 Thread Brett Cannon
Brett Cannon added the comment: Go ahead and reopen. I just couldn't find the lines anymore when I closed it. On Nov 17, 2012 3:07 PM, "Mark Dickinson" wrote: > > Mark Dickinson added the comment: > > To clarify, here's the bug: the following code should raise an exception, > but doesn't: > >

[issue16464] urllib.request: opener not resetting content-length

2012-11-17 Thread Alexey Kachayev
Alexey Kachayev added the comment: This is special case for more "general" problem. When request is executed with HTTP client and data is not None, it calculates content length and adds special header to request. Then one can change request.data attribute value, but header "Content-length" is

[issue16495] bytes_decode() unnecessarily examines encoding

2012-11-17 Thread Chris Jerdonek
Chris Jerdonek added the comment: For the record, there is a test for the default encoding: http://hg.python.org/cpython/file/e9af9b1ca67e/Lib/test/test_bytes.py#l209 -- ___ Python tracker

[issue16495] bytes_decode() unnecessarily examines encoding

2012-11-17 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue16496] Simplify and optimize random_seed()

2012-11-17 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Now random_seed() use an ineffective quadratic-time algorithm. It can reuse _PyLong_AsByteArray(), decreasing code size and increasing performance. -- components: Extension Modules files: random_seed.patch keywords: patch messages: 175812 nosy: mar

[issue16495] bytes_decode() unnecessarily examines encoding

2012-11-17 Thread Chris Jerdonek
New submission from Chris Jerdonek: The code below in bytes_decode() is unnecessary: if (encoding == NULL) encoding = PyUnicode_GetDefaultEncoding(); (from http://hg.python.org/cpython/file/e9af9b1ca67e/Objects/bytesobject.c#l2230 ) because PyUnicode_FromEncodedObject() already ha

[issue2953] _zip_directory_cache untested and undocumented

2012-11-17 Thread Éric Araujo
Éric Araujo added the comment: No problem (and congratulations :) -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailin

[issue16487] Allow ssl certificates to be speficfied from memory rather than files.

2012-11-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: > The please don't. I'm actually growing tired of the way you seem to > always latch onto every submission I make almost with hostility. I > will find someone else to look this over. I fully realize my reply was blunt. But perhaps you could try to understand tha

[issue2953] _zip_directory_cache untested and undocumented

2012-11-17 Thread Eric Snow
Eric Snow added the comment: I'll take a look but can't say when. My wife's is having a baby in the next couple days so I'm a bit swamped. :) -- ___ Python tracker ___

[issue2953] _zip_directory_cache untested and undocumented

2012-11-17 Thread Éric Araujo
Éric Araujo added the comment: Eric, as you know importlib, can you comment about this? If zipimport now works with the invalidate_caches system, then we do have a documented way of clearing the cache, and I would recommend closing this bug (the existing attribute should stay for compat, but

[issue16487] Allow ssl certificates to be speficfied from memory rather than files.

2012-11-17 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: The please don't. I'm actually growing tired of the way you seem to always latch onto every submission I make almost with hostility. I will find someone else to look this over. -- ___ Python tracker

[issue9742] Python 2.7: math module fails to build on Solaris 9

2012-11-17 Thread Mark Dickinson
Mark Dickinson added the comment: Matt: thanks for testing. Patch applied---this should be fixed now. I'm a little bit nervous about this one, since it may introduce new failures on systems with a buggy round implementation (Linux / alpha, for example). Still, we have tests for that, so I'l

[issue9742] Python 2.7: math module fails to build on Solaris 9

2012-11-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset ff300ccd119d by Mark Dickinson in branch '2.7': Issue #9742: Sneaky fix for build failure on Solaris 9. http://hg.python.org/cpython/rev/ff300ccd119d -- nosy: +python-dev ___ Python tracker

[issue15379] Charmap decoding of no-BMP characters

2012-11-17 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: commit review -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue15379] Charmap decoding of no-BMP characters

2012-11-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks for the backport, committed! -- status: open -> closed ___ Python tracker ___ ___ Python-bugs

[issue15379] Charmap decoding of no-BMP characters

2012-11-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset c7ce91756472 by Antoine Pitrou in branch '2.7': Issue #15379: Fix passing of non-BMP characters as integers for the charmap decoder (already working as unicode strings). http://hg.python.org/cpython/rev/c7ce91756472 --

[issue2771] Test issue

2012-11-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 47ae836aa221 by Antoine Pitrou in branch 'default': Issue #2771: !! http://hg.python.org/test/rev/47ae836aa221 -- nosy: +python-dev ___ Python tracker _

[issue16477] tarfile fails to close file handles in case of exception

2012-11-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > Would "with source = self.extractfile(tarinfo):" work? No. extractfile() can return an instance of custom class. But in 3.x this not used at all. Here are patches for 2.7 and 3.x. -- keywords: +patch Added file: http://bugs.python.org/file28012/

[issue16475] Support object instancing and recursion in marshal

2012-11-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: I agree that restoring the string interning behaviour would be a good thing. However, I don't agree that supporting recursive objects and instantiation is useful. marshal is specialized for code objects, and you shouldn't find any recursive constants there. As

[issue16451] Remove duplication between slice_indices and compute_slice_indices

2012-11-17 Thread Mark Dickinson
Changes by Mark Dickinson : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue14794] slice.indices raises OverflowError

2012-11-17 Thread Mark Dickinson
Mark Dickinson added the comment: For the refactoring, see issue #16451 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue16451] Remove duplication between slice_indices and compute_slice_indices

2012-11-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset e9af9b1ca67e by Mark Dickinson in branch 'default': Issue #16451: Refactor to remove duplication between range and slice in slice index computations. http://hg.python.org/cpython/rev/e9af9b1ca67e -- nosy: +python-dev __

[issue4473] POP3 missing support for starttls

2012-11-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Hello, Here are some comments about the patches: 1) poplib_01_socket_shutdown_v3.diff: looks fine to me 2) poplib_02_server_capabilities_v3.diff: - please try to follow PEP 8 (i.e. `capa = {}` not `capa={}`) - I think the capa() result should be a dict mappin

[issue15861] ttk.Treeview "unmatched open brace in list"

2012-11-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Patch updated. -- Added file: http://bugs.python.org/file28011/tkinter_quoting_2.patch ___ Python tracker ___

[issue8627] Unchecked PyErr_WarnPy3k return value in Objects/typeobject.c

2012-11-17 Thread Mark Dickinson
Mark Dickinson added the comment: To clarify, here's the bug: the following code should raise an exception, but doesn't: iwasawa:cpython mdickinson$ ./python.exe -3 Python 2.7.3+ (2.7:333fe4c4897a, Nov 17 2012, 18:01:00) [GCC 4.2.1 (Apple Inc. build 5664)] on darwin Type "help", "copyright",

[issue14631] Instance methods and WeakRefs don't mix.

2012-11-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed, thank you! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue14631] Instance methods and WeakRefs don't mix.

2012-11-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 27c20650aeab by Antoine Pitrou in branch 'default': Issue #14631: Add a new :class:`weakref.WeakMethod` to simulate weak references to bound methods. http://hg.python.org/cpython/rev/27c20650aeab -- nosy: +python-dev __

[issue16386] imp.find_module does not specify registry key it searches on windows

2012-11-17 Thread Jan Duzinkiewicz
Jan Duzinkiewicz added the comment: Ok, didn't knew much about importlib, I can work on a patch but have a few questions/suggestions: 1. For importlib, simply referencing the "Using on Windows" guide imo won't be ok - the importlib sources show that the key being used is "Software\\Python\\Py

[issue2953] _zip_directory_cache untested and undocumented

2012-11-17 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue1545463] New-style classes fail to cleanup attributes

2012-11-17 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue8787] warnings inside PyRun_SimpleString() display argv[1]

2012-11-17 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue10224] Build 3.x documentation using python3.x

2012-11-17 Thread Ezio Melotti
Changes by Ezio Melotti : -- dependencies: +upgrade to sphinx 1.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue8627] Unchecked PyErr_WarnPy3k return value in Objects/typeobject.c

2012-11-17 Thread Brett Cannon
Brett Cannon added the comment: I can't find it, Mark, after searching through every XXX marker in a 2.7 checkout of Objects/typeobject.c . -- ___ Python tracker ___

[issue8627] Unchecked PyErr_WarnPy3k return value in Objects/typeobject.c

2012-11-17 Thread Mark Dickinson
Mark Dickinson added the comment: It's line 3912 in the current source. The warning is always cleared, which is the wrong thing to do if warnings should be turned into exceptions. -- ___ Python tracker ___

[issue13424] Add examples for open’s new opener argument

2012-11-17 Thread Ezio Melotti
Ezio Melotti added the comment: There's also a Sphinx warning that should be fixed: 3.3/Doc/library/functions.rst:955: WARNING: undefined label: dir_fd (if the link has no caption the label must precede a section header) -- nosy: +ezio.melotti ___ Py

[issue8585] zipimporter.find_module is untested

2012-11-17 Thread Brett Cannon
Changes by Brett Cannon : -- versions: -Python 2.7, Python 3.2, Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue8627] Unchecked PyErr_WarnPy3k return value in Objects/typeobject.c

2012-11-17 Thread Mark Dickinson
Mark Dickinson added the comment: There's still a case where the return value isn't properly propagated: it's the one marked by an 'XXX' in the source. -- ___ Python tracker ___

[issue16157] Irrelevant references to Misc/News

2012-11-17 Thread Ezio Melotti
Ezio Melotti added the comment: This should be fixed now. I linked to http://hg.python.org/cpython/file/3.2/Misc/NEWS for the 3.2 whatsnew and to http://docs.python.org/3.3/whatsnew/changelog.html and http://docs.python.org/3.4/whatsnew/changelog.html for 3.3 and 3.4 respectively. -- a

[issue16157] Irrelevant references to Misc/News

2012-11-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset d6cd283bb4c2 by Ezio Melotti in branch '3.3': #16157: fix links in the whatsnew files. http://hg.python.org/cpython/rev/d6cd283bb4c2 New changeset 9a08c9443c54 by Ezio Melotti in branch 'default': #16157: merge with 3.3. http://hg.python.org/cpython

[issue16484] pydoc generates invalid docs.python.org link for xml.etree.ElementTree and other modules

2012-11-17 Thread Éric Araujo
Éric Araujo added the comment: A patch and test making sure that pydoc generates the right URIs for upper-case modules would help. -- assignee: docs@python -> nosy: +eric.araujo -docs@python stage: -> needs patch title: Missing/broken documentation redirect for http://docs.python.org

[issue8585] zipimporter.find_module is untested

2012-11-17 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3, Python 3.4 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue16489] importlib find_loader returns a loader for a non existent module

2012-11-17 Thread Xavier de Gaye
Xavier de Gaye added the comment: Thanks, this is great! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue9893] Removing the Misc/Vim/ files

2012-11-17 Thread Éric Araujo
Éric Araujo added the comment: I had forgotten that README.Emacs was moved to the devguide. Adding doc about Vim support can be another bug report. Thanks. -- stage: needs patch -> committed/rejected ___ Python tracker

[issue12967] IDLE RPC Proxy for standard IO streams lacks 'errors' attribute

2012-11-17 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: needs patch -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue12967] IDLE RPC Proxy for standard IO streams lacks 'errors' attribute

2012-11-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: Even though the title of #9290 says stdin, the patches are for all std** streams, so should cover this. -- status: open -> closed ___ Python tracker __

[issue12848] pickle.py treats 32bit lengths as signed, but _pickle.c as unsigned

2012-11-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: > OTOH, I also think that it won't matter much in practive: if you try to > unpickle a string with more than 2GiB on a 32-bit system, chances are > really high that you run out of memory. Agreed. I think this issue is mostly about 64-bit systems, even though we

[issue1539925] warnings in interactive sessions

2012-11-17 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue16487] Allow ssl certificates to be speficfied from memory rather than files.

2012-11-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: By the way, without looking too much at the patch, I think it would be cleaner to let the certificate functions accept file-like objects, rather than adding keydata/certdata arguments. -- ___ Python tracker

[issue9761] stale .pyc files aren't cleaned out

2012-11-17 Thread Brett Cannon
Brett Cannon added the comment: Never heard back from OP. -- resolution: -> out of date status: open -> closed ___ Python tracker ___

[issue850482] Enhance frame handing in warnings.warn()

2012-11-17 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue12967] IDLE RPC Proxy for standard IO streams lacks 'errors' attribute

2012-11-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thomas, please re-read the messages starting msg145215 where it was decided that this is not an issue about setup.py in particular. There appears to now only be a problem if IDLE is run without a subprocess, and that option may disappear in 3.4 as unneeded. -

[issue8585] zipimporter.find_module is untested

2012-11-17 Thread Brett Cannon
Brett Cannon added the comment: Been longer than a weekend. =) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2744] Fix test_cProfile

2012-11-17 Thread Brett Cannon
Changes by Brett Cannon : -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue8627] Unchecked PyErr_WarnPy3k return value in Objects/typeobject.c

2012-11-17 Thread Brett Cannon
Brett Cannon added the comment: A quick search through typeobject.c in 2.7 didn't show any PyErr_WarnPy3k calls that didn't have their return value checked or propagated. -- resolution: -> out of date status: open -> closed ___ Python tracker

[issue16456] UnicodeDecodeError thrown for 'encode' operation on string

2012-11-17 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue6526] importlib.import_module affects permissions of .pyc files subsequently created by import

2012-11-17 Thread Brett Cannon
Brett Cannon added the comment: At some point this was fixed in importlib. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue11981] dupe self.fp.tell() in zipfile.ZipFile.writestr

2012-11-17 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the patch! -- assignee: -> ezio.melotti resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed versions: -Python 3.3 ___ Python tracker

[issue11981] dupe self.fp.tell() in zipfile.ZipFile.writestr

2012-11-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset d51665f9a416 by Ezio Melotti in branch 'default': #11981: remove duplicate line. Patch by Johan Euphrosine. http://hg.python.org/cpython/rev/d51665f9a416 -- nosy: +python-dev ___ Python tracker

[issue4182] warnings.warn shows the wrong filename and line number for stacklevel of 0

2012-11-17 Thread Brett Cannon
Changes by Brett Cannon : -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue4347] Circular dependency causes SystemError when adding new syntax

2012-11-17 Thread Brett Cannon
Brett Cannon added the comment: This still an issue? -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue13572] import _curses fails because of UnicodeDecodeError('utf8' codec can't decode byte 0xb5 ...') on ARM Ubuntu 3.x

2012-11-17 Thread Brett Cannon
Brett Cannon added the comment: Should we just close this, Barry? -- status: pending -> open ___ Python tracker ___ ___ Python-bugs-li

[issue15623] Init time relative imports no longer work from __init__.so modules

2012-11-17 Thread Brett Cannon
Changes by Brett Cannon : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue15292] import hook behavior documentation improvement

2012-11-17 Thread Brett Cannon
Brett Cannon added the comment: Closing as "works for me" due to lack of reply from OP. -- resolution: -> works for me status: pending -> closed ___ Python tracker ___ _

[issue10224] Build 3.x documentation using python3.x

2012-11-17 Thread Brett Cannon
Brett Cannon added the comment: What exactly is blocking this? From looking on PyPI it seems Jinja2, Pygments, and Sphinx have all been ported to Python 3 at this point. Is it a matter of porting any custom code in Doc/ to Python 3 and then updating the Makefile to grab Python 3 versions of th

  1   2   >