That works fine. My issue is when using the path module, which pymel also 
uses. We have code that utilizes the path module inside and outside of 
pymel. It's easy to patch fix the issue outside of pymel but since pymel 
includes its own path.py, and that lives locally on every user's machine, 
replacing that is a bit more cumbersome.

A simplified version of the issue:

import os.path
 
path = 'c:\\temp'
class foo(unicode):        
    isdir = os.path.isdir
   
foo(path).isdir()
# 2.6.4 # True
# 2.7.3 # TypeError: _isdir() takes exactly 1 argument (0 given) #
 
print os.path.isdir(path)
# 2.6.4 # True
# 2.7.3 # True


On Thursday, January 9, 2014 2:01:17 PM UTC-8, Kurian wrote:
>
> path = 'path/to/file'
>
> if os.path.isdir(path):
>      print "Yes it is ! "
>  
> This didnt work for you ?
>  
>
> On Thu, Jan 9, 2014 at 1:47 PM, Jesse Capper <[email protected]<javascript:>
> > wrote:
>
>> Loading the same path.py module into a 2.6.4 and 2.7.3 session produces 
>> different results when calling Path(path/to/file).isdir()
>>
>> 2.6.4 works as expected - outputs True or False
>> 2.7.3 raises a TypeError: *TypeError: _isdir() takes exactly 1 argument 
>> (0 given)*
>>
>> Anyone know why the behavior changed?
>>
>> This is an easy manual fix except that we also use pymel which ships with 
>> its own path.py module that pymel calls return. Replacing that on each 
>> user's machine is more involved and I was hoping for an easier solution.
>>  
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Python Programming for Autodesk Maya" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to [email protected] <javascript:>.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/python_inside_maya/7fe466f0-9628-4b31-8ed8-0e872a94974d%40googlegroups.com
>> .
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>
>
> -- 
> --:: Kurian ::--
>  

-- 
You received this message because you are subscribed to the Google Groups 
"Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/python_inside_maya/665a54b4-47a0-4ae6-aadb-816906717e06%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to