You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
10 lines
274 B
Python
10 lines
274 B
Python
# From 3.3.5 turtledemo/bytedesign.py
|
|
# Python 3.2 and 3.3 adds this funny
|
|
# LOAD_FAST STORE_LOCALS
|
|
# which we translate to
|
|
# # inspect.currentframe().f_locals = __locals__
|
|
from turtle import Turtle
|
|
class Designer(Turtle):
|
|
def design(self, homePos, scale):
|
|
pass
|