Re: [Tutor] Built-in modules

2005-06-21 Thread Alan G
> nested list C# like) and I want to be able to call the class List (which is > inside the List.py) without having to copy it in every folder where I have a > script that needs this module > > Can I do that? Yes. See Kent's reply to a similar post about creating a package. You can also just copy

Re: [Tutor] Built-in modules

2005-06-21 Thread Kent Johnson
Alberto Troiano wrote: > Hey tutors > > I have some classes I want to make available as built-in modules in Python > 2.3.4 over Windows > To make myself clear in case you don't understand I have the file List.py (a > nested list C# like) and I want to be able to call the class List (which is >

[Tutor] Built-in modules

2005-06-21 Thread Alberto Troiano
Hey tutors I have some classes I want to make available as built-in modules in Python 2.3.4 over Windows To make myself clear in case you don't understand I have the file List.py (a nested list C# like) and I want to be able to call the class List (which is inside the List.py) without having to