You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
14 lines
271 B
Python
14 lines
271 B
Python
# Python 3.2 Bug from abc.py
|
|
|
|
# Make sure we handle:
|
|
|
|
# LOAD_FAST '__locals__'
|
|
# STORE_LOCALS ''
|
|
|
|
class abstractclassmethod(object):
|
|
"""A Python 3.2 STORE_LOCALS bug
|
|
"""
|
|
|
|
def __init__(self, callable):
|
|
callable.__isabstractmethod__ = True
|