[issue34284] Nonsensical exception message when calling `__new__` on non-instaniable objects

2018-08-04 Thread ppperry
ppperry added the comment: The problem doesn't just happen with `sys.flags`, though. It happens with all types that can't be created directly by python. Ex: frame objects, generators, cells, etc. The bug is that in types whose c-level tp_new is null, the python-level __new__ is

[issue33954] float.__format__('n') fails with _PyUnicode_CheckConsistency assertion error for locales with non-ascii thousands separator

2018-08-05 Thread ppperry
Change by ppperry : -- title: float.__format__('n') fails with _PyUnicode_CheckConsistency assertion error -> float.__format__('n') fails with _PyUnicode_CheckConsistency assertion error for locales with non-ascii thousands separator ___

[issue34362] User-created types with wrong __new__ can be instantiated

2018-08-08 Thread ppperry
New submission from ppperry : If you have a class that defines __new__ to the __new__ of another builtin type that it isn't a subclass of: >>> class X: ...__new__ = tuple.__new__ Instantiating this class should produce an error because `tuple.__new__` can't handle non-

[issue34362] User-created types with wrong __new__ can be instantiated

2018-08-08 Thread ppperry
ppperry added the comment: Whoops, realized this is a duplicate of issue5322. -- ___ Python tracker <https://bugs.python.org/issue34362> ___ ___ Python-bug

[issue5322] object.__new__ argument calling autodetection faulty

2018-08-08 Thread ppperry
Change by ppperry : -- title: Python 2.6 object.__new__ argument calling autodetection faulty -> object.__new__ argument calling autodetection faulty ___ Python tracker <https://bugs.python.org/iss

[issue34362] User-created types with wrong __new__ can be instantiated

2018-08-09 Thread ppperry
ppperry added the comment: issue5322, despite its confusing title, mentions this exact bug in one of the comments below. It looks like there is one bug in the logic for assigning `__new__`, which causes `__new__` and `tp_new` to point to different things, confusing the error-handling

[issue5322] object.__new__ argument calling autodetection faulty

2018-08-09 Thread ppperry
Change by ppperry : -- nosy: +ppperry ___ Python tracker <https://bugs.python.org/issue5322> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue19050] [Windows] fflush called on pointer to potentially closed file

2018-08-14 Thread ppperry
Change by ppperry : -- title: [Python 2, Windows] fflush called on pointer to potentially closed file -> [Windows] fflush called on pointer to potentially closed file ___ Python tracker <https://bugs.python.org/issu

[issue1529353] Squeezer - squeeze large output in IDLE

2018-08-15 Thread ppperry
Change by ppperry : -- title: Squeezer - squeeze large output in the interpreter -> Squeezer - squeeze large output in IDLE ___ Python tracker <https://bugs.python.org/issue1

[issue34467] No mechanism to abort created coroutine or suppress not-awaited warning

2018-08-22 Thread ppperry
ppperry added the comment: Does calling `coro.close()` not work? -- nosy: +ppperry ___ Python tracker <https://bugs.python.org/issue34467> ___ ___ Python-bug

[issue34284] Nonsensical exception message when calling `__new__` on non-instaniable objects

2018-09-02 Thread ppperry
ppperry added the comment: Also happens for some objects in the `_tkinter` module: >>> _tkinter.TkttType.__new__(_tkinter.TkttType) Traceback (most recent call last): File "", line 1, in _tkinter.TkttType.__new__(_tkinter.TkttType) TypeError: object.__new__(_tkinter.t

[issue14905] zipimport needs to support namespace packages when no 'directory' entry exists

2018-09-19 Thread ppperry
Change by ppperry : -- title: zipimport.c needs to support namespace packages when no 'directory' entry exists -> zipimport needs to support namespace packages when no 'directory' entry exists ___ Python tracker &

[issue34609] Importing certain modules while debugging raises an exception

2018-09-23 Thread ppperry
ppperry added the comment: The Pdb bug and the IDLE bug are unrelated to each other: Pdb fails because it is attempting to import the readline module every time its `trace_dispatch` is called, and the import implementation is not reentrant in that way. IDLE is crashing because the

[issue33065] IDLE debugger: problem importing user created module

2018-09-23 Thread ppperry
Change by ppperry : -- nosy: +ppperry ___ Python tracker <https://bugs.python.org/issue33065> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33065] IDLE debugger crashes when `repr` raises an exception

2018-09-23 Thread ppperry
Change by ppperry : -- title: IDLE debugger: problem importing user created module -> IDLE debugger crashes when `repr` raises an exception ___ Python tracker <https://bugs.python.org/issu

[issue34779] IDLE internals show up in tracebacks when returning objects that cannot be `repr`ed

2018-09-23 Thread ppperry
New submission from ppperry : >>> class NoRepr: def __repr__(self): raise ValueError >>> NoRepr() Traceback (most recent call last): File "", line 1, in NoRepr() File "C:\Program Files\Python37\lib\idlelib\rpc.py", line 617

[issue34782] Pdb crashes when code is executed in a mapping that does not define `__contains__`

2018-09-23 Thread ppperry
New submission from ppperry : class FakeContainer: def __getitem__(self, key) raise KeyError(key) pdb.run("pass",{},FakeContainer()) Traceback (most recent call last): File "", line 1, in pdb.run("pass",{},FakeContainer()) File

[issue34782] Pdb crashes when code is executed in a mapping that does not define `__contains__`

2018-09-23 Thread ppperry
Change by ppperry : -- type: -> behavior ___ Python tracker <https://bugs.python.org/issue34782> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue33065] IDLE debugger: failure stepping through module loading

2018-09-30 Thread ppperry
ppperry added the comment: Line 59 isn't actually executed; the error comes from the trace event that gets fired before line 59, which is the first `line` event in the frame containing the uninitialized _ModuleLock. -- nosy: +ppperry ___ P

[issue35098] Deleting __new__ does not restore previous behavior

2018-10-29 Thread ppperry
ppperry added the comment: This is a duplicate of issue25731 -- nosy: +ppperry ___ Python tracker <https://bugs.python.org/issue35098> ___ ___ Python-bugs-list m

[issue19675] Pool dies with excessive workers, but does not cleanup

2018-11-04 Thread ppperry
Change by ppperry : -- nosy: -ppperry ___ Python tracker <https://bugs.python.org/issue19675> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21986] Pickleability of code objects is inconsistent

2014-07-15 Thread ppperry
New submission from ppperry: In IDLE: >>> code = compile("dummy_code", "", "exec") >>> pickle.dumps(code) "cidlelib.rpc\nunpickle_code\np0\n(S'c\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x01\\x00\\x00\\x00@\\x00\\x00\\x00s\\x08\\x00\\

[issue21986] Pickleability of code objects is inconsistent

2014-07-15 Thread ppperry
Changes by ppperry : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue21986> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue21986] Pickleability of code objects is inconsistent

2014-07-16 Thread ppperry
Changes by ppperry : -- components: +Windows ___ Python tracker <http://bugs.python.org/issue21986> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21997] Pdb.set_trace debugging does not end correctly in IDLE

2014-07-17 Thread ppperry
New submission from ppperry: In IDLE: >>>def dodebug(): pdb.set_trace() >>>dodebug() --Return-- > (2)dodebug()->None (Pdb) s --Return-- > (1)()->None (Pdb) s PDB should exit, but it doesn't > c:\python27\lib\idlelib\ru

[issue21997] Pdb.set_trace debugging does not end correctly in IDLE

2014-07-17 Thread ppperry
Changes by ppperry : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue21997> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue21997] Pdb.set_trace debugging does not end correctly in IDLE

2014-07-17 Thread ppperry
Changes by ppperry : -- hgrepos: +264 nosy: +georg.brandl, terry.reedy -ppperry ___ Python tracker <http://bugs.python.org/issue21997> ___ ___ Python-bugs-list m

[issue21997] Pdb.set_trace debugging does not end correctly in IDLE

2014-07-17 Thread ppperry
Changes by ppperry : -- hgrepos: -264 ___ Python tracker <http://bugs.python.org/issue21997> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue16396] Importing ctypes.wintypes on Linux gives a ValueError instead of an ImportError

