[issue11063] uuid.py module import has heavy side effects

2011-02-05 Thread Kenny Meyer
Changes by Kenny Meyer : Removed file: http://bugs.python.org/file20687/unnamed ___ Python tracker <http://bugs.python.org/issue11063> ___ ___ Python-bugs-list mailin

[issue11063] uuid.py module import has heavy side effects

2011-02-05 Thread Kenny Meyer
Kenny Meyer added the comment: Thanks for pointing that out! I guess that is the reason you did the import in a try block. -- Added file: http://bugs.python.org/file20687/unnamed ___ Python tracker <http://bugs.python.org/issue11

[issue11063] uuid.py module import has heavy side effects

2011-02-05 Thread Kenny Meyer
Kenny Meyer added the comment: With the attached patch the "heavy work" will be done on request, when calling uuid1() or uuid4() not on import. I am working off from the py3k svn branch. Is it necessary to submit a separate patch for py2 branch? -- keywords: +patch nosy: