On Tue, Apr 12, 2011 at 10:01 AM, Djoume Salvetti <dsalve...@trapeze.com> wrote: > Thank you and sorry about the pastebin. > I can reproduce it on python 2.5.2 and python 2.6.6 but not on python 3.1.2 > (all in ubuntu). I'll open a bug.
Looking at the pastebin you are using !lv = 2. Why the !? Without it, it works fine: Python 2.5.5+ (release25-maint:86106, Dec 9 2010, 10:25:54) [GCC 4.4.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> def f(x): ... import pdb; pdb.set_trace() ... return x ... >>> f(1) > <stdin>(3)f() (Pdb) x 1 (Pdb) x = 2 (Pdb) c 2 >>> -- --Guido van Rossum (python.org/~guido) _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com