Hallo, Hans-Christoph Steiner hat gesagt: // Hans-Christoph Steiner wrote: > The grand plan is to have no libraries loaded by default. Then the > library configuration would be completely embedded in the patch, like > python does with import.
$ python Python 2.4.4c0 (#2, Jul 30 2006, 15:43:58) [GCC 4.1.2 20060715 (prerelease) (Debian 4.1.1-9)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> sin(0.5) Traceback (most recent call last): File "<stdin>", line 1, in ? NameError: name 'sin' is not defined >>> math.sin(0.5) Traceback (most recent call last): File "<stdin>", line 1, in ? NameError: name 'math' is not defined >>> import math >>> math.sin(0.5) 0.47942553860420301 >>> Ciao -- Frank Barknecht _ ______footils.org__ _______________________________________________ [email protected] mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
