here's the result from 64bit windows 7 import os try: print os.uname() except: "no uname"
import sys print sys.platform try:import win32con except ImportError: print "no win32con" ## results ### ## Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)] on win32 >>> ================================ RESTART ================================ >>> win32 no win32con >>> When I get into work I'll do the same for my 64bit Vista PC -Dave On Jul 9, 1:32 am, chadrik <[email protected]> wrote: > os.rename failed on dave's test on Vista32. it looks like it might be > a vista problem, because the origin bug was posted from a vista64 user. > > On Jul 8, 2009, at 5:29 PM, Paul Molodowitch wrote: > > > > > > > Yeah, it returned 'win32' > > > More results: > > > vista 64, maya2009x64: > > ---------------------------------- > > win32 > > no win32con > > > vista 64, maya2008x64: > > ---------------------------------- > > win32 > > no win32con > > > vista 64, maya2008x32: > > ---------------------------------- > > win32 > > no win32con > > > ...so far, all results are identical.- Hide quoted text - > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/python_inside_maya -~----------~----~----~----~------~----~------~--~---
