You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Python Programming for Autodesk Maya
Hi all!
I've been trying to find ways to suppress outputs of certain commands - such as blendShape, undo - without success, so I was wondering if anyone ever managed to get that working. I can pretty much shut everything inside the script editor by redirecting `sys.stdout` to `StringIO()`, but those things mentioned above will just stay around and pollute the output.
Thanks for any help!
Matteo
Ravi Jagannadhan
unread,
Jan 27, 2025, 8:58:28 AMJan 27
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Python Programming for Autodesk Maya
Yeah, I tried redirecting everything just to make sure I wasn't missing a thing: stdin, stdout, stderr, even __stdin__, __stdout__, __stderr__, even though I knew the dunder methods were reserved to the actual console output.