Re: Python builtin namespace

2004-07-19 Thread Aaron Sherman
On Thu, 2004-07-15 at 22:46, Dan Sugalski wrote: > And language builtin namespaces in general. We need a standard, and > now's as good a time as any, so... > > All language-specific builtin functions go into the _core_Language > namespace. (So for Python it's _core_Python, Perl 5 is _core_Perl5,

Re: Python builtin namespace

2004-07-16 Thread Tim Bunce
On Fri, Jul 16, 2004 at 12:02:15AM -0400, Dan Sugalski wrote: > At 10:17 PM + 7/15/04, Steve Peters wrote: > >On Friday 16 July 2004 02:46 am, Dan Sugalski wrote: > >> And language builtin namespaces in general. We need a standard, and > >> now's as good a time as any, so... > >> > >> All langu

Re: Python builtin namespace

2004-07-15 Thread Dan Sugalski
At 10:17 PM + 7/15/04, Steve Peters wrote: On Friday 16 July 2004 02:46 am, Dan Sugalski wrote: And language builtin namespaces in general. We need a standard, and now's as good a time as any, so... All language-specific builtin functions go into the _core_Language namespace. (So for Python

Re: Python builtin namespace

2004-07-15 Thread Steve Peters
On Friday 16 July 2004 02:46 am, Dan Sugalski wrote: > And language builtin namespaces in general. We need a standard, and > now's as good a time as any, so... > > All language-specific builtin functions go into the _core_Language > namespace. (So for Python it's _core_Python, Perl 5 is _core_Perl5

Python builtin namespace

2004-07-15 Thread Dan Sugalski
And language builtin namespaces in general. We need a standard, and now's as good a time as any, so... All language-specific builtin functions go into the _core_Language namespace. (So for Python it's _core_Python, Perl 5 is _core_Perl5, and so on) -- Dan --