Re: How to re import a module

2011-04-08 Thread Rafael Durán Castañeda
That's really easy: >>> import re >>> reload(re) >>> In python2.x, but if you are using python3.x I think is different, really easy to know if you search in python docs. 2011/4/8 > Hello i want to know the best way to re import a module, because i have a > web server with just one Apache sess

How to re import a module

2011-04-07 Thread hidura
Hello i want to know the best way to re import a module, because i have a web server with just one Apache session for all my domains and applications, and i if i need to make some changes on one application restart the server will affect the others, so i was thinking in 2 ways the first wil