[Edu-sig] Re: [Tutor] How to deal with strange errors?

Richard Wolff rwolff@noao.edu
Fri, 26 Apr 2002 15:31:00 -0700


On Friday 26 April 2002 10:50 am, you wrote:
> [Danny Yoo]
>
> > > 3. Is it possible to rebind input() to it's original built-in function
> > >    without restarting the whole machinery.
> >

'del' is the easiest.

>>> input = 'argh'
>>> input
'argh'
>>> del input
>>> input
<built-in function input>