ppperry added the comment:
Duplicate issue24252, although the consequences are slightly different.
--
nosy: +ppperry
___
Python tracker
<http://bugs.python.org/issue26
ppperry added the comment:
You're working with non-documented internal components of the python standard
library with names that start with an underscore. I think that this is not a
bug in python, but instead a consequence of mucking with internals that weren't
designed to be m
Changes by ppperry :
--
components: IDLE
nosy: ppperry
priority: normal
severity: normal
status: open
title: IDLE restarts when one debugs code raising SystemExit
type: behavior
versions: Python 3.4
___
Python tracker
<http://bugs.python.
ppperry added the comment:
Also is true on python 3.4. Why does this matter anyway?
--
nosy: +ppperry
versions: +Python 3.4
___
Python tracker
<http://bugs.python.org/issue26
Changes by ppperry :
--
title: Crashes when tarfile contains a symlink and unpack directory contain it
too -> The tarfile module crashes when tarfile contains a symlink and unpack
directory contain it too
___
Python tracker
<http://bugs.pyth
Changes by ppperry :
--
title: os.walk and os.fwalk yield namedtuple instead of tuple -> Make os.walk
and os.fwalk yield namedtuple instead of tuple
___
Python tracker
<http://bugs.python.org/issu
ppperry added the comment:
Terry, Your `how to reproduce` is more complicated than necessary. This bug can
be reproduced by just turning on the debugger in a python shell and typing
`raise SystemExit` then pressing step in the debugger.
--
versions: +Python 2.7
Changes by ppperry :
--
title: unittest fails with "Start directory is not importable" -> unittest
fails with "Start directory is not importable" when trying to run sourceless
tests
___
Python tracker
<http://
Changes by ppperry :
--
title: ctypes.xFUNCTYPE are decorators. -> Document that ctypes.xFUNCTYPE are
decorators.
___
Python tracker
<http://bugs.python.org/iss
ppperry added the comment:
This issue has worse consequences than I previously thought. It also affects
`KeyboardInterrupt` with worse consequences.
If you run a program raising `KeyboardInterrupt` in the debugger, the shell
will hang. Restarting the shell fixes this problem
Changes by ppperry :
--
title: make test crash in test_httpservers -> `make test` crashes in
test_httpservers
___
Python tracker
<http://bugs.python.org/issu
Changes by ppperry :
--
type: -> crash
___
Python tracker
<http://bugs.python.org/issue27054>
___
___
Python-bugs-list mailing list
Unsubscrib
ppperry added the comment:
I don't quite get why the memory address is helpful, but you could work around
this using a custom metaclass:
class IdMeta(type):
def __repr__(cls):
return super().__repr__()[:-1] + " at 0x%x>"%id(cls)
class IdInRepr(meta
ppperry added the comment:
Also, `OSError [Errno 0] Error` isn't the most helpful error message.
--
nosy: +ppperry
___
Python tracker
<http://bugs.python.org/is
ppperry added the comment:
Use tuples, frozensets, and bytes for the first three cases instead. I don't
quite see what the benefit of this is. It seems arbitrarily restrictive.
--
nosy: +ppperry
___
Python tracker
<http://bugs.python.org/is
ppperry added the comment:
Python is not the type of language in which one applies such memory
micro-optimizations. In any case, if you really need to do this, use a custom
class that subclasses `list` and overrides the modification methods to add a
check
New submission from ppperry:
In this code, one would expect that the entire traceback from the uncaught
recursion error would get put onto the queue, where it could be read in the
main process.
queue = multiprocessing.Queue()
def do_stderr(queue):
class f:
def write
Changes by ppperry :
--
nosy: +jnoller, sbt
___
Python tracker
<http://bugs.python.org/issue27081>
___
___
Python-bugs-list mailing list
Unsubscribe:
ppperry added the comment:
Replacing the first line with `queue = multiprocessing.SimpleQueue()` fixes
this issue.
--
___
Python tracker
<http://bugs.python.org/issue27
Changes by ppperry :
--
title: _bootlocale imports locale at startup on Android -> _bootlocale imports
locale at startup on Android, causing test_site to fail
___
Python tracker
<http://bugs.python.org/issu
Changes by ppperry :
--
title: Multiprocessing is not robust against sys.stderr changes ->
Multiprocessing is not robust against sys.stderr changes involving queues
___
Python tracker
<http://bugs.python.org/issu
Changes by ppperry :
--
versions: +Python 3.6
___
Python tracker
<http://bugs.python.org/issue27012>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from ppperry:
An AttributeError is raised when starting a new process with an object defined
in the interactive interpreter
>>>def test():print "test"
>>>test()
test
>>>from threading import Thread
>>>Thread(target=test).start
New submission from ppperry:
>>> import pdb, test3
>>> pdb.run("reload(test3)")
> (1)()
(Pdb) s
--Call--
> c:\documents and
> settings\perry\desktop\coding_projects\python\test3.py(1)()
-> foo = 7789
(Pdb) b 2
Breakpoint 1 at c:\documents and
settings\pe
Changes by ppperry :
--
title: Concrete object C API considered harmful to subclasses of builtin types
-> Concrete obect C API considered harmful to subclasses of builtin typesje
___
Python tracker
<http://bugs.python.org/issu
Changes by ppperry :
--
title: Concrete obect C API considered harmful to subclasses of builtin typesje
-> Concrete object C API considered harmful to subclasses of builtin typesje
___
Python tracker
<http://bugs.python.org/issu
Changes by ppperry :
--
title: Concrete object C API considered harmful to subclasses of builtin
typesje -> Concrete object C API considered harmful to subclasses of builtin
types
___
Python tracker
<http://bugs.python.org/issu
New submission from ppperry:
When reproducing issue24160 in IDLE, I saw this traceback:
Traceback (most recent call last):
File "", line 1, in
pdb.run("reload(test3)")
File "C:\Python27\lib\pdb.py", line 1238, in run
Pdb().run(statement, globals, l
New submission from ppperry:
When I run "python -m idlelib.idle -sc [command] from the command line, IDLE
runs the startup file, but then pops up an error message saying "the Python
Shell window is already executing a command;please wait until it is finished."
When the error w
Changes by ppperry :
--
type: -> behavior
___
Python tracker
<http://bugs.python.org/issue24265>
___
___
Python-bugs-list mailing list
Unsubscrib
Changes by ppperry :
--
title: This is a python file, apply syntax highlighting -> IDLE: allow syntax
highlighting of files without .py extension
___
Python tracker
<http://bugs.python.org/iss
Changes by ppperry :
--
assignee: -> docs@python
components: +Documentation
nosy: +docs@python
___
Python tracker
<http://bugs.python.org/issue10673>
___
_
Changes by ppperry :
--
title: Misleading Indentation -> Misleading Indentation in C source code
___
Python tracker
<http://bugs.python.org/issue28139>
___
_
Changes by ppperry :
--
components: -Tests
title: unittest assertEqual difference output foiled by newlines ->
difflib.ndiff produces unreadable output when input missing trailing newline
___
Python tracker
<http://bugs.python.org/issu
Changes by ppperry :
--
type: -> resource usage
___
Python tracker
<http://bugs.python.org/issue28165>
___
___
Python-bugs-list mailing list
Unsubscrib
Changes by ppperry :
--
type: -> compile error
___
Python tracker
<http://bugs.python.org/issue27806>
___
___
Python-bugs-list mailing list
Unsubscrib
201 - 236 of 236 matches
Mail list logo