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 sys | |
import dis | |
import inspect | |
NO_ATTRIBUTE = object() | |
class SeparateNamedspacedMeta(type): | |
def __new__(cls, name, bases, attributes): |
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
from nonlocal_ import nonlocal_ | |
def foo(): | |
a = 1 | |
def bar(): | |
nonlocal_('a') | |
a = 2 | |
bar() | |
return a |
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
#!/usr/bin/env python3.5 | |
""" | |
f4hackingsolver | |
~~~~~~~~~~~~~~~ | |
Solver for the Fallout 4 Hacking Mini Game. | |
Within Fallout 4 you sometimes encounter terminals that need to be hacked. | |
When hacking a terminal you are presented with a screen that contains a | |
list of potential passwords all with the same length. |
OlderNewer