You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Cutipus 1c58417ce6
Use types module for class inheritence instead
6 years ago
.gitignore Fixed more stuff 6 years ago
LICENSE Initial commit 6 years ago
README.md Fixed more stuff 6 years ago
yes.py Use types module for class inheritence instead 6 years ago

README.md

yes-thats-what-i-meant

When Python knows what you meant

Requires python 3.6 and above.

Usage example:

>>> import yes
>>> print 3
  File "<stdin>", line 1
    print 3
          ^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(3)?
>>> yes
>>> print(3)    # <-- Automagically inserted
3

It will automagically do what you meant :^)