[Zope] Tar Ball with all Zope-Howtos
Morten W. Petersen
morten@esol.no
08 Nov 2000 20:19:23 +0100
[Manuel Gutierrez Algaba]
| BTW, what means things like " _.method()"
It's a way to access 'restricted functionality'. See the documentation
for more information..
| In pure python the "_" has not special sense, what object is "_" ?
Actually, the "_" has a special meaning in interactive python (useful
if you fancy the interpreter as a calculator!):
"""
Python 1.5.2 (#2, Aug 23 2000, 22:10:15) [GCC egcs-2.91.66 19990314/Linux (egcs- on linux2
Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
>>> 123*123
15129
>>> _
15129
>>> _ * _
228886641
>>>
"""
HTH.
-Morten