-
-
Save wonderful-panda/616f1f156747ddbe7fc68bcff0cac6b8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import functools | |
def kamekoopa(f): | |
@functools.wraps(f) | |
def call(*args, **argd): | |
# upd-sta H.Iwata セミコロンを削除 | |
# print("完全にマスター"); | |
print("完全にマスター") | |
# upd-end H.Iwata セミコロンを削除 | |
return f(*args, **argd) | |
return call | |
@kamekoopa | |
def tweet(): | |
pass |
ウッ もちろん違いますね!
酷い修正履歴だwww
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
7行目のセミコロンは意図的?