Daniel Diniz added the comment:
As Victor notes, this is a controversial issue. And I'll add that the need for
this feature seems not to have been brought up up in over a decade. So I'm
closing this.
--
resolution: -> rejected
stage: patch review -> resolved
status
Change by Daniel Diniz :
--
nosy: +iritkatriel
___
Python tracker
<https://bugs.python.org/issue1182143>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Daniel Diniz :
--
nosy: +ajaksu2
versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.7
___
Python tracker
<https://bugs.python.org/issue766
Change by Daniel Diniz :
--
keywords: +patch
nosy: +ajaksu2
nosy_count: 4.0 -> 5.0
pull_requests: +28355
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/30135
___
Python tracker
<https://bugs.python.org/i
Daniel Diniz added the comment:
I have tried to add this. The PR adds:
- PrettyPrinter._pprint_dict_view to handle dict_keys and dict_values (sorted
with _safe_key).
= PrettyPrinter._pprint_dict_items_view to handle dict_items (sorted using
_safe_tuple).
- Tests.
Would a NEWS entry or other
Change by Daniel Diniz :
--
versions: +Python 3.11 -Python 3.5
___
Python tracker
<https://bugs.python.org/issue1062277>
___
___
Python-bugs-list mailin
Change by Daniel Diniz :
--
versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.4, Python
3.5
___
Python tracker
<https://bugs.python.org/issue9
Change by Daniel Diniz :
--
versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.4, Python
3.5
___
Python tracker
<https://bugs.python.org/issue678
Daniel Diniz added the comment:
That happens because EncodingWarning isn't highlighted as an Exception by
Pygments[0]. The doc page gets its exceptions diagram by:
".. literalinclude:: ../../Lib/test/exception_hierarchy.txt"
and all other entries are recognized by Pygments, so
Change by Daniel Diniz :
--
versions: +Python 3.10, Python 3.11 -Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issue23224>
___
___
Python-bug
Daniel Diniz added the comment:
This example was added in issue 43047. It only seems to affect 3.10+ docs. Ian,
is this something you'd like to tackle?
--
keywords: +easy
nosy: +ajaksu2, iwienand
stage: -> needs patch
versions: +Python 3.10, Python 3.11 -Py
Change by Daniel Diniz :
--
nosy: +ajaksu2
versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.3, Python
3.4
___
Python tracker
<https://bugs.python.org/issue504
Daniel Diniz added the comment:
Confirmed for 3.11 in Windows.
The C datetime code can be trivially fixed so your equality test returns True,
but there are two Python tests that depend on current behavior so it might not
be so easy. They were added with current code in issue 24773, to
Change by Daniel Diniz :
--
nosy: +belopolsky
___
Python tracker
<https://bugs.python.org/issue46169>
___
___
Python-bugs-list mailing list
Unsubscribe:
Daniel Diniz added the comment:
Confirmed on Python 3.11.0a3+, assuming older versions also affected. This
issue has different versions of tests to confirm it, but I think not in a test
suite-friendly format yet.
There's also a patch and detailed analysis by gpolo indicating that it
Change by Daniel Diniz :
--
keywords: -easy
versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.3
___
Python tracker
<https://bugs.python.org/issue1438
Daniel Diniz added the comment:
Now that a PR has landed in #28806 to improve shlex, we need to check whether
this issue can/needs to move forward.
--
nosy: +ajaksu2, asvetlov
type: -> behavior
versions: +Python 3.10, Python 3.11, Python 3.9 -Python
Change by Daniel Diniz :
--
versions: +Python 3.10, Python 3.11
___
Python tracker
<https://bugs.python.org/issue7687>
___
___
Python-bugs-list mailing list
Unsub
Change by Daniel Diniz :
--
versions: +Python 3.11 -Python 3.4, Python 3.5, Python 3.6
___
Python tracker
<https://bugs.python.org/issue25044>
___
___
Python-bug
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
FWIW, rev58032 introduced this:
tstate = PyThreadState_GET();
if (++tstate->recursion_depth > Py_GetRecursionLimit()) {
--tstate->recursion_depth;
PyErr_SetObject(PyExc_RuntimeError, PyExc_Rec
New submission from Daniel Diniz <[EMAIL PROTECTED]>:
The following code works[1] on trunk and 2.5.1, but crashes with "Fatal
Python error: Cannot recover from stack overflow," on py3k as of rev65676:
##
# Python 3.0b2+ (py3k:65676, Aug 14 2008, 14:37:38)
# [GCC 4.1.3 2007
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Antoine,
Thanks for your analysis. I still believe this is a regression for the
case described, but take my opinion with a grain of salt :)
>> looking at the code for _Py_CheckRecursiveCall(), I don't think it
>> is a
Changes by Daniel Diniz <[EMAIL PROTECTED]>:
--
nosy: +ajaksu2
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3605>
___
___
Python
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Two small clues.
First, a backtrace:
#0 0xb7df102a in strcmp () from /lib/tls/i686/cmov/libc.so.6
#1 0x0809e678 in warn_explicit (category=0x81dd140, message=0xb7ac58f4,
filename=0xb7acced0, lineno=1, module=0xb7f53300,
re
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Brett,
I don't think I know C (and CPython) enough to fix this. I was able to
get rid of this specific segfault with this:
-const char *text_char = _PyUnicode_AsString(text);
+const char *text_char =
_PyUnico
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Antoine,
All the cases I could find would be more "test" than "use" cases. Given
that most ways to abort I find in 3.0 are related to "undetected error"s
in trunk, I'm almost convinced that 3.0 is rig
Changes by Daniel Diniz <[EMAIL PROTECTED]>:
--
nosy: +ajaksu2
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3643>
___
___
Python
New submission from Daniel Diniz <[EMAIL PROTECTED]>:
Calling sys.excepthook(1,'1',1) crashes 3.0:
Python 3.0b3+ (py3k:65987, Aug 23 2008, 10:04:31)
[GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2
Type "help", "copyright", "c
New submission from Daniel Diniz <[EMAIL PROTECTED]>:
The following code causes a segfault for me:
import sys; sys.call_tracing(type,2)
Running on:
Python 3.0b3+ (py3k:66015, Aug 24 2008, 16:21:19)
[GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2
gdb output:
[New
New submission from Daniel Diniz <[EMAIL PROTECTED]>:
This snippet causes a segfault from fileio_init calling PyMem_Free:
import _fileio; _fileio._FileIO("1",0, 0 )
Found using Fusil
[Switching to Thread -1210070848 (LWP 10184)]
0x0805f5ff in _PyObject_DebugCheckAddress (
New submission from Daniel Diniz <[EMAIL PROTECTED]>:
This script segfaults:
##
import _pickle
obj = _pickle.Pickler(open("/bin/ls")) #can be open(__file__) for scripts
try: obj.__init__('pouet', 87)
except Exception as err: pass
obj.dump(0)
###
[Switching to Thr
New submission from Daniel Diniz <[EMAIL PROTECTED]>:
The following crashes the interpreter on exit:
import sys, atexit; atexit.register(lambda: 1, 0, 0, (x for x in (1,2)),
0, 0); sys.exit()
Found with Fusil.
--
messages: 71862
nosy: ajaksu2
severity: normal
status: open
Changes by Daniel Diniz <[EMAIL PROTECTED]>:
--
nosy: +ajaksu2
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3638>
___
___
Python
Changes by Daniel Diniz <[EMAIL PROTECTED]>:
--
nosy: +ajaksu2
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3634>
___
___
Python
New submission from Daniel Diniz <[EMAIL PROTECTED]>:
The following code leads to XXX Undetected errors in debug builds of
trunk and 3.0:
import _struct
_struct.pack_into(b"8", bytearray(1), None)
Besides that, there's something fishy happening in non-debug builds:
2.6:
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
I believe the problem is that list comprehensions in 3.0 have scope like
that of genexprs in 2.5, but the change was deliberate (as it also
avoids leaking of temp variables).
Compare to 2.5:
>>> class Foo(object):
...class
Changes by Daniel Diniz <[EMAIL PROTECTED]>:
--
nosy: +ajaksu2
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3623>
___
___
Python
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Patch attached, suggested test below.
def test_readline():
for mode in ('r', 'rb', 'r+', 'r+b'):
f = open(__file__, mode)
try:
f.readline(0.1)
New submission from Daniel Diniz <[EMAIL PROTECTED]>:
Calling os.urandom(1 + float(x)) ends in a infinite loop due to a naive
condition check:
while len(bytes) < n:
bytes += read(_urandomfd, n - len(bytes))
Trivial patch attached.
--
components: Library (Lib)
files: ura
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Hagen,
does this simple patch (against 2.6) solve it for you?
Index: Lib/pickle.py
===
--- Lib/pickle.py (revision 66050)
+++ Lib/pickle.py (working copy)
@@ -
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
FWIW, there's a mapping of 2.6:3.0 modules in lib2to3:
from lib2to3.fixes.fix_imports import MAPPING
The attached patch uses that for a quick and dirty way of loading 3.0
pickles in 2.6.
--
keywords: +patch
Added
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
ISTM that this release blocker can be solved by changing
xml.sax.xmlreader.py line 122 from:
while buffer != "":
to
while buffer != b"":
--
nosy: +ajaksu2
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Gregory,
IMHO your patch is better in all aspects.
Regarding my patch, the API wouldn't change at all, as the source reads:
while len(bytes) < int(n):
bytes += read(_urandomfd, n - len(bytes))
So "n - le
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
This patch fixes Armin's list of crashers for trunk. Looking for others
like them.
--
nosy: +ajaksu2
versions: +Python 2.6
Added file: http://bugs.python.org/file11311/itercrashers.diff
___
Changes by Daniel Diniz <[EMAIL PROTECTED]>:
Removed file: http://bugs.python.org/file11311/itercrashers.diff
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Hopefully the right patch this time :/
Added file: http://bugs.python.org/file11312/itercrashers.diff
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Raymond, I think a different solution would be great, as the performance
penalty might become nasty in tight loops if we miss some detail.
Regarding the possible impact, I hope we can get a better estimate since
the other examp
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Looks like this is a duplicate of issue3590, so this patch fixes two
release blockers ;)
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Changes by Daniel Diniz <[EMAIL PROTECTED]>:
--
nosy: +ajaksu2
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2016>
___
___
Python
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
#66363 breaks test_unicode and test_format on 3.0.
--
nosy: +ajaksu2
versions: +Python 3.0
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
New submission from Daniel Diniz <[EMAIL PROTECTED]>:
The attached script reports C functions not flexed by unittests. It
needs a 'coverage' build and a run of the tests. Coverage data is then
passed to gcov and those functions with zero calls written to a text
file, groupe
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Here's example output of a run against 3.0. The number after a function
name is its length in lines (as gcov counts them :).
False positives include:
./Objects/weakrefobject.c gc_clear
./Modules/readline.c on_completion_display_m
Changes by Daniel Diniz <[EMAIL PROTECTED]>:
--
nosy: +ajaksu2
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3321>
___
___
Python
Changes by Daniel Diniz <[EMAIL PROTECTED]>:
--
nosy: +ajaksu2
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1681984>
___
__
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
I would love to have this patch, along with those of #3631 and #3610,
included in Misc as diffs. This would make it easier to get the improved
functionality in a new development box, besides allowing distributions
to apply them a
Daniel Diniz added the comment:
Hi Stephane,
I think you're seeing different buffering behavior, which I suspect is correct
according to docs.
codecs.open should default to line buffering[1], while open uses the system
default[2].
The read() where the assert fails is returnin
Daniel Diniz added the comment:
Nice buglet, please take a look at Lib/pydoc.py to follow :)
As you point out, this is issue 1700304.
'plainpager', which outputs the help in these cases, uses
'sys.stdout.write(plain(text))', but Helper.help has a
"self.outp
Daniel Diniz added the comment:
>From #8198:
I see a solution by turning Helper.output into a property, but it smells of
over-engineering :) Passing all output to pagers should work too, unless we
need Helper.output as a sort of sys.stderr.
--
keywords: +easy
nosy: +ajak
Daniel Diniz added the comment:
Thanks for the patch, LGTM assuming we don't need a test for this.
Do you think the vague message could be less cryptic for users that didn't want
lookbehind (or don't know what it is)?
--
nosy: +ajaksu2
priority: -> low
stage
Daniel Diniz added the comment:
Confirmed in trunk and py3k. Also affects inspect.getsourcelines.
--
nosy: +ajaksu2
priority: -> normal
stage: -> patch review
___
Python tracker
<http://bugs.python.org/
Daniel Diniz added the comment:
I think the obvious code fix of list(map()) is less likely to cause surprises
than updating the docstring to the new map in 3.x.
--
keywords: +easy
nosy: +ajaksu2
priority: -> low
stage: -> needs patch
type: ->
Daniel Diniz added the comment:
Hits from py3k:
Doc/library/urllib.rst:239: Convert a mapping object or a sequence of
two-element tuples to a "url-encoded"
Doc/library/urllib.rst:263: Convert the path component *path* from an encoded
URL to the local syntax for a
D
Daniel Diniz added the comment:
sys.stdout is a idlelib.rpc.RPCProxy in IDLE. It calls
Idlelib.PyShell.PseudoFile.write ->
.PyShell.write ->
.OutputWindow.OutputWindow.write ->
.Percolator.Percolator.insert ->
...
I suppose we could mimic the return value patching PseudoFil
Daniel Diniz added the comment:
Thanks for the patch. Per issue 2849, use of rfc822 should be gone from the
stdlib. Please re-open if you disagree.
--
nosy: +ajaksu2
priority: -> normal
resolution: -> invalid
stage: -> committed/rejected
status: open
Daniel Diniz added the comment:
Nice improvement. This would also solve the "help(), modules" brokenness, right?
--
nosy: +ajaksu2
priority: -> normal
stage: -> test needed
type: -> behavior
___
Python tracker
<http://bug
Daniel Diniz added the comment:
Patch still applies to py3k, not applying cleanly to trunk anymore. Tests pass
with patch on py3k.
--
nosy: +ajaksu2
priority: -> normal
stage: -> patch review
___
Python tracker
<http://bugs.python.org/
Daniel Diniz added the comment:
It looks like feed generators need this feature[1]. See also issue 5207 and a
current implementation[2].
[1] http://validator.w3.org/feed/docs/error/InvalidRFC3339Date.html
[2] http://code.google.com/p/formattime/
--
keywords: +easy
nosy: +ajaksu2
Daniel Diniz added the comment:
Wouldn't this break code that currently works?
--
nosy: +ajaksu2
priority: -> low
stage: -> needs patch
type: -> behavior
versions: -Python 2.5
___
Python tracker
<http://bugs.pyt
Daniel Diniz added the comment:
Change went into py3k without tests, do we want them? If so, please update
Stage to "test needed".
--
nosy: +ajaksu2
priority: -> normal
stage: -> patch review
___
Python tracker
<http://bugs.p
Changes by Daniel Diniz :
--
priority: -> normal
stage: -> test needed
___
Python tracker
<http://bugs.python.org/issue7943>
___
___
Python-bugs-list
Daniel Diniz added the comment:
Confirmed on trunk.
--
nosy: +ajaksu2
priority: -> normal
stage: -> test needed
versions: +Python 2.7
___
Python tracker
<http://bugs.python.org/
Daniel Diniz added the comment:
Skip, was there a patch here? I can't find it in the bug lists, so I think we
both missed it?
Pinging Martin in case the tracker ate the patch :)
--
nosy: +ajaksu2, loewis
stage: -> needs patch
versions: +Python 2.7, Py
Daniel Diniz added the comment:
Confirmed on trunk, needs a simpler repro :)
--
components: +Library (Lib) -None
nosy: +ajaksu2
priority: -> normal
stage: -> test needed
versions: +Python 2.6, Python 2.7 -Python 2.5
___
Python tracker
Changes by Daniel Diniz :
--
stage: unit test needed -> patch review
___
Python tracker
<http://bugs.python.org/issue7559>
___
___
Python-bugs-list mai
Changes by Daniel Diniz :
--
priority: -> normal
stage: -> patch review
___
Python tracker
<http://bugs.python.org/issue8370>
___
___
Python-bugs-list
Changes by Daniel Diniz :
--
nosy: +ajaksu2
stage: unit test needed -> patch review
___
Python tracker
<http://bugs.python.org/issue8297>
___
___
Python-
New submission from Daniel Diniz <[EMAIL PROTECTED]>:
Currently, Modules/itertoolsmodule.c lines 2471-2475 are:
PyDoc_STRVAR(permutations_doc,
"permutations(iterables[, r]) --> permutations object\n\
\n\
Return successive r-length permutations of elements in the iterable.\n\n
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
This patch updates the behavior as per "The Energy Policy Act of 2005":
Start: Second Sunday in March
End: First Sunday in November
Time: 2 am local time
--
keywords: +patch
nosy: +ajaksu2
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Not a bug IMHO, but a gotcha. Change x.py to "from pack import y as q"
and you get the desired result. Check
http://effbot.org/zone/import-confusion.htm
--
nosy: +ajaksu2
__
Tracker &
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
The test fails on this:
def g():
try:
return g()
except ValueError:
return -1
self.assertRaises(RuntimeError, g)
Changing that "return -1" to "return sys.exc_info()" shows that a
RuntimeErr
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
That was a such silly mistake, sorry :)
Updated patch tries to keep the old behavior, but I just found out it's
mostly wrong too (DST start and end days changed a bit in the last 80
years).
>From http://aa.usno.nav
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Er...
2007- : from the second Sunday in March to the first Sunday in November.
:/
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Changes by Daniel Diniz <[EMAIL PROTECTED]>:
Removed file: http://bugs.python.org/file9926/tzinfo-examples.patch
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Thomas: I confirm your patch triggers this behavior. I can reliably get
a __subclasscheck__ error by trying to "import sys" after the bogus
catching happens:
>>> def g():
... try:
... return g()
... except V
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
The tests pass and prints the ignores. But I still see an issue:
import sys
def g():
try:
return g()
except:
return sys.exc_info()
>>> g()
(, 'maximum recursion depth exceeded
while cal
Changes by Daniel Diniz <[EMAIL PROTECTED]>:
--
nosy: +ajaksu2
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2548>
__
___
Python-bugs-list mailing
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
New patch. I added the new rule and changed the old behavior to be wrong
(a bit) less often. It may mess with code that depended on the previous
wrong results. Given the (AFAIK) exemplificative nature of this file,
this should not be
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Well, this issue is still hurting performance, the most recent example
was with a developer of a download manager.
I suggest adding a buffer size argument to HTTPResponse.__init__
(defaulting to zero), along with docs that explain the pr
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
I've identified rev58032 [1] as the one introducing this issue. It's
Brett's code, fixing a nasty crasher and adding a pre-built exception
(PyExc_RecursionErrorInst).
[1] http://svn.python.org/view?rev=58032&view=rev
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Changed the local dststart, dstend variables to lowercase, "dates" to
"times" (in "find start and end times") and the diff was created from
trunk/ this time (as opposed to trunk/Doc/includes/).
Added f
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
I don't think it should stop using raw_input just because you changed
stdin, as you can change it to something that will work with raw_input.
Consider:
>>> import sys
>>> sys.stdin = open("/dev/tty")
>&
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
The code patch is trivial. I believe it needs docs (both explaining how
to use and warning against the problems it may cause), a NEWS entry and
tests (at least to check what happens when an invalid value lands).
I can work on those chan
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
This is what I found doing some timings:
For the short-circuit path, the regexp can make quote 10x as fast in
exceptional cases, even comparing to the faster version in trunk. The
average win for short-circuit seems to be twice as fast
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
"The code patch is trivial", he said, only to find out it was not :)
Facundo, thanks in advance for taking a look at this!
This patch tries to implement, document and test an optional argument to
HTTPConnection, wh
Changes by Daniel Diniz <[EMAIL PROTECTED]>:
--
versions: +Python 2.6
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue902061>
___
Python-bugs
Changes by Daniel Diniz <[EMAIL PROTECTED]>:
--
versions: +Python 2.6 -Python 2.4, Python 2.5
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2600>
__
_
Changes by Daniel Diniz <[EMAIL PROTECTED]>:
--
versions: +Python 2.6 -Python 2.5
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue836088>
__
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Also reported in #1542407
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2576>
__
___
Python-bugs
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Superseded by #2571
The user can change cmd.Cmd.use_rawinput to False and get the desired
behaviour.
--
nosy: +ajaksu2
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.o
Daniel Diniz <[EMAIL PROTECTED]> added the comment:
Currently tracked in #2562
--
nosy: +ajaksu2
versions: +Python 2.6
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.o
1 - 100 of 1604 matches
Mail list logo