2017-01-01 Thread ppperry
Changes by ppperry : -- title: Importing ctypes.wintypes on Linux gives a traceback -> Importing ctypes.wintypes on Linux gives a ValueError instead of an ImportError ___ Python tracker <http://bugs.python.org/issu

[issue28952] csv.Sniffer().sniff(0) returns a value without the "strict" attribute

2017-01-01 Thread ppperry
Changes by ppperry : -- title: csv.Sniffer().sniff(0 returns a value without the "strict" attribute -> csv.Sniffer().sniff(0) returns a value without the "strict" attribute ___ Python tracker <http://

[issue29199] test_regrtest fails if PCBuild directory doesn't exist

2017-01-07 Thread ppperry
New submission from ppperry: == ERROR: test_pcbuild_rt (test.test_regrtest.ProgramsTestCase) -- Traceback (most recent call last): File "C:\Program Files

[issue29199] test_regrtest fails if PCBuild directory doesn't exist

2017-01-07 Thread ppperry
Changes by ppperry : -- components: +Tests ___ Python tracker <http://bugs.python.org/issue29199> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29199] test_regrtest fails if PCBuild directory doesn't exist

2017-01-07 Thread ppperry
Changes by ppperry : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue29199> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue29199] test_regrtest fails if PCBuild directory doesn't exist

2017-01-21 Thread ppperry
Changes by ppperry : -- nosy: +ezio.melotti, michael.foord ___ Python tracker <http://bugs.python.org/issue29199> ___ ___ Python-bugs-list mailing list Unsub

[issue27157] Unhelpful error message when one calls a subclass of type

2016-05-29 Thread ppperry
New submission from ppperry: >>>class x(type):pass >>> x(x) Traceback (most recent call last): File "", line 1, in x(x) TypeError: type() takes 1 or 3 arguments I am giving it one argument, and yet it's complaining that `type` expects one

[issue27158] `isnstance` builtin does not handle types that are their own type

2016-05-29 Thread ppperry
Changes by ppperry : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue27158> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue27158] `isnstance` function does not handle types that are their own type

2016-05-29 Thread ppperry
Changes by ppperry : -- title: `isnstance` builtin does not handle types that are their own type -> `isnstance` function does not handle types that are their own type ___ Python tracker <http://bugs.python.org/issu

[issue27158] `isnstance` builtin does not handle types that are their own type

2016-05-29 Thread ppperry
New submission from ppperry: If one executes the following statements: >>> class metatype(type):pass >>> class x(type,metaclass=metatype):pass >>> x.__class__ = x , one gets a type that is it's own type: (`type(x) is x`). However, `isinstance(x,x)` unexpect

[issue27158] `isinstance` function does not handle types that are their own type

2016-05-29 Thread ppperry
Changes by ppperry : -- title: `isnstance` function does not handle types that are their own type -> `isinstance` function does not handle types that are their own type ___ Python tracker <http://bugs.python.org/issu

[issue27158] `isinstance` function does not handle types that are their own type

2016-05-29 Thread ppperry
ppperry added the comment: Never mind this issue, I was confused when reporting. -- ___ Python tracker <http://bugs.python.org/issue27158> ___ ___ Python-bug

[issue27157] Unhelpful error message when one calls a subclass of type with a custom metaclass

2016-05-29 Thread ppperry
ppperry added the comment: This issue only happens when the type in question has a custom metaclass: >>> class meta(type):pass >>> class X(type,metaclass=meta):pass >>> X(X) [Same unhelpful TypeError] -- resolution: works for me -> status: closed -> op

[issue27157] Unhelpful error message when one calls a subclass of type with a custom metaclass

2016-05-29 Thread ppperry
ppperry added the comment: Also happens on 2.7, although you have to declare the metaclass using `__metaclass__ = meta` instead. -- versions: +Python 2.7 ___ Python tracker <http://bugs.python.org/issue27

[issue27157] Unhelpful error message when one calls an instance of a subclass of type

2016-05-29 Thread ppperry
ppperry added the comment: Further testing reveals that this issue has nothing to do with metaclasses: >>>class X(type):pass >>>X()(X) raises the same TypeError. Even if the possibly dubious feature of being able to call instances of subclasses of type with one argument is r

[issue27157] Unhelpful error message when one calls a subclass of type with a custom metaclass

2016-05-29 Thread ppperry
ppperry added the comment: Ignore the first part of my previous comment; I improperly tested that. -- title: Unhelpful error message when one calls an instance of a subclass of type -> Unhelpful error message when one calls a subclass of type with a custom metacl

[issue27157] Unhelpful error message when one calls a subclass of type with a custom metaclass

2016-05-29 Thread ppperry
ppperry added the comment: steven.daprano, you don't appear to have properly read the issue comments. I originally underspecified the conditions necessary to reproduce this, producing Emanuel Barry's closure. I then added a proper reproducer in the third comment, which does w

[issue27137] Python implementation of `functools.partial` is not a class

2016-05-30 Thread ppperry
Changes by ppperry : -- title: functools.partial: Inconsistency between Python and C implementations -> Python implementation of `functools.partial` is not a class ___ Python tracker <http://bugs.python.org/issu

[issue27159] Python 3.5.1's websocket's lib crashes in event that internet connection stops.

2016-05-30 Thread ppperry
ppperry added the comment: This issue should really be split into (at least) four seperate issues. The third problem (reloading relatively imported modules), can be done by doing `someclass = getattr(importlib.reload(sys.modules[someclass.__module__]),someclass.__name__)`. It also has

[issue27215] Docstrings of Sequence and MutableSequence seems not right

2016-06-04 Thread ppperry
Changes by ppperry : -- assignee: -> docs@python components: +Documentation nosy: +docs@python ___ Python tracker <http://bugs.python.org/issue27215> ___ _

[issue27215] Docstrings of Sequence and MutableSequence seems not right

2016-06-04 Thread ppperry
Changes by ppperry : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue27215> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue27081] Cannot capture sys.stderr output from an uncaught exception in a multiprocessing Process using a multiprocessing Queue

2016-06-07 Thread ppperry
Changes by ppperry : -- title: Multiprocessing is not robust against sys.stderr changes involving queues -> Cannot capture sys.stderr output from an uncaught exception in a multiprocessing Process using a multiprocessing Queue ___ Python trac

[issue26839] Python 3.5 running on Linux kernel 3.17+ can block at startup or on importing the random module on getrandom()

2016-06-08 Thread ppperry
Changes by ppperry : -- title: Python 3.5 running on Linux kernel 3.17+ can block at startup or on importing /arguinthe random module on getrandom() -> Python 3.5 running on Linux kernel 3.17+ can block at startup or on importing the random module on getran

[issue27291] two heap corruption issues when running modified pyc code.

2016-06-11 Thread ppperry
Changes by ppperry : -- title: two heap corruption issue -> two heap corruption issues when running modified pyc code. ___ Python tracker <http://bugs.python.org/issu

[issue27263] Tkinter sets the HOME environment variable, breaking scripts

2016-06-11 Thread ppperry
Changes by ppperry : -- components: -IDLE ___ Python tracker <http://bugs.python.org/issue27263> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25733] Code and IDLE should catch all compile errors.

2016-06-11 Thread ppperry
ppperry added the comment: OverflowError is raised when one attempts to compile a string of 2**31 or more characters. -- ___ Python tracker <http://bugs.python.org/issue25

[issue27263] Tkinter sets the HOME environment variable, breaking scripts

2016-06-11 Thread ppperry
Changes by ppperry : -- nosy: -ppperry ___ Python tracker <http://bugs.python.org/issue27263> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20916] ssl.enum_certificates() will not return all certificates trusted by Windows

2016-06-12 Thread ppperry
Changes by ppperry : -- components: +Windows nosy: +paul.moore, tim.golden, zach.ware ___ Python tracker <http://bugs.python.org/issue20916> ___ ___ Python-bug

[issue27314] Cannot install 3.5.2 with 3.6.0a1 installed

2016-06-15 Thread ppperry
Changes by ppperry : -- components: +Installation ___ Python tracker <http://bugs.python.org/issue27314> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26686] email.parser stops parsing headers too soon when given a defective message.

2016-06-29 Thread ppperry
Changes by ppperry : -- title: email.parser stops parsing headers too soon. -> email.parser stops parsing headers too soon when given a defective message. ___ Python tracker <http://bugs.python.org/issu

[issue27363] Complex numbers with negative zero imaginary parts do not roundtrip properly

2016-06-29 Thread ppperry
Changes by ppperry : -- title: Complex with negative zero imaginary part -> Complex numbers with negative zero imaginary parts do not roundtrip properly ___ Python tracker <http://bugs.python.org/issu

[issue26226] Various test suite failures on Windows when computer name contains a non-ascii character

2016-06-30 Thread ppperry
Changes by ppperry : -- title: Various test suite failures on Windows -> Various test suite failures on Windows when computer name contains a non-ascii character ___ Python tracker <http://bugs.python.org/issu

[issue27081] Cannot capture sys.stderr output from an uncaught exception in a multiprocessing Process using a multiprocessing Queue

2016-07-02 Thread ppperry
ppperry added the comment: I believe that regardless of the number of prints to sys.stderr that happen before the recursion error, all of them will get sent to the parent. The problem is that the queue is flushed before the uncaught error is sent to stderr, not after

[issue27081] Cannot capture sys.stderr output from an uncaught exception in a multiprocessing Process using a multiprocessing Queue

2016-07-02 Thread ppperry
ppperry added the comment: This issue isn't specific to recursion errors. It only occurs when the error message is long enough, so #26823 would fix the RecursionError case, but it would still happen when someone calls a function with a billion-character-long name that raises an error

[issue27363] Complex numbers with negative zero parts do not roundtrip properly

2016-07-02 Thread ppperry
Changes by ppperry : -- title: Complex numbers with negative zero imaginary parts do not roundtrip properly -> Complex numbers with negative zero parts do not roundtrip properly ___ Python tracker <http://bugs.python.org/issu

[issue27448] Race condition in subprocess.Popen which causes a huge memory leak

2016-07-04 Thread ppperry
ppperry added the comment: What are you doing that creates so many circular references that the not collecting them causes a massive memory leak? Or are you using an alternative implementation of Python? In addition, your monkeypatching is incorrect. `subprocess.gc` is the same object as the

[issue27451] gzip.py: Please save more of the gzip header for later examination

2016-07-04 Thread ppperry
Changes by ppperry : -- versions: -Python 2.7, Python 3.5 ___ Python tracker <http://bugs.python.org/issue27451> ___ ___ Python-bugs-list mailing list Unsub

[issue27157] Unhelpful error message when one calls a subclass of type with a custom metaclass

2016-07-13 Thread ppperry
ppperry added the comment: Ping -- ___ Python tracker <http://bugs.python.org/issue27157> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue27514] SystemError when compiling deeply nested for loops

2016-07-14 Thread ppperry
New submission from ppperry: The following code: for a in range(26): for b in range(26): for c in range(26): for d in range(26): for e in range(26): for f in range(26): for g in range(26): for h in range(26): for i in range(26): for j in

[issue25733] Code and IDLE should catch all compile errors.

2016-07-14 Thread ppperry
ppperry added the comment: >SystemError is serious bug. Please open separate issue for this. Done. I created issue27514 -- ___ Python tracker <http://bugs.python.org/issu

[issue27613] Empty iterator with fake __len__ is rendered as a single bracket ] when using json's iterencode

2016-07-29 Thread ppperry
Changes by ppperry : -- title: Empty iterator is rendered as a single bracket ] when using json's iterencode -> Empty iterator with fake __len__ is rendered as a single bracket ] when using json's iterencode ___ Python t

[issue25564] Document that IDLE behaves differently than python on `del __builtins__`

2016-08-24 Thread ppperry
Changes by ppperry : -- title: IDLE behaves differently than python on `del __builtins__` -> Document that IDLE behaves differently than python on `del __builtins__` ___ Python tracker <http://bugs.python.org/issu

[issue21997] Pdb.set_trace debugging does not end correctly

2016-08-24 Thread ppperry
ppperry added the comment: This issue seems to have languished for over two years. -- nosy: +ppperry ___ Python tracker <http://bugs.python.org/issue21

[issue12029] Allow catching virtual subclasses in except clauses

2016-08-24 Thread ppperry
Changes by ppperry : -- title: Catching virtual subclasses in except clauses -> Allow catching virtual subclasses in except clauses ___ Python tracker <http://bugs.python.org/issu

