You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of pyfiglet utilizes the optparse module for parsing command-line arguments.
However, optparse has been deprecated since Python 3.2 in favor of the more powerful and flexible argparse module.
Proposed Changes:
Switch to argparse: Replace all instances of optparse with argparse to handle command-line arguments.
The text was updated successfully, but these errors were encountered:
Thanks; bear in mind I may be slow to respond since I'll have a lot going on. If it turns out to be non-trivial to review the requests it may take some time. Please feel free to ping the thread every so often if I go silent.
The current implementation of pyfiglet utilizes the optparse module for parsing command-line arguments.
However, optparse has been deprecated since Python 3.2 in favor of the more powerful and flexible argparse module.
Proposed Changes:
Switch to argparse: Replace all instances of optparse with argparse to handle command-line arguments.
The text was updated successfully, but these errors were encountered: