Python dir command only giving me half the attributes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have tried using the python dir() command in Maya 2022 but I am not seeing all the attributes that should be there. Is anyone else having this issue? Any help would be greatly appreciated.
import pymel.core as pm
testCube = pm.polyCube(name='test')
dir(testCube[0])
output:
# Result: [] in + *
% < <= ==
!= > >= dir()
hash() iter() len() repr()
str() .capitalize? .casefold() .center()
.count() .encode? .endswith() .expandtabs?
.find() .format() .format_map() .index()
.isalnum? .isalpha? .isascii() .isdecimal()
.isdigit? .isidentifier() .islower() .isnumeric()
.isprintable() .isspace? .istitle? .isupper()
.join() .ljust() .lower() .lstrip()
.maketrans() .partition() .replace() .rfind()
.rindex() .rjust() .rpartition() .rsplit()
.rstrip() .split() .splitlines? .startswith()
.strip() .swapcase? .title? .translate()
.upper() .zfill? #