[issue17261] multiprocessing.manager BaseManager cannot return proxies from proxies remotely (when listening on '')

2013-02-20 Thread Wilson Harron
New submission from Wilson Harron: If a manager is running listening to all ports ('0.0.0.0') and the manager has a proxy that returns another proxy the client will not be able to create the resulting proxy. This is because the server (manager) returns '0.0.0.0' in the token returned, and

[issue16248] Security bug in tkinter allows for untrusted, arbitrary code execution.

2013-02-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 936621d33c38 by Barry Warsaw in branch '2.6': - Issue #16248: Disable code execution from the user's home directory by http://hg.python.org/cpython/rev/936621d33c38 -- ___ Python tracker

[issue16248] Security bug in tkinter allows for untrusted, arbitrary code execution.

2013-02-20 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16248 ___ ___ Python-bugs-list

[issue16248] Security bug in tkinter allows for untrusted, arbitrary code execution.

2013-02-20 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I think this has now been applied to all of 2.6, 2.7, 3.1, 3.2, 3.3, and 3.4. So, closing. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16248 ___

[issue17262] OrderedDict not ordering properly when int and float keys are used

2013-02-20 Thread Matthew Porter
New submission from Matthew Porter: I've got two lists: state_cns_list = [0.001, 1, 2, 5] state_names_list = [L, S, D, H] When I try to create an OrderedDict linking each state_cns_list entry with its corresponding state_names_list entry, like so: states = OrderedDict(

[issue17262] OrderedDict not ordering properly when int and float keys are used

2013-02-20 Thread Benjamin Peterson
Benjamin Peterson added the comment: The dictionary you pass to the OrderedDict constructor has already lost the order you initialize it with. -- nosy: +benjamin.peterson resolution: - invalid status: open - closed ___ Python tracker

[issue17262] OrderedDict not ordering properly when int and float keys are used

2013-02-20 Thread Matthew Porter
Matthew Porter added the comment: Ahh nevermind, just realized my error :P Sorry for the waste of internet space -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17262 ___

[issue17260] Seg fault when calling unicode() on old style object in virtualenv

2013-02-20 Thread Johannes
Johannes added the comment: Program received signal EXC_BAD_ACCESS, Could not access memory. Reason: KERN_INVALID_ADDRESS at address: 0x0008 0x00010004e221 in PyObject_GetAttr () (gdb) bt #0 0x00010004e221 in PyObject_GetAttr () #1 0x00010004e0ff in PyObject_Unicode ()

[issue17260] Seg fault when calling unicode() on old style object in virtualenv

2013-02-20 Thread Ned Deily
Ned Deily added the comment: I can reproduce the segfault with a v2.7.3 Python + virtualenv but not with a current 2.7 tip Python + virtualenv. Nothing comes to mind immediately; I'll try bisecting. -- nosy: +ned.deily ___ Python tracker

[issue17155] logging can raise UnicodeEncodeError

2013-02-20 Thread Kim
Kim added the comment: I'm running into similar issues with 2.6.7 and logging 0.4.9.6, where unicode strings are fine in print statements and codecs writes, but the same string is giving tracebacks for logging. If it's an education issue, I'm not finding the education I need ... :-/ import

[issue17260] Seg fault when calling unicode() on old style object in virtualenv

2013-02-20 Thread Ned Deily
Ned Deily added the comment: Duh! Issue16839 segmentation fault when unicode(classic_class_instance) That was recently fixed and will be available in the upcoming 2.7.4 maintenance release. -- resolution: - duplicate stage: - committed/rejected status: open - closed superseder: -

[issue17263] crash when tp_dealloc allows other threads

2013-02-20 Thread Albert Zeyer
New submission from Albert Zeyer: If you have some Py_BEGIN_ALLOW_THREADS/Py_END_ALLOW_THREADS in some tp_dealloc and you use such objects in thread local storage, you might get crashes, depending on which thread at what time is trying to cleanup such object. I haven't fully figured out the

[issue17225] JSON decoder reports wrong column number on first line

2013-02-20 Thread Ezio Melotti
Ezio Melotti added the comment: Are these values accessible from somewhere (e.g. as attributes of the exception)? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17225 ___

[issue17263] crash when tp_dealloc allows other threads

2013-02-20 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- nosy: +r.david.murray ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17263 ___ ___

[issue17155] logging can raise UnicodeEncodeError

2013-02-20 Thread Kim
Kim added the comment: p.s. Converting to a StreamHandler fixes my issue for now. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17155 ___ ___

[issue17264] Update Building C and C++ Extensions with distutils documentation

2013-02-20 Thread Berker Peksag
New submission from Berker Peksag: I have removed all mentions about Python 1.4 and 2.0 from the Doc/extending/building.rst. The Demo/embed/demo.c file has been removed in 3.x, so I used _spammodule.c convention in the examples. The patch also fixes all the PEP 8 violations in the setup.py

[issue17262] OrderedDict not ordering properly when int and float keys are used

2013-02-20 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: - committed/rejected ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17262 ___ ___

<    1   2