[issue25564] Document IDLE -python difference for `del __builtins__`

2016-08-24 Thread ppperry
Changes by ppperry : -- title: Document that IDLE -python difference for `del __builtins__` -> Document IDLE -python difference for `del __builtins__` ___ Python tracker <https://bugs.python.org/issu

[issue25564] Document IDLE -python difference for `del __builtins__`

2016-08-24 Thread ppperry
Changes by ppperry : -- title: Document IDLE -python difference for `del __builtins__` -> Document IDLE -python difference for `del __builtins__` ___ Python tracker <https://bugs.python.org/issu

[issue22664] IDLE: Standard output and error from multiprocessing vanishes

2014-10-17 Thread ppperry
New submission from ppperry: Note: not sure whether this issue belongs as a "behavior" or an "enhancement" In IDLE: >>> def print_a_test_string(): print "test" >>>print_a_test_string() test >>>threading.Thread(target=print_a_te

[issue22664] IDLE: Standard output and error from multiprocessing vanishes

2014-10-18 Thread ppperry
Changes by ppperry : -- nosy: +kbk, roger.serwy, terry.reedy -ppperry ___ Python tracker <http://bugs.python.org/issue22664> ___ ___ Python-bugs-list mailin

[issue11820] idle3 shell os.system swallows shell command output

2014-10-18 Thread ppperry
ppperry added the comment: The same lack of output occurs from processes started via the multiprocessing module. -- nosy: +ppperry versions: +Python 2.7 ___ Python tracker <http://bugs.python.org/issue11

[issue24252] IDLE removes elements from tracebacks.

2015-06-02 Thread ppperry
ppperry added the comment: This problem also occurs in other situati, such as when trying to get items from an empty queue >>> import Queue >>> Q = Queue.Queue() >>> q.get_nowait() Traceback (most recent call last): File "", line 1, in q.get_nowait()

[issue24367] Idle hangs when you close the debugger while debugging

2015-06-02 Thread ppperry
New submission from ppperry: [DEBUG ON] >>> some_code (debugger closed before pressing any buttons) [DEBUG OFF] >>> more_code (no response) -- components: IDLE messages: 244707 nosy: kbk, ppperry, roger.serwy, terry.reedy priority: normal severity: normal status: open

[issue24252] IDLE removes elements from tracebacks.

2015-06-06 Thread ppperry
ppperry added the comment: Is there any reason why the end of the traceback, rather then just the beginning, needs to be pruned in the first place? Additionally, the "search for pdb in the tb" method will still undesirably prune the traceback if someone invents there own buggy deb

[issue24252] IDLE removes elements from tracebacks.

2015-06-06 Thread ppperry
ppperry added the comment: Another example of this overzealous removing is when you create a module named rpc, run, RemoteDebugger, or bdb. For example (in this environment, a file in the current directory named rpc.py exists and refers to the undefined name "bar"): >>>i

[issue24252] IDLE removes elements from tracebacks.

2015-06-08 Thread ppperry
ppperry added the comment: Your proposed patch does not work in its current form on my IDLE, but it does if I change tr[0][:-6] to tr[0][-6:] in the pdb checking code. Additionally, my proposed cleanup function did distinguish the difference between the unix and windows directory seperators

[issue24252] IDLE removes elements from tracebacks.

2015-06-08 Thread ppperry
ppperry added the comment: I mean if someone starts a new copy of idle from within the IDLE python shell itself by "The only situation that this function would behave wrongly is when someone launches IDLE from the shell (Why would they do

[issue25560] Unhandled warning in test_unicode_file

2015-11-05 Thread ppperry
New submission from ppperry: >python -Wall -m test.regrtest test_unicode_file [1/1] test_unicode_file C:\Python27\lib\shutil.py:64: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal os.path.normcase(os.path.abspath(

[issue25563] Windows 10 IDLE / Tkinter startup problem

2015-11-05 Thread ppperry
ppperry added the comment: This might be a duplicate of issue8820 -- nosy: +ppperry ___ Python tracker <http://bugs.python.org/issue25563> ___ ___ Python-bug

[issue25563] Windows 10 IDLE / Tkinter startup problem

2015-11-05 Thread ppperry
Changes by ppperry : -- nosy: -ppperry ___ Python tracker <http://bugs.python.org/issue25563> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25564] IDLE behaves differently that the standard interpreter when someone types `del __builtins__`

2015-11-05 Thread ppperry
New submission from ppperry: In IDLE the following code silently works: >>> del __builtins__ >>> min In the standard interpreter, it produces an error: >>> del __builtins__ >>> min Traceback (most recent call last): File "", line 1, in NameErro

[issue25564] IDLE behaves differently that the standard interpreter when someone types `del __builtins__`

2015-11-05 Thread ppperry
ppperry added the comment: If you type `del __builtins__;min` an error is raise in both IDLE and the standard interpreter. -- ___ Python tracker <http://bugs.python.org/issue25

[issue25564] IDLE behaves differently that the standard interpreter when someone types `del __builtins__`

2015-11-05 Thread ppperry
Changes by ppperry : -- versions: +Python 2.7 ___ Python tracker <http://bugs.python.org/issue25564> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25564] IDLE behaves differently that the standard interpreter when someone types `del __builtins__`

2015-11-05 Thread ppperry
ppperry added the comment: `del __builtins__;min` only fails in IDLE if someone has previously set `__builtins__ to something else. >>>__builtins__ = 7 >>> min Traceback (most recent call last): File "", line 1, in min NameError: name 'min'

[issue25336] Segmentation fault on Mavericks consistent crashing of software

2015-11-06 Thread ppperry
Changes by ppperry : -- title: Segmentation fault on Mavericks consistent crashing of software: Please HELP! -> Segmentation fault on Mavericks consistent crashing of software ___ Python tracker <http://bugs.python.org/issu

[issue25581] Python -U fails with traceback

2015-11-07 Thread ppperry
New submission from ppperry: C:\Documents and Settings\Perry>python -U Traceback (most recent call last): File "C:\Python27\lib\site.py", line 548, in main() File "C:\Python27\lib\site.py", line 537, in main aliasmbcs() File "C:\Python27\lib\site

[issue25581] Python -U raises error during site import

2015-11-07 Thread ppperry
Changes by ppperry : -- components: +Interpreter Core, Library (Lib), Regular Expressions nosy: +ezio.melotti, mrabarnett title: Python -U fails with traceback -> Python -U raises error during site import type: -> behavior versions: +Pyth

[issue3559] IDLE does not handles pasted multiline statements

2015-11-07 Thread ppperry
Changes by ppperry : -- title: Pasted \n not same as typed \n -> IDLE does not handles pasted multiline statements ___ Python tracker <http://bugs.python.org/iss

[issue3559] IDLE: Pasted newline doesn't trigger execution when typed newline would

2015-11-07 Thread ppperry
Changes by ppperry : -- title: IDLE: Pasted \n doesn't trigger execution when typed \n would -> IDLE: Pasted newline doesn't trigger execution when typed newline would ___ Python tracker <http://bugs.pyth

[issue25733] Idle does not handle non-standard compile errors

2015-11-25 Thread ppperry
New submission from ppperry: The following code: for a in range(26): for b in range(26): for c in range(26): for d in range(26): for e in range(26): for f in range(26): for g in range(26): for h in range(26): for i in range(26): for j in

[issue25733] Idle does not handle non-standard compile errors

2015-11-25 Thread ppperry
Changes by ppperry : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue25733> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue25733] Idle does not handle non-standard compile errors

2015-11-27 Thread ppperry
ppperry added the comment: A similar problem occurs with the TypeError produced by attempting to compile a null byte. -- ___ Python tracker <http://bugs.python.org/issue25

[issue25733] Idle does not handle non-standard compile errors

2015-11-27 Thread ppperry
ppperry added the comment: Why does compile not support null bytes in the first place? -- ___ Python tracker <http://bugs.python.org/issue25733> ___ ___ Python-bug

[issue25961] Disallow the null character in type name

2015-12-29 Thread ppperry
ppperry added the comment: Why are null bytes being excluded from type names in the first place? -- nosy: +ppperry ___ Python tracker <http://bugs.python.org/issue25

<    1   2   3   >