✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ beluga.o2switch.net ​🇻​♯➤ 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 185.154.139.77 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.254
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /opt/alt/python37/lib64/python3.7/__pycache__//turtle.cpython-37.pyc
B

� f�0�O@s6dZdZddlZddlZddlZddlZddlZddlZddl	m
Z
mZmZddl
mZddlmZddd	d
ddd
ddg	Zddddddddddddddddd d!d"d#d$d%d&d'd(d)d*d+d,d-d.gZd/d0d1d2d3d4d5d6d7d8d9d:d;d<d=d>d?d@dAdBdCdDdEdFdGdHdIdJdKdLdMdNdOdPdQdRdSdTdUdVdWdXdYdZd[d\d]d^d_d`dadbdcdddedfdgdhdidjdkdldmdndodpdqdrdsdtdudvdwdxdydzd{d|d}gOZd~dgZeeeed�gZdd0d3d@dMdQdUd[d]dbdcdedfdqdvdydzgZd�d�d�d�ddd�d�d�d�d�d�d�d�d�d�d�d�d�d�d��Zd�d��Zd�d��Zyee�Wnek
�r
ed��YnXGd�d�de�Zd�d��Zd�d��Zd�Zd�d�d��Z Gd�d�dej!�Z"e e"ej#d��Gd�d��d�ej$�Z%ej#Z#Gd�d��d�e&�Z'Gd�d��d�e�Z(Gd�d��d�e�Z)Gd�d�de&�Z*Gd�d��d�e&�Z+Gd�d�de'�Z,Gd�d��d�e&�Z-Gd�d��d�e&�Z.Gd�d��d�e&�Z/Gd�d
�d
e.e-�Z0e0Z1d�d	�Z2Gd�d��d�e,�Z3Gd�d�de0�Z4e4Z5d�d�d~�Z6d�d��Z7ed�Z8ye8d�k�rre7e8�Wn@e9k
�r�ed�e8�Yn"ek
�r�ed�e8�YnXd�d��Z:d�dÄZ;d�dńZ<d�Z=d�dȄZ>e>ee3d�d�e<�e>ee4d�d�e;�e?Z@eAd�k�r2d�dτZBd�dфZCd�dӄZDeC�eD�eE�dS)�a�

Turtle graphics is a popular way for introducing programming to
kids. It was part of the original Logo programming language developed
by Wally Feurzig and Seymour Papert in 1966.

Imagine a robotic turtle starting at (0, 0) in the x-y plane. After an ``import turtle``, give it
the command turtle.forward(15), and it moves (on-screen!) 15 pixels in
the direction it is facing, drawing a line as it moves. Give it the
command turtle.right(25), and it rotates in-place 25 degrees clockwise.

By combining together these and similar commands, intricate shapes and
pictures can easily be drawn.

----- turtle.py

This module is an extended reimplementation of turtle.py from the
Python standard distribution up to Python 2.5. (See: http://www.python.org)

It tries to keep the merits of turtle.py and to be (nearly) 100%
compatible with it. This means in the first place to enable the
learning programmer to use all the commands, classes and methods
interactively when using the module from within IDLE run with
the -n switch.

Roughly it has the following features added:

- Better animation of the turtle movements, especially of turning the
  turtle. So the turtles can more easily be used as a visual feedback
  instrument by the (beginning) programmer.

- Different turtle shapes, gif-images as turtle shapes, user defined
  and user controllable turtle shapes, among them compound
  (multicolored) shapes. Turtle shapes can be stretched and tilted, which
  makes turtles very versatile geometrical objects.

- Fine control over turtle movement and screen updates via delay(),
  and enhanced tracer() and speed() methods.

- Aliases for the most commonly used commands, like fd for forward etc.,
  following the early Logo traditions. This reduces the boring work of
  typing long sequences of commands, which often occur in a natural way
  when kids try to program fancy pictures on their first encounter with
  turtle graphics.

- Turtles now have an undo()-method with configurable undo-buffer.

- Some simple commands/methods for creating event driven programs
  (mouse-, key-, timer-events). Especially useful for programming games.

- A scrollable Canvas class. The default scrollable Canvas can be
  extended interactively as needed while playing around with the turtle(s).

- A TurtleScreen class with methods controlling background color or
  background image, window and canvas size and other properties of the
  TurtleScreen.

- There is a method, setworldcoordinates(), to install a user defined
  coordinate-system for the TurtleScreen.

- The implementation uses a 2-vector class named Vec2D, derived from tuple.
  This class is public, so it can be imported by the application programmer,
  which makes certain types of computations very natural and compact.

- Appearance of the TurtleScreen and the Turtles at startup/import can be
  configured by means of a turtle.cfg configuration file.
  The default configuration mimics the appearance of the old turtle module.

- If configured appropriately the module reads in docstrings from a docstring
  dictionary in some different language, supplied separately  and replaces
  the English ones by those read in. There is a utility function
  write_docstringdict() to write a dictionary with the original (English)
  docstrings to disc, so it can serve as a template for translations.

Behind the scenes there are some features included with possible
extensions in mind. These will be commented and documented elsewhere.

z-turtle 1.1b- - for Python 3.1   -  4. 5. 2009�N)�isfile�split�join)�deepcopy)�simpledialog�ScrolledCanvas�TurtleScreen�Screen�	RawTurtle�Turtle�RawPen�Pen�Shape�Vec2D�addshape�bgcolor�bgpic�bye�clearscreen�	colormode�delay�exitonclick�	getcanvas�	getshapes�listen�mainloop�mode�numinput�onkey�
onkeypress�onkeyrelease�
onscreenclick�ontimer�register_shape�resetscreen�
screensize�setup�setworldcoordinates�	textinput�title�tracer�turtles�update�
window_height�window_width�back�backward�
begin_fill�
begin_poly�bk�circle�clear�
clearstamp�clearstamps�clone�color�degrees�distance�dot�down�end_fill�end_poly�fd�	fillcolor�filling�forward�get_poly�getpen�	getscreen�
get_shapepoly�	getturtle�goto�heading�
hideturtle�home�ht�isdown�	isvisible�left�lt�onclick�ondrag�	onrelease�pd�pen�pencolor�pendown�pensize�penup�pos�position�pu�radians�right�reset�
resizemode�rt�seth�
setheading�setpos�setposition�settiltangle�
setundobuffer�setx�sety�shape�	shapesize�shapetransform�shearfactor�
showturtle�speed�st�stamp�tilt�	tiltangle�towards�
turtlesize�undo�undobufferentries�up�width�write�xcor�ycor�write_docstringdict�done�
Terminatorg�?g�?i�i,�standardg�?�
i��classic�black�noresizeTZenglish�turtle�screenzPython Turtle GraphicsF)rz�height�	canvwidth�
canvheight�	leftright�	topbottomrrr�undobuffersizerkrWrAra�visible�language�
exampleturtle�
examplescreenr)�
using_IDLEc	Cs�t|d��}|��}WdQRXi}x�|D]�}|��}|r(|�d�rDq(y|�d�\}}Wn&tk
r|td||f�w(YnX|��}|��}|dkr�t|�}n4yd|kr�t|�}nt	|�}Wntk
r�YnX|||<q(W|S)z/Convert content of config-file into dictionary.�rN�#�=zBad line in config-file %s:
%s)�True�False�Nonez''z""�.)
�open�	readlines�strip�
startswithr�
ValueError�print�eval�float�int)�filename�fZcfglines�cfgdict�line�key�value�r��+/opt/alt/python37/lib64/python3.7/turtle.py�config_dict�s0


r�cCs�d}i}i}t|�rt|�}d|kr0d|d}ytt�\}}t||�}Wntk
rbd}YnXt|�rtt|�}t�|�t�|�dS)a@Read config-files, change configuration-dict accordingly.

    If there is a turtle.cfg file in the current working directory,
    read it from there. If this contains an importconfig-value,
    say 'myway', construct filename turtle_mayway.cfg else use
    turtle.cfg and read it from the import-directory, where
    turtle.py is located.
    Update configuration dictionary first according to config-file,
    in the import directory, then according to config-file in the
    current working directory.
    If no config-file is found, the default configuration is used.
    z
turtle.cfgZimportconfigz
turtle_%s.cfg�N)rr�r�__file__r�	Exception�_CFGr,)r�Zdefault_cfgZcfgdict1Zcfgdict2�head�tailZ	cfg_file2r�r�r��
readconfig�s 


r�z"No configfile read, reason unknownc@s`eZdZdZdd�Zdd�Zdd�Zdd	�Zd
d�Zdd
�Z	dd�Z
dd�Zdd�Zdd�Z
dS)ra�A 2 dimensional vector class, used as a helper class
    for implementing turtle graphics.
    May be useful for turtle graphics programs also.
    Derived from tuple, so a vector is a tuple!

    Provides (for a, b vectors, k number):
       a+b vector addition
       a-b vector subtraction
       a*b inner product
       k*a and a*k multiplication with scalar
       |a| absolute value of a
       a.rotate(angle) rotation
    cCst�|||f�S)N)�tuple�__new__)�cls�x�yr�r�r�r��sz
Vec2D.__new__cCs"t|d|d|d|d�S)Nr�)r)�self�otherr�r�r��__add__�sz
Vec2D.__add__cCsDt|t�r*|d|d|d|dSt|d||d|�S)Nrr�)�
isinstancer)r�r�r�r�r��__mul__�s
 z
Vec2D.__mul__cCs2t|t�st|t�r.t|d||d|�SdS)Nrr�)r�r�r�r)r�r�r�r�r��__rmul__szVec2D.__rmul__cCs"t|d|d|d|d�S)Nrr�)r)r�r�r�r�r��__sub__sz
Vec2D.__sub__cCst|d|d�S)Nrr�)r)r�r�r�r��__neg__sz
Vec2D.__neg__cCs|dd|dddS)Nr�r�g�?r�)r�r�r�r��__abs__	sz
Vec2D.__abs__cCsjt|d|d�}|tjd}t�|�t�|�}}t|d||d||d||d|�S)z.rotate self counterclockwise by angle
        r�rg�f@)r�math�pi�cos�sin)r��angleZperp�c�sr�r�r��rotateszVec2D.rotatecCs|d|dfS)Nrr�r�)r�r�r�r��__getnewargs__szVec2D.__getnewargs__cCsd|S)Nz(%.2f,%.2f)r�)r�r�r�r��__repr__szVec2D.__repr__N)�__name__�
__module__�__qualname__�__doc__r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�s
cCs\t|j�}|��x|D]}t||�qWx,|j��D]\}}t|�tjkr6|||<q6WdS)z#helper function for Scrolled CanvasN)	�list�	__bases__�reverse�__methodDict�__dict__�items�type�types�FunctionType)r��_dictZbaseListZ_superr�r�r�r�r�r� s

r�cCsi}t||�|��S)z#helper function for Scrolled Canvas)r��keys)r�r�r�r�r��	__methods*s
r�zTdef %(method)s(self, *args, **kw): return self.%(attribute)s.%(method)s(*args, **kw)r�cCs�i}t||�i}t|�}xN|��D]B}|dd�dksf|dd�dksf||ksf||krZq$||||<q$WxP|��D]D\}}	||	d�}
t|t�r�t||d�}t||
�t|||
|�qtWdS)Nr��_���)�method�func)r�Z	attribute)	r�r�r�r�r��str�__stringBody�exec�setattr)Z	fromClassZtoClassZtoPartZexcludeZ_dict_1r�ZmfcZexr�r��dZ
execStringr�r�r��__forwardmethods4s
0


r�c@sdeZdZdZddd�Zddd	�Zd
d�Zdd
�Zdd�Zdd�Z	dd�Z
dd�Zdd�Zdd�Z
dS)rz�Modeled after the scrolled canvas class from Grayons's Tkinter book.

    Used as the default canvas, which pops up automatically when
    using turtle graphics functions or the Turtle class.
    ���^�Xc
Cs0tjj||||d�|��|_|||_|_|||_|_d|_	tj
||||j	tjdd�|_tj
||jjtjd�|_tj
||jjd�|_|jj|jj|jjd�|jdd	dd
�|jdd	dd
�|jjd	|d	ddd	d	dd�|jjd	|d	dd	d	d	dd�|jjd	|d	d	dd	d	dd�|��|j�d
|j�dS)N)rzr��whiter�)rzr��bgZreliefZborderwidth)�commandZorient)r�)ZxscrollcommandZyscrollcommandrr�)ZweightZminsize�news)�padx�in_�pady�row�column�rowspan�
columnspan�stickyz<Configure>)�TK�Frame�__init__�winfo_toplevelZ_rootwindowrzr�r�r�r��CanvasZSUNKEN�_canvasZ	ScrollbarZxviewZ
HORIZONTAL�hscrollZyview�vscrollZ	configure�setZrowconfigureZcolumnconfigure�gridr`�bind�onResize)r�Zmasterrzr�r�r�r�r�r�r�Os,

zScrolledCanvas.__init__NcCs�|r
||_|r||_|r||_|jj||jd|jd|jd|jdfd�|j�d|j|jd|j�|j�d|j|jd|j�|�	�dS)z<Adjust canvas and scrollbars according to given canvas size.r�)r��scrollregiong�?�N)
r�r�r�r��config�xview_movetorz�yview_movetor��
adjustScrolls)r�r�r�r�r�r�r�r`hs

zScrolledCanvas.resetc
Cs�|j��}|j��}|j�d|j||j�|j�d|j||j�||jks`||jkr�|jjd|ddddddd�|j	jd|ddddddd�n|j�
�|j	�
�dS)zA Adjust scrollbars according to window- and canvas-size.
        g�?r�rr�)r�r�r�r�r�r�r�r�N)r��winfo_width�winfo_heightrr�rr�r�r�r�Zgrid_forget)r��cwidth�cheightr�r�r�rzs


zScrolledCanvas.adjustScrollscCs|��dS)zself-explanatoryN)r)r��eventr�r�r�r�szScrolledCanvas.onResizecGs|jj|�S)z@ 'forward' method, which canvas itself has inherited...
        )r��bbox)r��argsr�r�r�r
�szScrolledCanvas.bboxcOs|jj||�S)z@ 'forward' method, which canvas itself has inherited...
        )r��cget)r�r�kwargsr�r�r�r�szScrolledCanvas.cgetcOs|jj||�dS)z@ 'forward' method, which canvas itself has inherited...
        N)r�r)r�rrr�r�r�r�szScrolledCanvas.configcOs|jj||�dS)z@ 'forward' method, which canvas itself has inherited...
        N)r�r)r�rrr�r�r�r�szScrolledCanvas.bindcOs|jj||�dS)z@ 'forward' method, which canvas itself has inherited...
        N)r��unbind)r�rrr�r�r�r�szScrolledCanvas.unbindcCs|j��dS)z@ 'forward' method, which canvas itself has inherited...
        N)r��focus_force)r�r�r�r�r�szScrolledCanvas.focus_force)r�r�r�r�)NNN)r�r�r�r�r�r`rrr
rrrrrr�r�r�r�rIs

r�c@sHeZdZdZdd�Zdd�Zdd�Zdd	�Zd
d�Zdd
�Z	dd�Z
dS)�_Rootz'Root class for Screen based on Tkinter.cCstj�|�dS)N)r��Tkr�)r�r�r�r�r��sz_Root.__init__cCs&t|||||�|_|jjddd�dS)Nr�Zboth)�expand�fill)rr�Zpack)r�rzr�r
rr�r�r��setupcanvas�sz_Root.setupcanvascCs|jS)N)r�)r�r�r�r��
_getcanvas�sz_Root._getcanvascCs|�d||||f�dS)Nz%dx%d%+d%+d)Zgeometry)r�rzr��startx�startyr�r�r��set_geometry�sz_Root.set_geometrycCs|�d|�dS)NZWM_DELETE_WINDOW)Zwm_protocol)r��destroyr�r�r��	ondestroy�sz_Root.ondestroycCs|��S)N)Zwinfo_screenwidth)r�r�r�r��	win_width�sz_Root.win_widthcCs|��S)N)Zwinfo_screenheight)r�r�r�r��
win_height�sz_Root.win_heightN)r�r�r�r�r�rrrrrrr�r�r�r�r�src@s4eZdZdZedd��Zedd��Zdd�Zdd	�ZdGdd
�Z	dd�Z
dHdd�Zdd�Zdd�Z
dd�Zdd�ZdIdd�Zdd�ZdJdd �ZdKd!d"�ZdLd#d$�ZdMd%d&�Zd'd(�ZdNd)d*�Zd+d,�Zd-d.�Zd/d0�Zd1d2�Zd3d4�Zd5d6�Zd7d8�Zd9d:�Zd;d<�Z dOd=d>�Z!d?d@�Z"dAdB�Z#dCdD�Z$dPdEdF�Z%d
S)Q�TurtleScreenBasez�Provide the basic graphics functionality.
       Interface between Tkinter and turtle.py.

       To port turtle.py to some different graphics toolkit
       a corresponding TurtleScreenBase class has to be implemented.
    cCstjddd�}|��|S)z$return a blank image object
        r�)rzr�)r��
PhotoImage�blank)Zimgr�r�r��_blankimage�szTurtleScreenBase._blankimagecCstj|d�S)z`return an image object containing the
        imagedata from a gif-file named filename.
        )�file)r�r!)r�r�r�r��_image�szTurtleScreenBase._imagecCs�||_t|t�r"|jj}|jj}nJt|j�d��}t|j�d��}|jj|d|d|d|dfd�||_||_d|_|_	dS)Nrzr�r�)rg�?)
�cvr�rr�r�r�rr�xscale�yscale)r�r&�w�hr�r�r�r��s

*zTurtleScreenBase.__init__cCs|jjdddd�S)z<Create an invisible polygon item on canvas self.cv)
        )rrrrrrr�)r�outline)r&Zcreate_polygon)r�r�r�r��_createpoly�szTurtleScreenBase._createpolyNFc
Cs�g}x2|D]*\}}	|�||j�|�|	|j�q
W|jj|f|��|dk	rb|jj||d�|dk	rz|jj||d�|dk	r�|jj||d�|r�|j�|�dS)a`Configure polygonitem polyitem according to provided
        arguments:
        coordlist is sequence of coordinates
        fill is filling color
        outline is outline color
        top is a boolean value, which specifies if polyitem
        will be put on top of the canvas' displaylist so it
        will not be covered by other items.
        N)r)r+)rz)�appendr'r(r&�coords�
itemconfigure�	tag_raise)
r�Zpolyitem�	coordlistrr+rz�top�clr�r�r�r�r��	_drawpoly�szTurtleScreenBase._drawpolyc	Cs|jjddddddtjd�S)z9Create an invisible line item on canvas self.cv)
        rr�r�)rrzZcapstyle)r&Zcreate_liner�ZROUND)r�r�r�r��_createlineszTurtleScreenBase._createlinec	Cs�|dk	rRg}x2|D]*\}}|�||j�|�||j�qW|jj|f|��|dk	rj|jj||d�|dk	r�|jj||d�|r�|j�|�dS)aQConfigure lineitem according to provided arguments:
        coordlist is sequence of coordinates
        fill is drawing color
        width is width of drawn line.
        top is a boolean value, which specifies if polyitem
        will be put on top of the canvas' displaylist so it
        will not be covered by other items.
        N)r)rz)r-r'r(r&r.r/r0)	r�Zlineitemr1rrzr2r3r�r�r�r�r��	_drawlines
zTurtleScreenBase._drawlinecCs|j�|�dS)z]Delete graphics item from canvas.
        If item is"all" delete all graphics items.
        N)r&�delete)r��itemr�r�r��_delete)szTurtleScreenBase._deletecCs|j��dS)z(Redraw graphics items on canvas
        N)r&r,)r�r�r�r��_update/szTurtleScreenBase._updatecCs|j�|�dS)z-Delay subsequent canvas actions for delay ms.N)r&�after)r�rr�r�r��_delay4szTurtleScreenBase._delaycCs4y|j�|�}d}Wntjk
r.d}YnX|S)zCCheck if the string color is a legal Tkinter color string.
        TF)r&Z	winfo_rgbr�ZTclError)r�r9Zrgb�okr�r�r��_iscolorstring8s
zTurtleScreenBase._iscolorstringcCs0|dk	r |jj|d�|��n|j�d�SdS)zVSet canvas' backgroundcolor if color is not None,
        else return backgroundcolor.N)r�r�)r&rr:r)r�r9r�r�r��_bgcolorBs
zTurtleScreenBase._bgcolorcCst|\}}||j}||j}dddd�}|jj|d||||||d�}	|j�|	�\}
}}}
|j��|	|dfS)z�Write txt at pos in canvas with specified font
        and color.
        Return text item and x-coord of right bottom corner
        of text's bounding box.�swr�Zse)rP�centerr_r�)�text�anchorr�font)r'r(r&Zcreate_textr
r,)r�r[�txt�alignrDrWr�r�rCr8Zx0Zy0Zx1Zy1r�r�r��_writeKs



zTurtleScreenBase._writer�csD�dkr�j�|d|�n$��fdd�}�j�|d|||�dS)z�Bind fun to mouse-click event on turtle.
        fun must be a function with two arguments, the coordinates
        of the clicked point on the canvas.
        num, the number of the mouse-button defaults to 1
        Nz<Button-%s>cs:�j�|j��j�j�|j��j}}�||�dS)N)r&�canvasxr�r'�canvasyr�r()rr�r�)�funr�r�r��eventfunfsz+TurtleScreenBase._onclick.<locals>.eventfun)r&�
tag_unbind�tag_bind)r�r8rJ�num�addrKr�)rJr�r��_onclick]szTurtleScreenBase._onclickcsD�dkr�j�|d|�n$��fdd�}�j�|d|||�dS)agBind fun to mouse-button-release event on turtle.
        fun must be a function with two arguments, the coordinates
        of the point on the canvas where mouse button is released.
        num, the number of the mouse-button defaults to 1

        If a turtle is clicked, first _onclick-event will be performed,
        then _onscreensclick-event.
        Nz<Button%s-ButtonRelease>cs:�j�|j��j�j�|j��j}}�||�dS)N)r&rHr�r'rIr�r()rr�r�)rJr�r�r�rKxsz-TurtleScreenBase._onrelease.<locals>.eventfun)r&rLrM)r�r8rJrNrOrKr�)rJr�r��
_onreleasels
	zTurtleScreenBase._onreleasecsD�dkr�j�|d|�n$��fdd�}�j�|d|||�dS)aqBind fun to mouse-move-event (with pressed mouse button) on turtle.
        fun must be a function with two arguments, the coordinates of the
        actual mouse position on the canvas.
        num, the number of the mouse-button defaults to 1

        Every sequence of mouse-move-events on a turtle is preceded by a
        mouse-click event on that turtle.
        Nz<Button%s-Motion>csTy:�j�|j��j�j�|j��j}}�||�Wntk
rNYnXdS)N)r&rHr�r'rIr�r(r�)rr�r�)rJr�r�r�rK�sz*TurtleScreenBase._ondrag.<locals>.eventfun)r&rLrM)r�r8rJrNrOrKr�)rJr�r��_ondrags	zTurtleScreenBase._ondragcs@�dkr�j�d|�n"��fdd�}�j�d|||�dS)aGBind fun to mouse-click event on canvas.
        fun must be a function with two arguments, the coordinates
        of the clicked point on the canvas.
        num, the number of the mouse-button defaults to 1

        If a turtle is clicked, first _onclick-event will be performed,
        then _onscreensclick-event.
        Nz<Button-%s>cs:�j�|j��j�j�|j��j}}�||�dS)N)r&rHr�r'rIr�r()rr�r�)rJr�r�r�rK�sz1TurtleScreenBase._onscreenclick.<locals>.eventfun)r&rr)r�rJrNrOrKr�)rJr�r��_onscreenclick�s	zTurtleScreenBase._onscreenclickcs>�dkr|j�d|d�n�fdd�}|j�d||�dS)z`Bind fun to key-release event of key.
        Canvas must have focus. See method listen
        Nz<KeyRelease-%s>cs
��dS)Nr�)r)rJr�r�rK�sz0TurtleScreenBase._onkeyrelease.<locals>.eventfun)r&rr)r�rJr�rKr�)rJr��
_onkeyrelease�szTurtleScreenBase._onkeyreleasecsn�dkr4|dkr |j�dd�qj|j�d|d�n6�fdd�}|dkrX|j�d|�n|j�d||�dS)z�If key is given, bind fun to key-press event of key.
        Otherwise bind fun to any key-press.
        Canvas must have focus. See method listen.
        Nz
<KeyPress>z
<KeyPress-%s>cs
��dS)Nr�)r)rJr�r�rK�sz.TurtleScreenBase._onkeypress.<locals>.eventfun)r&rr)r�rJr�rKr�)rJr��_onkeypress�szTurtleScreenBase._onkeypresscCs|j��dS)z=Set focus on canvas (in order to collect key-events)
        N)r&r)r�r�r�r��_listen�szTurtleScreenBase._listencCs(|dkr|j�|�n|j�||�dS)z?Install a timer, which calls fun after t milliseconds.
        rN)r&Z
after_idler;)r�rJ�tr�r�r��_ontimer�szTurtleScreenBase._ontimercCs|jjdd|d�S)z0Create and return image item on canvas.
        r)�image)r&Zcreate_image)r�rYr�r�r��_createimage�szTurtleScreenBase._createimagecCs<|\}}|j�|||j||jf�|jj||d�dS)zZConfigure image item as to draw image object
        at position (x,y) on canvas)
        )rYN)r&r.r'r(�
itemconfig)r�r8r[rYr�r�r�r�r��
_drawimage�s zTurtleScreenBase._drawimagecCs |jj||d�|j�|�dS)z�Configure image item as to draw image object
        at center of canvas. Set item to the first item
        in the displaylist, so it will be drawn below
        any other item .)rYN)r&r[Z	tag_lower)r�r8rYr�r�r��	_setbgpic�szTurtleScreenBase._setbgpiccCs|j�|�S)zQReturn 'line' or 'polygon' or 'image' depending on
        type of item.
        )r&r�)r�r8r�r�r��_type�szTurtleScreenBase._typecs.|j�|���fdd�tdt��d�D�}|S)a returns list of coordinate-pairs of points of item
        Example (for insiders):
        >>> from turtle import *
        >>> getscreen()._pointlist(getturtle().turtle._item)
        [(0.0, 9.9999999999999982), (0.0, -9.9999999999999982),
        (9.9999999999999982, 0.0)]
        >>> cs"g|]}�|�|df�qS)r�r�)�.0�i)r3r�r��
<listcomp>�sz/TurtleScreenBase._pointlist.<locals>.<listcomp>rr�)r&r.�range�len)r�r8�plr�)r3r��
_pointlist�szTurtleScreenBase._pointlistcCs|jj||||fd�dS)N)r)r&r)r��srx1�sry1�srx2�sry2r�r�r��_setscrollregion�sz!TurtleScreenBase._setscrollregionc	Cs�|j��}xt|D]l}t|j�|��}g}x@|rh|dd�\}}|�||�|�||�|dd�}q*W|jj|f|��qWdS)Nr�)r&Zfind_allr�r.r-)	r�ZxscalefactorZyscalefactorr�r8ZcoordinatesZnewcoordlistr�r�r�r�r��_rescale�s

zTurtleScreenBase._rescalecCszt|jt�s|j|jfS||kr6|kr6dkrJnn|jj|jjfS|dk	rX||_|dk	rf||_|j�|||�dS)zaResize the canvas the turtles are drawing on. Does
        not alter the drawing window.
        N)r�r&rr�r�r`)r�r�r�r�r�r�r��_resizes"zTurtleScreenBase._resizecCs@|j��}|dkr|jd}|j��}|dkr8|jd}||fS)z; Return the width and height of the turtle window.
        r�rzr�)r&rr	)r�rzr�r�r�r��_window_sizes



zTurtleScreenBase._window_sizecCst��dS)a{Starts event loop - calling Tkinter's mainloop function.

        No argument.

        Must be last statement in a turtle graphics program.
        Must NOT be used if a script is run from within IDLE in -n mode
        (No subprocess) - for interactive use of turtle graphics.

        Example (for a TurtleScreen instance named screen):
        >>> screen.mainloop()

        N)r�r)r�r�r�r�r s
zTurtleScreenBase.mainloopcCst�||�S)a�Pop up a dialog window for input of a string.

        Arguments: title is the title of the dialog window,
        prompt is a text mostly describing what information to input.

        Return the string input
        If the dialog is canceled, return None.

        Example (for a TurtleScreen instance named screen):
        >>> screen.textinput("NIM", "Name of first player:")

        )rZ	askstring)r�r)�promptr�r�r�r(/s
zTurtleScreenBase.textinputcCstj|||||d�S)a�Pop up a dialog window for input of a number.

        Arguments: title is the title of the dialog window,
        prompt is a text mostly describing what numerical information to input.
        default: default value
        minval: minimum value for imput
        maxval: maximum value for input

        The number input must be in the range minval .. maxval if these are
        given. If not, a hint is issued and the dialog remains open for
        correction. Return the number input.
        If the dialog is canceled,  return None.

        Example (for a TurtleScreen instance named screen):
        >>> screen.numinput("Poker", "Your stakes:", 1000, minval=10, maxval=10000)

        )ZinitialvalueZminvalueZmaxvalue)rZaskfloat)r�r)rn�defaultZminvalZmaxvalr�r�r�r>s
zTurtleScreenBase.numinput)NNNF)NNNF)N)r�N)r�N)r�N)r�N)N)NNN)NNN)&r�r�r�r��staticmethodr#r%r�r,r4r5r6r9r:r<r>r?rGrPrQrRrSrTrUrVrXrZr\r]r^rerjrkrlrmrr(rr�r�r�r�r �sH




	





r c@seZdZdZdS)r�z�Will be raised in TurtleScreen.update, if _RUNNING becomes False.

    This stops execution of a turtle graphics script.
    Main purpose: use in the Demo-Viewer turtle.Demo.py.
    N)r�r�r�r�r�r�r�r�r�Ysc@seZdZdZdS)�TurtleGraphicsErrorzSome TurtleGraphics Error
    N)r�r�r�r�r�r�r�r�rqbsrqc@s$eZdZdZddd�Zddd�ZdS)	rz�Data structure modeling shapes.

    attribute _type is one of "polygon", "image", "compound"
    attribute _data is - depending on _type a poygon-tuple,
    an image or a list constructed using the addcomponent method.
    NcCsz||_|dkr"t|t�rpt|�}nN|dkrVt|t�rp|���d�rpt|�rpt�	|�}n|dkrdg}nt
d|��||_dS)N�polygonrYz.gif�compoundzThere is no shape type %s)r^r�r�r�r��lower�endswithrrr%rq�_data)r�Ztype_�datar�r�r�r�ns


zShape.__init__cCs:|jdkrtd|j��|dkr$|}|j�|||g�dS)a-Add component to a shape of type compound.

        Arguments: poly is a polygon, i. e. a tuple of number pairs.
        fill is the fillcolor of the component,
        outline is the outline color of the component.

        call (for a Shapeobject namend s):
        --   s.addcomponent(((0,0), (10,10), (-10,10)), "red", "blue")

        Example:
        >>> poly = ((0,0),(10,-5),(0,10),(-10,-5))
        >>> s = Shape("compound")
        >>> s.addcomponent(poly, "red", "blue")
        >>> # .. add more components and then use register_shape()
        rsz Cannot add component to %s ShapeN)r^rqrvr-)r��polyrr+r�r�r��addcomponent~s

zShape.addcomponent)N)N)r�r�r�r�r�ryr�r�r�r�rgs
c@sDeZdZdZddd�Zddd�Zdd	�Zd
d�Zdd
�Zdd�Z	dS)�Tbufferz5Ring buffer used as undobuffer for RawTurtle objects.r�cCs$||_dgg||_d|_d|_dS)Nr�F)�bufsize�buffer�ptr�cumulate)r�r{r�r�r�r��szTbuffer.__init__NcCsH|dkr*x4t|j�D]}dg|j|<qWn||_dgg||_d|_dS)Nr�)rbr{r|r})r�r{r`r�r�r�r`�sz
Tbuffer.resetcCsF|jdkrB|js0|jd|j|_||j|j<n|j|j�|�dS)Nrr�)r{r~r}r|r-)r�r8r�r�r��push�s

zTbuffer.pushcCsJ|jdkrF|j|j}|dkr"dSdg|j|j<|jd|j|_|SdS)Nrr�)r{r|r})r�r8r�r�r��pop�s
zTbuffer.popcCs|j|j�dg�S)N)r{r|�count)r�r�r�r��nr_of_items�szTbuffer.nr_of_itemscCst|j�dt|j�S)N� )r�r|r})r�r�r�r�r��szTbuffer.__repr__)r�)N)
r�r�r�r�r�r`rr�r�r�r�r�r�r�rz�s

	rzc@s"eZdZdZdZedededfdd�Zdd	�Zd=dd�Zd
d�Z	d>dd�Z
dd�Zdd�Zd?dd�Z
dd�Zdd�Zdd�Zd@dd�ZdAdd �Zd!d"�Zd#d$�Zd%d&�Zd'd(�Zd)d*�Zd+d,�ZdBd.d/�Zd0d1�ZdCd2d3�ZdDd4d5�ZdEd7d8�ZdFd9d:�ZdGd;d<�ZeZ eZ!eZ"e
Z#eZ$d
S)Hrz�Provides screen oriented methods like setbg etc.

    Only relies upon the methods of TurtleScreenBase and NOT
    upon components of the underlying graphics toolkit -
    which is Tkinter in this case.
    Trrrc
Cs�tdd�tdd�tdd�tdd�tdd�tdd�td|���d	�|_d
di|_t�||�||_||_td|_	g|_
|��tj
d
kr�|��}|�ddddd�|�ddddd�dS)Nrr))i����r)r�r)rr�))r�)����)r�r�)����)i�����	)i�����)i�����)i����r�)������)i����i����)i����i����)r�r�)ri����)�r�)�i����)r�i����)r�r�)r�r�)r�r�)r�r�)r�r�)r�r�)r�r�)r�r�))r�r)g��Q�#@g���Q�@)g�G�z. @g��Q��@)g��Q��@g�G�z. @)g���Q�@g��Q�#@)rr�)g���Q��g��Q�#@)g��Q���g�G�z. @)g�G�z. �g��Q��@)g��Q�#�g���Q�@)i����r)g��Q�#�g���Q��)g�G�z. �g��Q���)g��Q���g�G�z. �)g���Q��g��Q�#�)g�g$�)g���Q�@g��Q�#�)g��Q��@g�G�z. �)g�G�z. @g��Q���)g��Q�#@g���Q��))r�i����)r�r�)i����r�)i����i����))r�g�G�z�)rg�����'@)i����g�G�z�))rr)r�i����)ri����)r�i����rY)Zarrowr�r4ZsquareZtriangler�r"�nopicr�r�darwinZwmZ
attributesr�z-topmost�1�0)rr#�_shapes�_bgpicsr r��_mode�_delayvaluer��
_colormode�_keysr5�sys�platformr�Zcall)r�r&rrrZ
rootwindowr�r�r�r��s$


zTurtleScreen.__init__cCs�td|_td|_|�d�|�d�|_d|_d|_d|_g|_	|�
d�xd	D]}|�d
|�qRW|�d
�x.|j
d
d
�D]}|�d
|�|�d
|�q�Wd
t_d
S)aqDelete all drawings and all turtles from the TurtleScreen.

        No argument.

        Reset empty TurtleScreen to its initial state: white background,
        no backgroundimage, no eventbindings and tracing on.

        Example (for a TurtleScreen instance named screen):
        >>> screen.clear()

        Note: this method is not available as function.
        rr�allr�r�r�rr�)r�r��N)r�r�r�r9rZ�_bgpic�
_bgpicname�_tracing�_updatecounter�_turtlesrrRrr�rr�_pen)r��btnr�r�r�r�r5�s 





zTurtleScreen.clearNcCs||dkr|jS|��}|dkr*td|��||_|dkrp|�|jd|jd|jd|jd�d|_|_|��dS)ahSet turtle-mode ('standard', 'logo' or 'world') and perform reset.

        Optional argument:
        mode -- one of the strings 'standard', 'logo' or 'world'

        Mode 'standard' is compatible with turtle.py.
        Mode 'logo' is compatible with most Logo-Turtle-Graphics.
        Mode 'world' uses userdefined 'worldcoordinates'. *Attention*: in
        this mode angles appear distorted if x/y unit-ratio doesn't equal 1.
        If mode is not given, return the current mode.

             Mode      Initial turtle heading     positive angles
         ------------|-------------------------|-------------------
          'standard'    to the right (east)       counterclockwise
            'logo'        upward    (north)         clockwise

        Examples:
        >>> mode('logo')   # resets turtle heading to north
        >>> mode()
        'logo'
        N)r��logo�worldzNo turtle-graphics-mode %s)r�r�r�g�?)	r�rtrqrjr�r�r'r(r`)r�rr�r�r�r
szTurtleScreen.modecCs�|��dkr|�d�t||�}t||�}|��\}}|�|d|d�|j|j}	}
|j||_|j||_||j}||j}|j|}
|j|}|�|||
|�|�	|j|	|j|
�|�
�dS)asSet up a user defined coordinate-system.

        Arguments:
        llx -- a number, x-coordinate of lower left corner of canvas
        lly -- a number, y-coordinate of lower left corner of canvas
        urx -- a number, x-coordinate of upper right corner of canvas
        ury -- a number, y-coordinate of upper right corner of canvas

        Set up user coodinat-system and switch to mode 'world' if necessary.
        This performs a screen.reset. If mode 'world' is already active,
        all drawings are redrawn according to the new coordinates.

        But ATTENTION: in user-defined coordinatesystems angles may appear
        distorted. (see Screen.mode())

        Example (for a TurtleScreen instance named screen):
        >>> screen.setworldcoordinates(-10,-0.5,50,1.5)
        >>> for _ in range(36):
        ...     left(10)
        ...     forward(0.5)
        r��N)rr�rmr%r'r(r�r�rjrkr,)r�ZllxZllyZurxZuryZxspanZyspanZwxZwyZ	oldxscaleZ	oldyscalerfrgrhrir�r�r�r',s 



z TurtleScreen.setworldcoordinatescCsT|dkr2|���d�r(td|�|��}qFtd��nt|t�rFtd|�}||j|<dS)a�Adds a turtle shape to TurtleScreen's shapelist.

        Arguments:
        (1) name is the name of a gif-file and shape is None.
            Installs the corresponding image shape.
            !! Image-shapes DO NOT rotate when turning the turtle,
            !! so they do not display the heading of the turtle!
        (2) name is an arbitrary string and shape is a tuple
            of pairs of coordinates. Installs the corresponding
            polygon shape
        (3) name is an arbitrary string and shape is a
            (compound) Shape object. Installs the corresponding
            compound shape.
        To use a shape, you have to issue the command shape(shapename).

        call: register_shape("turtle.gif")
        --or: register_shape("tri", ((0,0), (10,10), (-10,10)))

        Example (for a TurtleScreen instance named screen):
        >>> screen.register_shape("triangle", ((5,-3),(0,5),(-5,-3)))

        Nz.gifrYz;Bad arguments for register_shape.
Use  help(register_shape)rr)rtrurr%rqr�r�r�)r��namerkr�r�r�r#Ss


zTurtleScreen.register_shapec	Cst|�dkr|d}t|t�rD|�|�s0|dkr4|Stdt|���y|\}}}Wn(ttfk
rztdt|���YnX|jdkr�dd�|||fD�\}}}d|kr�d	kr�nn.d|kr�d	kr�nnd|kr�d	ks�ntd
t|���d|||fS)aReturn color string corresponding to args.

        Argument may be a string or a tuple of three
        numbers corresponding to actual colormode,
        i.e. in the range 0<=n<=colormode.

        If the argument doesn't represent a color,
        an error is raised.
        r�rr�zbad color string: %szbad color arguments: %sg�?cSsg|]}td|��qS)g�o@)�round)r_r�r�r�r�ra�sz*TurtleScreen._colorstr.<locals>.<listcomp>�zbad color sequence: %sz
#%02x%02x%02x)rcr�r�r>rq�	TypeErrorr�r�)r�r9r��g�br�r�r��	_colorstrvs


FzTurtleScreen._colorstrcsx��d�s�St��dkr.�fdd�dD�}n4t��dkrV�fdd��dd�D�}ntd	���t�fd
d�|D��S)Nr�r�cs"g|]}t�||d�d��qS)r�r�)r�)r_r`)�cstrr�r�ra�sz'TurtleScreen._color.<locals>.<listcomp>)r�r�r�r�csg|]}dt�|d��qS)r�)r�)r_r*)r�r�r�ra�sr�zbad colorstring: %sc3s|]}|�jdVqdS)r�N)r�)r_r�)r�r�r��	<genexpr>�sz&TurtleScreen._color.<locals>.<genexpr>)r�rcrqr�)r�r�r3r�)r�r�r��_color�s
zTurtleScreen._colorcCs8|dkr|jS|dkr"t|�|_n|dkr4t|�|_dS)aqReturn the colormode or set it to 1.0 or 255.

        Optional argument:
        cmode -- one of the values 1.0 or 255

        r, g, b values of colortriples have to be in range 0..cmode.

        Example (for a TurtleScreen instance named screen):
        >>> screen.colormode()
        1.0
        >>> screen.colormode(255)
        >>> pencolor(240,160,80)
        Ng�?r�)r�r�r�)r�Zcmoder�r�r�r�szTurtleScreen.colormodecCs(x"|jD]}|�|j�|��qWdS)z�Reset all Turtles on the Screen to their initial state.

        No argument.

        Example (for a TurtleScreen instance named screen):
        >>> screen.reset()
        N)r��_setmoder�r`)r�r�r�r�r�r`�szTurtleScreen.resetcCs|jS)z�Return the list of turtles on the screen.

        Example (for a TurtleScreen instance named screen):
        >>> screen.turtles()
        [<turtle.Turtle object at 0x00E11FB0>]
        )r�)r�r�r�r�r+�szTurtleScreen.turtlescGs4|r|�|�}nd}|�|�}|dk	r0|�|�}|S)a�Set or return backgroundcolor of the TurtleScreen.

        Arguments (if given): a color string or three numbers
        in the range 0..colormode or a 3-tuple of such numbers.

        Example (for a TurtleScreen instance named screen):
        >>> screen.bgcolor("orange")
        >>> screen.bgcolor()
        'orange'
        >>> screen.bgcolor(0.5,0,0.5)
        >>> screen.bgcolor()
        '#800080'
        N)r�r?r�)r�rr9r�r�r�r�s

zTurtleScreen.bgcolorcCsB|dkr|jSt|�|_d|_|dk	r0t|�|_|jr>|��dS)aeTurns turtle animation on/off and set delay for update drawings.

        Optional arguments:
        n -- nonnegative  integer
        delay -- nonnegative  integer

        If n is given, only each n-th regular screen update is really performed.
        (Can be used to accelerate the drawing of complex graphics.)
        Second arguments sets delay value (see RawTurtle.delay())

        Example (for a TurtleScreen instance named screen):
        >>> screen.tracer(8, 25)
        >>> dist = 2
        >>> for i in range(200):
        ...     fd(dist)
        ...     rt(90)
        ...     dist += 2
        Nr)r�r�r�r�r,)r��nrr�r�r�r*�s

zTurtleScreen.tracercCs|dkr|jSt|�|_dS)z� Return or set the drawing delay in milliseconds.

        Optional argument:
        delay -- positive integer

        Example (for a TurtleScreen instance named screen):
        >>> screen.delay(15)
        >>> screen.delay()
        15
        N)r�r�)r�rr�r�r�r�szTurtleScreen.delaycCs<tjsdt_t�|jdkr8|jd7_|j|j;_dS)zIncrement update counter.Trr�N)r�_RUNNINGr�r�r�)r�r�r�r��
_incrementudcs
zTurtleScreen._incrementudccCs@|j}d|_x |��D]}|��|��qW||_|��dS)z'Perform a TurtleScreen update.
        TN)r�r+�_update_data�_drawturtler:)r��tracingrWr�r�r�r,szTurtleScreen.updatecCs|��dS)z� Return the width of the turtle window.

        Example (for a TurtleScreen instance named screen):
        >>> screen.window_width()
        640
        r)rm)r�r�r�r�r.szTurtleScreen.window_widthcCs|��dS)z� Return the height of the turtle window.

        Example (for a TurtleScreen instance named screen):
        >>> screen.window_height()
        480
        r�)rm)r�r�r�r�r-%szTurtleScreen.window_heightcCs|jS)z�Return the Canvas of this TurtleScreen.

        No argument.

        Example (for a Screen instance named screen):
        >>> cv = screen.getcanvas()
        >>> cv
        <turtle.ScrolledCanvas instance at 0x010742D8>
        )r&)r�r�r�r�r.s
zTurtleScreen.getcanvascCst|j���S)z�Return a list of names of all currently available turtle shapes.

        No argument.

        Example (for a TurtleScreen instance named screen):
        >>> screen.getshapes()
        ['arrow', 'blank', 'circle', ... , 'turtle']
        )�sortedr�r�)r�r�r�r�r:s	zTurtleScreen.getshapesr�cCs|�|||�dS)a�Bind fun to mouse-click event on canvas.

        Arguments:
        fun -- a function with two arguments, the coordinates of the
               clicked point on the canvas.
        btn -- the number of the mouse-button, defaults to 1

        Example (for a TurtleScreen instance named screen)

        >>> screen.onclick(goto)
        >>> # Subsequently clicking into the TurtleScreen will
        >>> # make the turtle move to the clicked point.
        >>> screen.onclick(None)
        N)rS)r�rJr�rOr�r�r�rREszTurtleScreen.onclickcCsF|dkr ||jkr6|j�|�n||jkr6|j�|�|�||�dS)amBind fun to key-release event of key.

        Arguments:
        fun -- a function with no arguments
        key -- a string: key (e.g. "a") or key-symbol (e.g. "space")

        In order to be able to register key-events, TurtleScreen
        must have focus. (See method listen.)

        Example (for a TurtleScreen instance named screen):

        >>> def f():
        ...     fd(50)
        ...     lt(60)
        ...
        >>> screen.onkey(f, "Up")
        >>> screen.listen()

        Subsequently the turtle can be moved by repeatedly pressing
        the up-arrow key, consequently drawing a hexagon

        N)r��remover-rT)r�rJr�r�r�r�rVs

zTurtleScreen.onkeycCsN|dkr ||jkr>|j�|�n|dk	r>||jkr>|j�|�|�||�dS)aBind fun to key-press event of key if key is given,
        or to any key-press-event if no key is given.

        Arguments:
        fun -- a function with no arguments
        key -- a string: key (e.g. "a") or key-symbol (e.g. "space")

        In order to be able to register key-events, TurtleScreen
        must have focus. (See method listen.)

        Example (for a TurtleScreen instance named screen
        and a Turtle instance named turtle):

        >>> def f():
        ...     fd(50)
        ...     lt(60)
        ...
        >>> screen.onkeypress(f, "Up")
        >>> screen.listen()

        Subsequently the turtle can be moved by repeatedly pressing
        the up-arrow key, or by keeping pressed the up-arrow key.
        consequently drawing a hexagon.
        N)r�r�r-rU)r�rJr�r�r�r�rts
zTurtleScreen.onkeypresscCs|��dS)aSet focus on TurtleScreen (in order to collect key-events)

        No arguments.
        Dummy arguments are provided in order
        to be able to pass listen to the onclick method.

        Example (for a TurtleScreen instance named screen):
        >>> screen.listen()
        N)rV)r��xdummy�ydummyr�r�r�r�s
zTurtleScreen.listenrcCs|�||�dS)a�Install a timer, which calls fun after t milliseconds.

        Arguments:
        fun -- a function with no arguments.
        t -- a number >= 0

        Example (for a TurtleScreen instance named screen):

        >>> running = True
        >>> def f():
        ...     if running:
        ...             fd(50)
        ...             lt(60)
        ...             screen.ontimer(f, 250)
        ...
        >>> f()   # makes the turtle marching around
        >>> running = False
        N)rX)r�rJrWr�r�r�r"�szTurtleScreen.ontimercCsF|dkr|jS||jkr(|�|�|j|<|�|j|j|�||_dS)aFSet background image or return name of current backgroundimage.

        Optional argument:
        picname -- a string, name of a gif-file or "nopic".

        If picname is a filename, set the corresponding image as background.
        If picname is "nopic", delete backgroundimage, if present.
        If picname is None, return the filename of the current backgroundimage.

        Example (for a TurtleScreen instance named screen):
        >>> screen.bgpic()
        'nopic'
        >>> screen.bgpic("landscape.gif")
        >>> screen.bgpic()
        'landscape.gif'
        N)r�r�r%r]r�)r�Zpicnamer�r�r�r�s
zTurtleScreen.bgpiccCs|�|||�S)a�Resize the canvas the turtles are drawing on.

        Optional arguments:
        canvwidth -- positive integer, new width of canvas in pixels
        canvheight --  positive integer, new height of canvas in pixels
        bg -- colorstring or color-tuple, new backgroundcolor
        If no arguments are given, return current (canvaswidth, canvasheight)

        Do not alter the drawing window. To observe hidden parts of
        the canvas use the scrollbars. (Can make visible those parts
        of a drawing, which were outside the canvas before!)

        Example (for a Turtle instance named turtle):
        >>> turtle.screensize(2000,1500)
        >>> # e.g. to search for an erroneously escaped turtle ;-)
        )rl)r�r�r�r�r�r�r�r%�szTurtleScreen.screensize)N)N)N)NN)N)r�N)N)NN)r)N)NNN)%r�r�r�r�r�r�r�r5rr'r#r�r�rr`r+rr*rr�r,r.r-rrrRrrrr"rr%r!r$rrr r�r�r�r�r�sD&
"'
#
	

			

 



c@sTeZdZdZedd�edd�edd�d�ZdZdZdZefdd	�Z	d
d�Z
dBd
d�Zdd�ZdCdd�Z
dd�Zdd�Zdd�Zdd�Zdd�Zdd�Zd d!�Zd"d#�Zd$d%�Zd&d'�Zd(d)�ZdDd*d+�Zd,d-�Zd.d/�Zd0d1�ZdEd2d3�ZdFd4d5�Zd6d7�Zd8d9�Z dGd:d;�Z!dHd<d=�Z"dId>d?�Z#dJd@dA�Z$eZ%eZ&eZ'eZ(eZ)eZ*eZ+eZ,e Z-dS)K�
TNavigatorzRNavigation part of the RawTurtle.
    Implements methods for turtle movement.
    g�?g)r�r�r�r�rr�cCsB|j|_|j|_||_d|_|��d|_|�|�t�	|�dS)N)
�DEFAULT_ANGLEOFFSET�_angleOffset�DEFAULT_ANGLEORIENT�_angleOrientr��
undobufferr:r�r�r`)r�rr�r�r�r��s
zTNavigator.__init__cCstdd�|_tj|j|_dS)zXreset turtle to its initial values

        Will be overwritten by parent class
        gN)r�	_positionr��START_ORIENTATIONr��_orient)r�r�r�r�r`�szTNavigator.resetNcCsL|dkr|jS|dkrdS||_|dkr6d|_d|_n|jd|_d|_dS)z:Set turtle-mode to 'standard', 'world' or 'logo'.
        N)r�r�r�)r�r�rr�g@r�)r�r�r��_fullcircle)r�rr�r�r�r�szTNavigator._setmodecCs0||_d||_|jdkr"d|_n
|d|_dS)z+Helper function for degrees() and radians()ihr�rg@N)r��
_degreesPerAUr�r�)r��
fullcircler�r�r��_setDegreesPerAUs


zTNavigator._setDegreesPerAU��v@cCs|�|�dS)a> Set angle measurement units to degrees.

        Optional argument:
        fullcircle -  a number

        Set angle measurement units, i. e. set number
        of 'degrees' for a full circle. Default value is
        360 degrees.

        Example (for a Turtle instance named turtle):
        >>> turtle.left(90)
        >>> turtle.heading()
        90

        Change angle measurement unit to grad (also known as gon,
        grade, or gradian and equals 1/100-th of the right angle.)
        >>> turtle.degrees(400.0)
        >>> turtle.heading()
        100

        N)r�)r�r�r�r�r�r:szTNavigator.degreescCs|�dtj�dS)a Set the angle measurement units to radians.

        No arguments.

        Example (for a Turtle instance named turtle):
        >>> turtle.heading()
        90
        >>> turtle.radians()
        >>> turtle.heading()
        1.5707963267948966
        r�N)r�r�r�)r�r�r�r�r^4szTNavigator.radianscCs|j|j|}|�|�dS)z)move turtle forward by specified distanceN)r�r��_goto)r�r;Zender�r�r��_goBszTNavigator._gocCs||j9}|j�|�|_dS)z=Turn turtle counterclockwise by specified angle if angle > 0.N)r�r�r�)r�r�r�r�r��_rotateGs
zTNavigator._rotatecCs
||_dS)zmove turtle to position end.N)r�)r��endr�r�r�r�LszTNavigator._gotocCs|�|�dS)aMove the turtle forward by the specified distance.

        Aliases: forward | fd

        Argument:
        distance -- a number (integer or float)

        Move the turtle forward by the specified distance, in the direction
        the turtle is headed.

        Example (for a Turtle instance named turtle):
        >>> turtle.position()
        (0.00, 0.00)
        >>> turtle.forward(25)
        >>> turtle.position()
        (25.00,0.00)
        >>> turtle.forward(-75)
        >>> turtle.position()
        (-50.00,0.00)
        N)r�)r�r;r�r�r�rCPszTNavigator.forwardcCs|�|�dS)a�Move the turtle backward by distance.

        Aliases: back | backward | bk

        Argument:
        distance -- a number

        Move the turtle backward by distance ,opposite to the direction the
        turtle is headed. Do not change the turtle's heading.

        Example (for a Turtle instance named turtle):
        >>> turtle.position()
        (0.00, 0.00)
        >>> turtle.backward(30)
        >>> turtle.position()
        (-30.00, 0.00)
        N)r�)r�r;r�r�r�r/gszTNavigator.backcCs|�|�dS)a�Turn turtle right by angle units.

        Aliases: right | rt

        Argument:
        angle -- a number (integer or float)

        Turn turtle right by angle units. (Units are by default degrees,
        but can be set via the degrees() and radians() functions.)
        Angle orientation depends on mode. (See this.)

        Example (for a Turtle instance named turtle):
        >>> turtle.heading()
        22.0
        >>> turtle.right(45)
        >>> turtle.heading()
        337.0
        N)r�)r�r�r�r�r�r_{szTNavigator.rightcCs|�|�dS)a�Turn turtle left by angle units.

        Aliases: left | lt

        Argument:
        angle -- a number (integer or float)

        Turn turtle left by angle units. (Units are by default degrees,
        but can be set via the degrees() and radians() functions.)
        Angle orientation depends on mode. (See this.)

        Example (for a Turtle instance named turtle):
        >>> turtle.heading()
        22.0
        >>> turtle.left(45)
        >>> turtle.heading()
        67.0
        N)r�)r�r�r�r�r�rP�szTNavigator.leftcCs|jS)z�Return the turtle's current location (x,y), as a Vec2D-vector.

        Aliases: pos | position

        No arguments.

        Example (for a Turtle instance named turtle):
        >>> turtle.pos()
        (0.00, 240.00)
        )r�)r�r�r�r�r[�szTNavigator.poscCs
|jdS)z� Return the turtle's x coordinate.

        No arguments.

        Example (for a Turtle instance named turtle):
        >>> reset()
        >>> turtle.left(60)
        >>> turtle.forward(100)
        >>> print turtle.xcor()
        50.0
        r)r�)r�r�r�r�r|�szTNavigator.xcorcCs
|jdS)a	 Return the turtle's y coordinate
        ---
        No arguments.

        Example (for a Turtle instance named turtle):
        >>> reset()
        >>> turtle.left(60)
        >>> turtle.forward(100)
        >>> print turtle.ycor()
        86.6025403784
        r�)r�)r�r�r�r�r}�szTNavigator.ycorcCs,|dkr|�t|��n|�t||��dS)atMove turtle to an absolute position.

        Aliases: setpos | setposition | goto:

        Arguments:
        x -- a number      or     a pair/vector of numbers
        y -- a number             None

        call: goto(x, y)         # two coordinates
        --or: goto((x, y))       # a pair (tuple) of coordinates
        --or: goto(vec)          # e.g. as returned by pos()

        Move turtle to an absolute position. If the pen is down,
        a line will be drawn. The turtle's orientation does not change.

        Example (for a Turtle instance named turtle):
        >>> tp = turtle.pos()
        >>> tp
        (0.00, 0.00)
        >>> turtle.setpos(60,30)
        >>> turtle.pos()
        (60.00,30.00)
        >>> turtle.setpos((20,80))
        >>> turtle.pos()
        (20.00,80.00)
        >>> turtle.setpos(tp)
        >>> turtle.pos()
        (0.00,0.00)
        N)r�r)r�r�r�r�r�r�rI�szTNavigator.gotocCs|�dd�|�d�dS)a$Move turtle to the origin - coordinates (0,0).

        No arguments.

        Move turtle to the origin - coordinates (0,0) and set its
        heading to its start-orientation (which depends on mode).

        Example (for a Turtle instance named turtle):
        >>> turtle.home()
        rN)rIrd)r�r�r�r�rL�szTNavigator.homecCs|�t||jd��dS)a�Set the turtle's first coordinate to x

        Argument:
        x -- a number (integer or float)

        Set the turtle's first coordinate to x, leave second coordinate
        unchanged.

        Example (for a Turtle instance named turtle):
        >>> turtle.position()
        (0.00, 240.00)
        >>> turtle.setx(10)
        >>> turtle.position()
        (10.00, 240.00)
        r�N)r�rr�)r�r�r�r�r�riszTNavigator.setxcCs|�t|jd|��dS)a�Set the turtle's second coordinate to y

        Argument:
        y -- a number (integer or float)

        Set the turtle's first coordinate to x, second coordinate remains
        unchanged.

        Example (for a Turtle instance named turtle):
        >>> turtle.position()
        (0.00, 40.00)
        >>> turtle.sety(-10)
        >>> turtle.position()
        (0.00, -10.00)
        rN)r�rr�)r�r�r�r�r�rjszTNavigator.setycCsT|dk	rt||�}t|t�r"|}n$t|t�r6t|�}nt|t�rF|j}t||j�S)a�Return the distance from the turtle to (x,y) in turtle step units.

        Arguments:
        x -- a number   or  a pair/vector of numbers   or   a turtle instance
        y -- a number       None                            None

        call: distance(x, y)         # two coordinates
        --or: distance((x, y))       # a pair (tuple) of coordinates
        --or: distance(vec)          # e.g. as returned by pos()
        --or: distance(mypen)        # where mypen is another turtle

        Example (for a Turtle instance named turtle):
        >>> turtle.pos()
        (0.00, 0.00)
        >>> turtle.distance(30,40)
        50.0
        >>> pen = Turtle()
        >>> pen.forward(77)
        >>> turtle.distance(pen)
        77.0
        N)rr�r�r�r��abs)r�r�r�r[r�r�r�r;$s




zTNavigator.distancecCs�|dk	rt||�}t|t�r"|}n$t|t�r6t|�}nt|t�rF|j}||j\}}tt�||�dtjd�d}||j	}|j
|j||jS)aCReturn the angle of the line from the turtle's position to (x, y).

        Arguments:
        x -- a number   or  a pair/vector of numbers   or   a turtle instance
        y -- a number       None                            None

        call: distance(x, y)         # two coordinates
        --or: distance((x, y))       # a pair (tuple) of coordinates
        --or: distance(vec)          # e.g. as returned by pos()
        --or: distance(mypen)        # where mypen is another turtle

        Return the angle, between the line from turtle-position to position
        specified by x, y and the turtle's start orientation. (Depends on
        modes - "standard" or "logo")

        Example (for a Turtle instance named turtle):
        >>> turtle.pos()
        (10.00, 10.00)
        >>> turtle.towards(0,0)
        225.0
        Ng�f@r�g�v@)
rr�r�r�r�r�r��atan2r�r�r�r�r�)r�r�r�r[�resultr�r�r�ruDs




 
zTNavigator.towardscCsJ|j\}}tt�||�dtjd�d}||j}|j|j||jS)z� Return the turtle's current heading.

        No arguments.

        Example (for a Turtle instance named turtle):
        >>> turtle.left(67)
        >>> turtle.heading()
        67.0
        g�f@r�g�v@)	r�r�r�r�r�r�r�r�r�)r�r�r�r�r�r�r�rJgs

 
zTNavigator.headingcCs>||��|j}|j}||d||d}|�|�dS)a�Set the orientation of the turtle to to_angle.

        Aliases:  setheading | seth

        Argument:
        to_angle -- a number (integer or float)

        Set the orientation of the turtle to to_angle.
        Here are some common directions in degrees:

         standard - mode:          logo-mode:
        -------------------|--------------------
           0 - east                0 - north
          90 - north              90 - east
         180 - west              180 - south
         270 - south             270 - west

        Example (for a Turtle instance named turtle):
        >>> turtle.setheading(90)
        >>> turtle.heading()
        90
        g@N)rJr�r�r�)r�Zto_angler�Zfullr�r�r�rdvszTNavigator.setheadingcCst|jr|j�dg�d|j_|��}|dkr2|j}|dkrjt|�|j}dttdt|�dd�|�}d||}d	|}d
|t�	|tj
d|j�}|dkr�|||}}}|��}	|�
�}
|dkr�|�dd�n
|�d�|�|�x:t|�D].}|�|�|�|�|�d�|�|��qW|�|�|dk�rV|�|	|
�|�|�|j�rpd
|j_dS)a� Draw a circle with given radius.

        Arguments:
        radius -- a number
        extent (optional) -- a number
        steps (optional) -- an integer

        Draw a circle with given radius. The center is radius units left
        of the turtle; extent - an angle - determines which part of the
        circle is drawn. If extent is not given, draw the entire circle.
        If extent is not a full circle, one endpoint of the arc is the
        current pen position. Draw the arc in counterclockwise direction
        if radius is positive, otherwise in clockwise direction. Finally
        the direction of the turtle is changed by the amount of extent.

        As the circle is approximated by an inscribed regular polygon,
        steps determines the number of steps to use. If not given,
        it will be calculated automatically. Maybe used to draw regular
        polygons.

        call: circle(radius)                  # full circle
        --or: circle(radius, extent)          # arc
        --or: circle(radius, extent, steps)
        --or: circle(radius, steps=6)         # 6-sided polygon

        Example (for a Turtle instance named turtle):
        >>> turtle.circle(50)
        >>> turtle.circle(120, 180)  # semicircle
        �seqTNr��g@g�M@g�?g�?g@g�f@rF)r�rr~rpr�r�r��minr�r�r�r��_tracerr<r�rbr�)r��radiusZextent�stepsrpZfracr)Zw2�lZtrZdlr`r�r�r�r4�s>""






zTNavigator.circlecCsdS)z/dummy method - to be overwritten by child classNr�)r�r�r�r�r�rp�szTNavigator.speedcCsdS)z/dummy method - to be overwritten by child classNr�)r��ar�r�r�r�r��szTNavigator._tracercCsdS)z/dummy method - to be overwritten by child classNr�)r�r�r�r�r�r<�szTNavigator._delay)N)r�)N)N)N)NN)r)NN)N).r�r�r�r�rr�ZDEFAULT_MODEr�r�r�r`r�r�r:r^r�r�r�rCr/r_rPr[r|r}rIrLrirjr;rurJrdr4rpr�r<r@r3r0rbrQr\rerfrcr�r�r�r�r��sX

	


#
 
#
A


r�c@s�eZdZdZedfdd�Zededfdd�Zd.d
d�Zd/dd
�Zdd�Z	dd�Z
dd�Zd0dd�Zdd�Z
dd�Zdd�Zdd�Zdd�Zd d!�Zd1d"d#�Zd2d%d&�Zd3d(d)�Zd*d+�Zd,d-�ZeZe	Ze	Ze
Ze
ZeZeZd	S)4�TPenzFDrawing part of the RawTurtle.
    Implements drawing properties.
    racCs||_d|_t�|�dS)N)�_resizemoder�r��_reset)r�rar�r�r�r��sz
TPen.__init__rWrAcCsFd|_d|_||_||_d|_d|_d|_d|_d|_d|_	d|_
dS)Nr�Tr�)g�?g�?g)g�?ggg�?)�_pensize�_shown�	_pencolor�
_fillcolor�_drawing�_speed�_stretchfactor�_shearfactor�_tilt�_shapetrafo�
_outlinewidth)r�rWrAr�r�r�r��szTPen._resetNcCs.|dkr|jS|��}|dkr*|j|d�dS)azSet resizemode to one of the values: "auto", "user", "noresize".

        (Optional) Argument:
        rmode -- one of the strings "auto", "user", "noresize"

        Different resizemodes have the following effects:
          - "auto" adapts the appearance of the turtle
                   corresponding to the value of pensize.
          - "user" adapts the appearance of the turtle according to the
                   values of stretchfactor and outlinewidth (outline),
                   which are set by shapesize()
          - "noresize" no adaption of the turtle's appearance takes place.
        If no argument is given, return current resizemode.
        resizemode("user") is called by a call of shapesize with arguments.


        Examples (for a Turtle instance named turtle):
        >>> turtle.resizemode("noresize")
        >>> turtle.resizemode()
        'noresize'
        N)�auto�userr�)ra)r�rtrV)r�Zrmoder�r�r�ra�s
zTPen.resizemodecCs|dkr|jS|j|d�dS)a!Set or return the line thickness.

        Aliases:  pensize | width

        Argument:
        width -- positive number

        Set the line thickness to width or return it. If resizemode is set
        to "auto" and turtleshape is a polygon, that polygon is drawn with
        the same line thickness. If no argument is given, current pensize
        is returned.

        Example (for a Turtle instance named turtle):
        >>> turtle.pensize()
        1
        >>> turtle.pensize(10)   # from here on lines of width 10 are drawn
        N)rY)r�rV)r�rzr�r�r�rYszTPen.pensizecCs|js
dS|jdd�dS)z�Pull the pen up -- no drawing when moving.

        Aliases: penup | pu | up

        No argument

        Example (for a Turtle instance named turtle):
        >>> turtle.penup()
        NF)rX)r�rV)r�r�r�r�rZ/s
z
TPen.penupcCs|jr
dS|jdd�dS)z�Pull the pen down -- drawing when moving.

        Aliases: pendown | pd | down

        No argument.

        Example (for a Turtle instance named turtle):
        >>> turtle.pendown()
        NT)rX)r�rV)r�r�r�r�rX=s
zTPen.pendowncCs|jS)aReturn True if pen is down, False if it's up.

        No argument.

        Example (for a Turtle instance named turtle):
        >>> turtle.penup()
        >>> turtle.isdown()
        False
        >>> turtle.pendown()
        >>> turtle.isdown()
        True
        )r�)r�r�r�r�rNKs
zTPen.isdowncCsjdddddd�}|dkr|jS||kr0||}n*d|krDd	krVnntt|��}nd}|j|d
�dS)a� Return or set the turtle's speed.

        Optional argument:
        speed -- an integer in the range 0..10 or a speedstring (see below)

        Set the turtle's speed to an integer value in the range 0 .. 10.
        If no argument is given: return current speed.

        If input is a number greater than 10 or smaller than 0.5,
        speed is set to 0.
        Speedstrings  are mapped to speedvalues in the following way:
            'fastest' :  0
            'fast'    :  10
            'normal'  :  6
            'slow'    :  3
            'slowest' :  1
        speeds from 1 to 10 enforce increasingly faster animation of
        line drawing and turtle turning.

        Attention:
        speed = 0 : *no* animation takes place. forward/back makes turtle jump
        and likewise left/right make the turtle turn instantly.

        Example (for a Turtle instance named turtle):
        >>> turtle.speed(3)
        rr�r�r�r�)ZfastestZfast�normalZslowZslowestNg�?g%@)rp)r�r�r�rV)r�rpZspeedsr�r�r�rpZs
z
TPen.speedcGs�|rht|�}|dkr"|d}}n"|dkr4|\}}n|dkrD|}}|�|�}|�|�}|j||d�n|�|j�|�|j�fSdS)a�Return or set the pencolor and fillcolor.

        Arguments:
        Several input formats are allowed.
        They use 0, 1, 2, or 3 arguments as follows:

        color()
            Return the current pencolor and the current fillcolor
            as a pair of color specification strings as are returned
            by pencolor and fillcolor.
        color(colorstring), color((r,g,b)), color(r,g,b)
            inputs as in pencolor, set both, fillcolor and pencolor,
            to the given value.
        color(colorstring1, colorstring2),
        color((r1,g1,b1), (r2,g2,b2))
            equivalent to pencolor(colorstring1) and fillcolor(colorstring2)
            and analogously, if the other input format is used.

        If turtleshape is a polygon, outline and interior of that polygon
        is drawn with the newly set colors.
        For more info see: pencolor, fillcolor

        Example (for a Turtle instance named turtle):
        >>> turtle.color('red', 'green')
        >>> turtle.color()
        ('red', 'green')
        >>> colormode(255)
        >>> color((40, 80, 120), (160, 200, 240))
        >>> color()
        ('#285078', '#a0c8f0')
        r�rr�r�)rWrAN)rcr�rVr�r�r�)r�rr�ZpcolorZfcolorr�r�r�r9�s 


z
TPen.colorcGs:|r*|�|�}||jkrdS|j|d�n|�|j�SdS)aZ Return or set the pencolor.

        Arguments:
        Four input formats are allowed:
          - pencolor()
            Return the current pencolor as color specification string,
            possibly in hex-number format (see example).
            May be used as input to another color/pencolor/fillcolor call.
          - pencolor(colorstring)
            s is a Tk color specification string, such as "red" or "yellow"
          - pencolor((r, g, b))
            *a tuple* of r, g, and b, which represent, an RGB color,
            and each of r, g, and b are in the range 0..colormode,
            where colormode is either 1.0 or 255
          - pencolor(r, g, b)
            r, g, and b represent an RGB color, and each of r, g, and b
            are in the range 0..colormode

        If turtleshape is a polygon, the outline of that polygon is drawn
        with the newly set pencolor.

        Example (for a Turtle instance named turtle):
        >>> turtle.pencolor('brown')
        >>> tup = (0.2, 0.8, 0.55)
        >>> turtle.pencolor(tup)
        >>> turtle.pencolor()
        '#33cc8c'
        N)rW)r�r�rVr�)r�rr9r�r�r�rW�s

z
TPen.pencolorcGs:|r*|�|�}||jkrdS|j|d�n|�|j�SdS)a] Return or set the fillcolor.

        Arguments:
        Four input formats are allowed:
          - fillcolor()
            Return the current fillcolor as color specification string,
            possibly in hex-number format (see example).
            May be used as input to another color/pencolor/fillcolor call.
          - fillcolor(colorstring)
            s is a Tk color specification string, such as "red" or "yellow"
          - fillcolor((r, g, b))
            *a tuple* of r, g, and b, which represent, an RGB color,
            and each of r, g, and b are in the range 0..colormode,
            where colormode is either 1.0 or 255
          - fillcolor(r, g, b)
            r, g, and b represent an RGB color, and each of r, g, and b
            are in the range 0..colormode

        If turtleshape is a polygon, the interior of that polygon is drawn
        with the newly set fillcolor.

        Example (for a Turtle instance named turtle):
        >>> turtle.fillcolor('violet')
        >>> col = turtle.pencolor()
        >>> turtle.fillcolor(col)
        >>> turtle.fillcolor(0, .5, 0)
        N)rA)r�r�rVr�)r�rr9r�r�r�rA�s

zTPen.fillcolorcCs|jdd�dS)z�Makes the turtle visible.

        Aliases: showturtle | st

        No argument.

        Example (for a Turtle instance named turtle):
        >>> turtle.hideturtle()
        >>> turtle.showturtle()
        T)�shownN)rV)r�r�r�r�ro�szTPen.showturtlecCs|jdd�dS)aYMakes the turtle invisible.

        Aliases: hideturtle | ht

        No argument.

        It's a good idea to do this while you're in the
        middle of a complicated drawing, because hiding
        the turtle speeds up the drawing observably.

        Example (for a Turtle instance named turtle):
        >>> turtle.hideturtle()
        F)r�N)rV)r�r�r�r�rK	szTPen.hideturtlecCs|jS)z�Return True if the Turtle is shown, False if it's hidden.

        No argument.

        Example (for a Turtle instance named turtle):
        >>> turtle.hideturtle()
        >>> print turtle.isvisible():
        False
        )r�)r�r�r�r�rO	s
zTPen.isvisiblecKs�|j|j|j|j|j|j|j|j|j|j	|j
d�}|s>|s>|St|t�rN|}ni}|�
|�i}x|D]}||||<qfW|jr�|j�d|f�d}d|kr�|j|dkr�d}d|kr�t|dt�r�|�|df�|d<|j|dkr�d}d|k�r|j|dk�rd}|�r|��d|k�r*|d|_d|k�r>|d|_d|k�rR|d|_d|k�r�t|dt��r�|�|df�|d<|d|_d	|k�r�|d	|_d
|k�r�|d
|_d|k�r�|d}t|ttf��r�||f}||_d|k�r�|d|_d
|k�r
|d
|_	d|k�r|d|_d|k�r2|d|_
d|k�sPd|k�sPd|k�r�|j\}	}
|j}t�|j
�t�|j
�}}
|	|
|
||
||	||
|
||f|_|��dS)aLReturn or set the pen's attributes.

        Arguments:
            pen -- a dictionary with some or all of the below listed keys.
            **pendict -- one or more keyword-arguments with the below
                         listed keys as keywords.

        Return or set the pen's attributes in a 'pen-dictionary'
        with the following key/value pairs:
           "shown"      :   True/False
           "pendown"    :   True/False
           "pencolor"   :   color-string or color-tuple
           "fillcolor"  :   color-string or color-tuple
           "pensize"    :   positive number
           "speed"      :   number in range 0..10
           "resizemode" :   "auto" or "user" or "noresize"
           "stretchfactor": (positive number, positive number)
           "shearfactor":   number
           "outline"    :   positive number
           "tilt"       :   number

        This dictionary can be used as argument for a subsequent
        pen()-call to restore the former pen-state. Moreover one
        or more of these attributes can be provided as keyword-arguments.
        This can be used to set several pen attributes in one statement.


        Examples (for a Turtle instance named turtle):
        >>> turtle.pen(fillcolor="black", pencolor="red", pensize=10)
        >>> turtle.pen()
        {'pensize': 10, 'shown': True, 'resizemode': 'auto', 'outline': 1,
        'pencolor': 'red', 'pendown': True, 'fillcolor': 'black',
        'stretchfactor': (1,1), 'speed': 3, 'shearfactor': 0.0}
        >>> penstate=turtle.pen()
        >>> turtle.color("yellow","")
        >>> turtle.penup()
        >>> turtle.pen()
        {'pensize': 10, 'shown': True, 'resizemode': 'auto', 'outline': 1,
        'pencolor': 'yellow', 'pendown': False, 'fillcolor': '',
        'stretchfactor': (1,1), 'speed': 3, 'shearfactor': 0.0}
        >>> p.pen(penstate, fillcolor="green")
        >>> p.pen()
        {'pensize': 10, 'shown': True, 'resizemode': 'auto', 'outline': 1,
        'pencolor': 'red', 'pendown': True, 'fillcolor': 'green',
        'stretchfactor': (1,1), 'speed': 3, 'shearfactor': 0.0}
        )r�rXrWrArYrpra�
stretchfactorrnr+rsrVFrXTrWrYrArprar�rnr+r�rsN)r�r�r�r�r�r�r�r�r�r�r�r��dictr,r�rr�r��_newLiner�r�r�r�r�r�r:)r�rVZpendictZ_pd�pZ_p_bufr�ZnewLineZsfZscxZscyZshf�sa�car�r�r�rV 	s�/


























zTPen.penTcCsdS)z/dummy method - to be overwritten by child classNr�)r��usePosr�r�r�r��	sz
TPen._newLineFcCsdS)z/dummy method - to be overwritten by child classNr�)r�r�Zforcedr�r�r�r:�	szTPen._updatecCsdS)z/dummy method - to be overwritten by child classNr�)r�rr�r�r�r��	szTPen._colorcCsdS)z/dummy method - to be overwritten by child classNr�)r�rr�r�r�r��	szTPen._colorstr)N)N)N)N)T)TF)r�r�r�r�r�r�r�rarYrZrXrNrpr9rWrArorKrOrVr�r:r�r�rzryr]rUr=rqrMr�r�r�r�r��s8


&.%$



r�c@s eZdZdZdd�Zdd�ZdS)�_TurtleImagez6Helper class: Datatype to store Turtle attributes
    cCs||_d|_|�|�dS)N)r�r^�	_setshape)r�r��
shapeIndexr�r�r�r��	sz_TurtleImage.__init__cs|j�||_|jdkr*�j|jkr2nndS|jdkrP�j|jkrXnndS|jdkrp��|j�n$|jdkr�x|jD]}��|�q�W�j|j|_|jdkr����|_nF|jdkr؈��jdj�|_n&|jdkr��fdd��j|jD�|_dS)NrrrY)rYrrrsr"csg|]}����qSr�)r,)r_r8)r�r�r�ra�	sz*_TurtleImage._setshape.<locals>.<listcomp>)	r�r�r^r�r9�_itemr,rZrv)r�r�r8r�)r�r�r��	s&""





z_TurtleImage._setshapeN)r�r�r�r�r�r�r�r�r�r�r��	sr�c@s�eZdZdZgZdedededfdd�Zdd	�Zd
d�Zdd
�Z	dd�Z
dd�Zdd�Zdd�Z
dmdd�Zdd�Zdd�Zdd�Zdd�Zdnd d!�Zdod"d#�Zdpd$d%�Zd&d'�Zdqd(d)�Zd*d+�Zdrd,d-�Zd.d/�Zd0d1�Zdsd3d4�Zd5d6�Zd7d8�Zd9d:�Zd;d<�Z dtd=d>�Z!d?d@�Z"dAdB�Z#dCdD�Z$dudFdG�Z%dHdI�Z&dJdK�Z'dLdM�Z(dvdNdO�Z)dPdQ�Z*dwdTdU�Z+dVdW�Z,dXdY�Z-dZd[�Z.d\d]�Z/d^d_�Z0e0Z1dxd`da�Z2dydcdd�Z3dzdedf�Z4d{dgdh�Z5didj�Z6dkdl�Z7eZ8dS)|r
zvAnimation part of the RawTurtle.
    Puts RawTurtle upon a TurtleScreen and provides tools for
    its animation.
    Nrkr�r�cCs6t|t�r||_n~t|t�r:|tjkr2tj�|�||_nVt|ttf�r�xFtjD]}|j	|krP||_PqPWt|�|_tj�|j�nt
d|��|j}t�||�
��t�|�|j�|�|��|_t||�|_d|_d|_d|_|_||_d|_|��|_|jg|_|jg|_g|_||_t |�|_!|�"�dS)Nzbad canvas argument %sF)#r��_Screenr�rr
�screensr-rr�r&rqr�r�rr�r�r5�drawingLineItemr�r��_poly�
_creatingPoly�	_fillitem�	_fillpathr��_hidden_from_screen�currentLineItemr��currentLiner��
stampItems�_undobuffersizerzr�r:)r�Zcanvasrkr�r�r�r�r�r�r��	s@










zRawTurtle.__init__cCs0t�|�t�|�|��|��|��dS)a�Delete the turtle's drawings and restore its default values.

        No argument.

        Delete the turtle's drawings from the screen, re-center the turtle
        and set variables to the default values.

        Example (for a Turtle instance named turtle):
        >>> turtle.position()
        (0.00,-22.00)
        >>> turtle.heading()
        100.0
        >>> turtle.reset()
        >>> turtle.position()
        (0.00,0.00)
        >>> turtle.heading()
        0.0
        N)r�r`r�r��_clearr�r:)r�r�r�r�r`�	s


zRawTurtle.resetcCs&|dks|dkrd|_n
t|�|_dS)a�Set or disable undobuffer.

        Argument:
        size -- an integer or None

        If size is an integer an empty undobuffer of given size is installed.
        Size gives the maximum number of turtle-actions that can be undone
        by the undo() function.
        If size is None, no undobuffer is present.

        Example (for a Turtle instance named turtle):
        >>> turtle.setundobuffer(42)
        Nr)r�rz)r��sizer�r�r�rh
szRawTurtle.setundobuffercCs|jdkrdS|j��S)z�Return count of entries in the undobuffer.

        No argument.

        Example (for a Turtle instance named turtle):
        >>> while undobufferentries():
        ...     undo()
        Nr)r�r�)r�r�r�r�rx+
s	
zRawTurtle.undobufferentriescCspd|_|_x|jD]}|j�|�qW|j��|_g|_|jrN|j�	|j
�|jg|_|��|�|j
�dS)zDelete all of pen's drawingsN)r�r�r�r�r9r5r�rr�r-r�r7rhr)r�r8r�r�r�r8
s
zRawTurtle._clearcCs|��|��dS)agDelete the turtle's drawings from the screen. Do not move turtle.

        No arguments.

        Delete the turtle's drawings from the screen. Do not move turtle.
        State and position of the turtle as well as drawings of other
        turtles are not affected.

        Examples (for a Turtle instance named turtle):
        >>> turtle.clear()
        N)rr:)r�r�r�r�r5F
szRawTurtle.clearcCsF|j��|jjdkrdSt|j�dkrB|j�|j|j|j|j�dS)Nrr�)	r�r�r�rcrr6r�r�r�)r�r�r�r�r�U
s
zRawTurtle._update_datacCs||j}|jdkrdS|jdkrD|��|��|��|�|j�n4|��|jdkrxx|��D]}|��q`W|��dS)z&Perform a Turtle-data update.
        rNr�)	r�r�r�r�r:r<r�r�r+)r�r�rWr�r�r�r:]
s


zRawTurtle._updatecCs|j�||�S)amTurns turtle animation on/off and set delay for update drawings.

        Optional arguments:
        n -- nonnegative  integer
        delay -- nonnegative  integer

        If n is given, only each n-th regular screen update is really performed.
        (Can be used to accelerate the drawing of complex graphics.)
        Second arguments sets delay value (see RawTurtle.delay())

        Example (for a Turtle instance named turtle):
        >>> turtle.tracer(8, 25)
        >>> dist = 2
        >>> for i in range(200):
        ...     turtle.fd(dist)
        ...     turtle.rt(90)
        ...     dist += 2
        )r�r*)r��flagrr�r�r�r�o
szRawTurtle._tracercCs|j�|�S)N)r�r�)r�rr�r�r�r��
szRawTurtle._colorcCs|j�|�S)N)r�r�)r�rr�r�r�r��
szRawTurtle._colorstrc	Cs�t|t�r|Sy|\}}}Wn(ttfk
rDtdt|���YnX|jjdkrldd�|||fD�\}}}d|kr�dkr�nn.d|kr�dkr�nnd|kr�dks�ntdt|���d|||fS)	z,Convert colortriples to hexstrings.
        zbad color arguments: %sg�?cSsg|]}td|��qS)g�o@)r�)r_r�r�r�r�ra�
sz!RawTurtle._cc.<locals>.<listcomp>rr�zbad color sequence: %sz
#%02x%02x%02x)r�r�r�r�rqr�r�)r�rr�r�r�r�r�r��_cc�
s
Fz
RawTurtle._cccs�|j�|�|j�|j}d|_d|_t|�}�|_||_�|_t�|jj�|_�j�|��j	|jjj
}|dkr����|j_nJ|dkr���
�j	dj�|j_n*|dkrʇfdd��j	|jjjD�|j_���|_|��|S)aCreate and return a clone of the turtle.

        No argument.

        Create and return a clone of the turtle with same position, heading
        and turtle properties.

        Example (for a Turtle instance named mick):
        mick = Turtle()
        joe = mick.clone()
        NrrrYr"rscsg|]}����qSr�)r,)r_r8)r�r�r�ra�
sz#RawTurtle.clone.<locals>.<listcomp>)r�r�r�r�rr�r�r�r-r�r^r,r�rZrvr5r�r:)r�r��q�ttyper�)r�r�r8�
s,

zRawTurtle.clonecCsB|dkr|jjS||j��kr*td|��|j�|�|��dS)a�Set turtle shape to shape with given name / return current shapename.

        Optional argument:
        name -- a string, which is a valid shapename

        Set turtle shape to shape with given name or, if name is not given,
        return name of current shape.
        Shape with name must exist in the TurtleScreen's shape dictionary.
        Initially there are the following polygon shapes:
        'arrow', 'turtle', 'circle', 'square', 'triangle', 'classic'.
        To learn about how to deal with shapes see Screen-method register_shape.

        Example (for a Turtle instance named turtle):
        >>> turtle.shape()
        'arrow'
        >>> turtle.shape("turtle")
        >>> turtle.shape()
        'turtle'
        NzThere is no shape named %s)r�r�r�rrqr�r:)r�r�r�r�r�rk�
szRawTurtle.shapecCs�||kr|krdkr8nn|j\}}|||jfS|dksH|dkrPtd��|dk	rt|dkrj||f}q�||f}n|dk	r�|jd|f}n|j}|dkr�|j}|jd||d�dS)aOSet/return turtle's stretchfactors/outline. Set resizemode to "user".

        Optional arguments:
           stretch_wid : positive number
           stretch_len : positive number
           outline  : positive number

        Return or set the pen's attributes x/y-stretchfactors and/or outline.
        Set resizemode to "user".
        If and only if resizemode is set to "user", the turtle will be displayed
        stretched according to its stretchfactors:
        stretch_wid is stretchfactor perpendicular to orientation
        stretch_len is stretchfactor in direction of turtles orientation.
        outline determines the width of the shapes's outline.

        Examples (for a Turtle instance named turtle):
        >>> turtle.resizemode("user")
        >>> turtle.shapesize(5, 5, 12)
        >>> turtle.shapesize(outline=8)
        Nrz(stretch_wid/stretch_len must not be zeror�)rar�r+)r�r�rqrV)r�Zstretch_widZstretch_lenr+r�r�r�r�rl�
s "


zRawTurtle.shapesizecCs |dkr|jS|jd|d�dS)a�Set or return the current shearfactor.

        Optional argument: shear -- number, tangent of the shear angle

        Shear the turtleshape according to the given shearfactor shear,
        which is the tangent of the shear angle. DO NOT change the
        turtle's heading (direction of movement).
        If shear is not given: return the current shearfactor, i. e. the
        tangent of the shear angle, by which lines parallel to the
        heading of the turtle are sheared.

        Examples (for a Turtle instance named turtle):
        >>> turtle.shape("circle")
        >>> turtle.shapesize(5,2)
        >>> turtle.shearfactor(0.5)
        >>> turtle.shearfactor()
        >>> 0.5
        Nr�)rarn)r�rV)r�Zshearr�r�r�rnszRawTurtle.shearfactorcCs<||j|j}|tjddtj}|jd|d�dS)aIRotate the turtleshape to point in the specified direction

        Argument: angle -- number

        Rotate the turtleshape to point in the direction specified by angle,
        regardless of its current tilt-angle. DO NOT change the turtle's
        heading (direction of movement).


        Examples (for a Turtle instance named turtle):
        >>> turtle.shape("circle")
        >>> turtle.shapesize(5,2)
        >>> turtle.settiltangle(45)
        >>> stamp()
        >>> turtle.fd(50)
        >>> turtle.settiltangle(-45)
        >>> stamp()
        >>> turtle.fd(50)
        g�f@r�r�)rarsN)r�r�r�r�rV)r�r�rsr�r�r�rgszRawTurtle.settiltanglecCs>|dkr0|jdtj|j}||j|jS|�|�dS)a�Set or return the current tilt-angle.

        Optional argument: angle -- number

        Rotate the turtleshape to point in the direction specified by angle,
        regardless of its current tilt-angle. DO NOT change the turtle's
        heading (direction of movement).
        If angle is not given: return the current tilt-angle, i. e. the angle
        between the orientation of the turtleshape and the heading of the
        turtle (its direction of movement).

        Deprecated since Python 3.1

        Examples (for a Turtle instance named turtle):
        >>> turtle.shape("circle")
        >>> turtle.shapesize(5,2)
        >>> turtle.tilt(45)
        >>> turtle.tiltangle()
        Ng�f@)r�r�r�r�r�r�rg)r�r�rsr�r�r�rt3szRawTurtle.tiltanglecCs|�||���dS)a�Rotate the turtleshape by angle.

        Argument:
        angle - a number

        Rotate the turtleshape by angle from its current tilt-angle,
        but do NOT change the turtle's heading (direction of movement).

        Examples (for a Turtle instance named turtle):
        >>> turtle.shape("circle")
        >>> turtle.shapesize(5,2)
        >>> turtle.tilt(30)
        >>> turtle.fd(50)
        >>> turtle.tilt(30)
        >>> turtle.fd(50)
        N)rgrt)r�r�r�r�r�rsMszRawTurtle.tiltcCs6||kr(|kr(|kr(dkr2nn|jS|j\}}}}|dk	rL|}|dk	rX|}|dk	rd|}|dk	rp|}||||dkr�td��||||f|_t�||�dtj}	t�|	�t�|	�}
}|||
||||
||
||||
|||f\}}
}}||f|_|
||_|	|_	|j
dd�dS)a�Set or return the current transformation matrix of the turtle shape.

        Optional arguments: t11, t12, t21, t22 -- numbers.

        If none of the matrix elements are given, return the transformation
        matrix.
        Otherwise set the given elements and transform the turtleshape
        according to the matrix consisting of first row t11, t12 and
        second row t21, 22.
        Modify stretchfactor, shearfactor and tiltangle according to the
        given matrix.

        Examples (for a Turtle instance named turtle):
        >>> turtle.shape("square")
        >>> turtle.shapesize(4,2)
        >>> turtle.shearfactor(-0.5)
        >>> turtle.shapetransform()
        (4.0, -1.0, -0.0, 2.0)
        Nrz0Bad shape transform matrix: must not be singularr�r�)ra)r�rqr�r�r�r�r�r�r�r�rV)r��t11�t12�t21�t22Zm11Zm12Zm21Zm22Zalfar�r�Za11Za12Za21Za22r�r�r�rm`s,,(

zRawTurtle.shapetransformcs^|j�|j\��|j\��t���j�j�}dt|�|\�������fdd�|D�S)zlComputes transformed polygon shapes from a shape
        according to current position and heading.
        g�?csFg|]>\}}��|�|�j��|�|�jf�qSr�)r'r()r_r�r�)�e0�e1�p0�p1r�r�r�ra�sz(RawTurtle._polytrafo.<locals>.<listcomp>)r�r�r�rr(r'r�)r�rx�er�)r
rrrr�r��
_polytrafo�s

zRawTurtle._polytrafocCs2|jj|jj}|jdkr.|�|j|jdk�SdS)a@Return the current shape polygon as tuple of coordinate pairs.

        No argument.

        Examples (for a Turtle instance named turtle):
        >>> turtle.shape("square")
        >>> turtle.shapetransform(4, -1, 0, 2)
        >>> turtle.get_shapepoly()
        ((50, -20), (30, 20), (-50, 20), (-30, -20))

        rrrsN)r�r�r�r�r^�
_getshapepolyrv)r�rkr�r�r�rG�s
zRawTurtle.get_shapepolyFcsx|jdks|r|j\����n>|jdkrNtd|jd�}|dd|f\����n|jdkr\|St����fdd�|D��S)	z`Calculate transformed shape polygon according to resizemode
        and shapetransform.
        r�r�r�g@rr�c3s2|]*\}}�|�|�|�|fVqdS)Nr�)r_r�r�)r	r
rrr�r�r��sz*RawTurtle._getshapepoly.<locals>.<genexpr>)r�r��maxr�r�)r�rrrsr�r�)r	r
rrr�r�s

zRawTurtle._getshapepolyc	Cs�|j}|j|jj}|j}|jj}|j�r.|jdk�r.|jdk�r.d|_	|j
}|dkr�|jdkrfd}n|jdkrx|j}n|j
}|�|�|��}|j|j}}|j|||||dd�nx|d	kr�|�||j|�n^|d
k�r�x�t||�D]D\}	\}
}}|�|�|
d��}
|j|	|
|�|�|�|�|j
dd�q�Wn||j	�r:dS|dk�rV|�|dd
d
�nN|d	k�rz|�||j|jdj
�n*|d
k�r�x|D]}	|�|	dd
d
��q�Wd|_	dS)zpManages the correct rendering of the turtle with respect to
        its shape, resizemode, stretch and tilt etc.rFrrr�r�r�T)rr+rzr2rYrsN))rr)rr)rrr�r")r�r�r�r�r^r�r�r�r�r�rvr�r�r�rrr�r�r4r\r��zipr)r�r�rkrZtitem�tshaper)�fc�ocr8rxr�r�r�r��sF 







zRawTurtle._drawturtlec	Cs\|j}|j|jj}|j}|j}|dkr�|��}|jdkr@d}n|jdkrR|j}n|j	}|�
|�|��}|j|j
}}|j|||||dd�n�|dkr�|�d�}|�||j|�n�|d	k�r<g}x|D]}	|��}
|�|
�q�Wt|�}xRt||�D]D\}
\}}}|�
|�|d��}|j|
||�|�|�|�|j	dd�q�W|j�|�|j�d
|f�|S)a�Stamp a copy of the turtleshape onto the canvas and return its id.

        No argument.

        Stamp a copy of the turtle shape onto the canvas at the current
        turtle position. Return a stamp_id for that stamp, which can be
        used to delete it by calling clearstamp(stamp_id).

        Example (for a Turtle instance named turtle):
        >>> turtle.color("blue")
        >>> turtle.stamp()
        13
        >>> turtle.fd(50)
        rrr�r�r�T)rr+rzr2rYr�rsrr)r�r�r�r�r^rvr,r�r�r�rrr�r�r4rZr\r�r-r�rrrr�r)r�r�rkrr�stitemr)rrZelementr8rxr�r�r�rr�s>




zRawTurtle.stampcCs�||jkrHt|t�r0x&|D]}|j�|�qWn|j�|�|j�|�d|f}|j}||jkrddS|j�|�}|j�|�||j	kr�|j	d|j
|_	|j�|j	d|j
dg�dS)z9does the work for clearstamp() and clearstamps()
        rrNr�)rr�r�r�r9r�r�r|�indexr}r{�insert)r��stampidZsubitemr8Zbufrr�r�r��_clearstamps




zRawTurtle._clearstampcCs|�|�|��dS)aDDelete stamp with given stampid

        Argument:
        stampid - an integer, must be return value of previous stamp() call.

        Example (for a Turtle instance named turtle):
        >>> turtle.color("blue")
        >>> astamp = turtle.stamp()
        >>> turtle.fd(50)
        >>> turtle.clearstamp(astamp)
        N)rr:)r�rr�r�r�r6s
zRawTurtle.clearstampcCsb|dkr|jdd�}n&|dkr0|jd|�}n|j|d�}x|D]}|�|�qDW|��dS)a�Delete all or first/last n of turtle's stamps.

        Optional argument:
        n -- an integer

        If n is None, delete all of pen's stamps,
        else if n > 0 delete first n stamps
        else if n < 0 delete last n stamps.

        Example (for a Turtle instance named turtle):
        >>> for i in range(8):
        ...     turtle.stamp(); turtle.fd(30)
        ...
        >>> turtle.clearstamps(2)
        >>> turtle.clearstamps(-2)
        >>> turtle.clearstamps()
        Nr)rrr:)r�r�ZtoDeleter8r�r�r�r7,s
zRawTurtle.clearstampsc
Cs�|j|j|jt|jt�f}|j}d|j|||j|j	dd�|�
|j�|jdd�ff}|jrh|j�
|�|j}|j�r^|jdk�r^||}|d|jd|d|jd}dt|ddd|j|j�}|d	|}	x`td|�D]R}
|
dkr�d
}nd}||	|
|_|j�r4|�|j||jf|j|j|�|��q�W|j�r^|j|jdd
|jd�|j�rr|j	�|�t|jt��r�|j�|�||_|j�r�|j�|�t|j	�dk�r�|��|��dS)z�Move the pen to the point end, thereby drawing a line
        if pen is down. All other methods for turtle movement depend
        on this one.
        �goNr�rr�g�?r�g�������?g�?TF))rr)rrr�)rrz�*)r�r�r�r�r�r�r�r�r�rrer�r�rr�r�r'r(r�rbr6r�r:r-r�r�rcr�)r�r��go_modesr�Z
undo_entry�start�diff�diffsq�nhops�deltar�r2r�r�r�r�HsR

$$
zRawTurtle._gotocs$|\}}}}|\}}}}	|\}
}}�|j�t|j|�dkrDtd�|
|_||_|ddgkrbd}
n|}
�j|
||
|d���fdd�|jD�}x"|D]}��|�|j�	|�q�W|}|j
�r��jdk�r�||}|d	�jd
|d�j
d
}dt|ddd|j
|j
�}|d
|}x^td|�D]P}|dk�rFd}nd}||||_|�rx��|j||jf|||�|���q2W|�r��j|jdd|d�||_|j�r�t|j�d	k�r�|j��|jgk�r�d|_d|_|	�r|jgk�rd|_td�n|jdk	�r|j��|��dS)z)Reverse a _goto. Used for undo()
        g�?z$undogoto: HALLO-DA-STIMMT-WAS-NICHT!)rrr�)rrzcs&g|]}|�kr��|�dkr|�qS)r�)r^)r_r`)r�r�r�r�ra�s
z'RawTurtle._undogoto.<locals>.<listcomp>r�rr�r�g�������?g�?TF))rr)rrNzUnwahrscheinlich in _undogoto!)r�r�r�r�r�rr6r�r9r�r�r�r'r(r�rbr�r:r�rcr�r�r�)r��entry�old�newr ZcoodataZdrawingZpcZpsrBZcLIZcLrdZusepcZtodeleter`r!r"r#r$r%r�r2r�)r�r�r��	_undogoto}sb

$$






zRawTurtle._undogotocCs�|jr|j�d||jf�||j9}|j�|�}|jj}|dkr�|jdkr�d|j}dtt	|�|�}d||}x&t
|�D]}|j�|�|_|��q~W||_|��dS)z&Turns pen clockwise by angle.
        �rotr�rg@g�?N)r�rr�r�r�r�r�r�r�r�rbr:)r�r�Z	neworientr�Zanglevelr�r%r�r�r�r�r��s

zRawTurtle._rotateTcCsnt|j�dkrD|j�|j|j|j|j�|j��|_|j�	|j�n|jj|jdd�g|_|rj|j
g|_dS)z�Closes current line item and starts a new one.
           Remark: if current line became too long, animation
           performance (via _drawline) slowed down considerably.
        r�T)r2N)rcrr�r6r�r�r�r5r�r-r�)r�r�r�r�r�r��szRawTurtle._newLinecCst|jt�S)aReturn fillstate (True if filling, False else).

        No argument.

        Example (for a Turtle instance named turtle):
        >>> turtle.begin_fill()
        >>> if turtle.filling():
        ...     turtle.pensize(5)
        ... else:
        ...     turtle.pensize(3)
        )r�r�r�)r�r�r�r�rB�szRawTurtle.fillingcCsX|��s"|j��|_|j�|j�|jg|_|��|j	rL|j	�
d|jf�|��dS)aCalled just before drawing a shape to be filled.

        No argument.

        Example (for a Turtle instance named turtle):
        >>> turtle.color("black", "red")
        >>> turtle.begin_fill()
        >>> turtle.circle(60)
        >>> turtle.end_fill()
        �	beginfillN)rBr�r,r�r�r-r�r�r�r�rr:)r�r�r�r�r1�s
zRawTurtle.begin_fillcCs^|��rZt|j�dkrF|jj|j|j|jd�|jrF|j�d|jf�d|_|_|�	�dS)aFill the shape drawn after the call begin_fill().

        No argument.

        Example (for a Turtle instance named turtle):
        >>> turtle.color("black", "red")
        >>> turtle.begin_fill()
        >>> turtle.circle(60)
        >>> turtle.end_fill()
        r�)r�dofillN)
rBrcr�r�r4r�r�r�rr:)r�r�r�r�r>
s
zRawTurtle.end_fillc	Gs8|sNt|ttf�r0|�|�}|jt|jd�}qr|j}|sr|jt|jd�}n$|dkrh|jt|jd�}|�|�}t|jd�r�|j�	|j
||�}|j�|�|j
r�|j
�d|f�n�|��}|j
r�|j
�dg�d|j
_z>|��dkr�|��|��|�|�|�|�|�d�Wd|�|�X|j
�r4d	|j
_dS)
a�Draw a dot with diameter size, using color.

        Optional arguments:
        size -- an integer >= 1 (if given)
        color -- a colorstring or a numeric color tuple

        Draw a circular dot with diameter size, using color.
        If size is not given, the maximum of pensize+4 and 2*pensize is used.

        Example (for a Turtle instance named turtle):
        >>> turtle.dot()
        >>> turtle.fd(50); turtle.dot(20, "blue"); turtle.fd(50)
        r�N�_dotr<r�Tr�rF)r�r�r�r�r�rr��hasattrr�r-r�r�r-r�rrVr~rarMrXrYrWrC)r�rr9r8rVr�r�r�r<
s:



z
RawTurtle.dotcCsB|j�|j||||j�\}}|j�|�|jr>|j�d|f�|S)z)Performs the writing for write()
        �wri)r�rGr�r�r�r-r�r)r�rErFrDr8r�r�r�r�rGG
szRawTurtle._writerP��Arialr�r�cCs`|jr|j�dg�d|j_|�t|�|��|�}|rN|��\}}|�||�|jr\d|j_dS)a�Write text at the current turtle position.

        Arguments:
        arg -- info, which is to be written to the TurtleScreen
        move (optional) -- True/False
        align (optional) -- one of the strings "left", "center" or right"
        font (optional) -- a triple (fontname, fontsize, fonttype)

        Write text - the string representation of arg - at the current
        turtle position according to align ("left", "center" or right")
        and with the given font.
        If move is True, the pen is moved to the bottom-right corner
        of the text. By default, move is False.

        Example (for a Turtle instance named turtle):
        >>> turtle.write('Home = ', True, align="center")
        >>> turtle.write((0,0), True)
        r�TFN)r�rr~rGr�rtr[re)r��argZmoverFrDr�r�r�r�r�r�r{Q
szRawTurtle.writecCs|jg|_d|_dS)aStart recording the vertices of a polygon.

        No argument.

        Start recording the vertices of a polygon. Current turtle position
        is first point of polygon.

        Example (for a Turtle instance named turtle):
        >>> turtle.begin_poly()
        TN)r�r�r�)r�r�r�r�r2n
s
zRawTurtle.begin_polycCs
d|_dS)a7Stop recording the vertices of a polygon.

        No argument.

        Stop recording the vertices of a polygon. Current turtle position is
        last point of polygon. This will be connected with the first point.

        Example (for a Turtle instance named turtle):
        >>> turtle.end_poly()
        FN)r�)r�r�r�r�r?|
szRawTurtle.end_polycCs|jdk	rt|j�SdS)z�Return the lastly recorded polygon.

        No argument.

        Example (for a Turtle instance named turtle):
        >>> p = turtle.get_poly()
        >>> turtle.register_shape("myFavouriteShape", p)
        N)r�r�)r�r�r�r�rD�
s

zRawTurtle.get_polycCs|jS)a�Return the TurtleScreen object, the turtle is drawing  on.

        No argument.

        Return the TurtleScreen object, the turtle is drawing  on.
        So TurtleScreen-methods can be called for that object.

        Example (for a Turtle instance named turtle):
        >>> ts = turtle.getscreen()
        >>> ts
        <turtle.TurtleScreen object at 0x0106B770>
        >>> ts.bgcolor("pink")
        )r�)r�r�r�r�rF�
szRawTurtle.getscreencCs|S)aUReturn the Turtleobject itself.

        No argument.

        Only reasonable use: as a function to return the 'anonymous turtle':

        Example:
        >>> pet = getturtle()
        >>> pet.fd(50)
        >>> pet
        <turtle.Turtle object at 0x0187D810>
        >>> turtles()
        [<turtle.Turtle object at 0x0187D810>]
        r�)r�r�r�r�rH�
szRawTurtle.getturtlecCs|j�|�S)zDSet delay value which determines speed of turtle animation.
        )r�r)r�rr�r�r�r<�
szRawTurtle._delayr�cCs"|j�|jj|||�|��dS)a�Bind fun to mouse-click event on this turtle on canvas.

        Arguments:
        fun --  a function with two arguments, to which will be assigned
                the coordinates of the clicked point on the canvas.
        btn --  number of the mouse-button defaults to 1 (left mouse button).
        add --  True or False. If True, new binding will be added, otherwise
                it will replace a former binding.

        Example for the anonymous turtle, i. e. the procedural way:

        >>> def turn(x, y):
        ...     left(360)
        ...
        >>> onclick(turn)  # Now clicking into the turtle will turn it.
        >>> onclick(None)  # event-binding will be removed
        N)r�rPr�r�r:)r�rJr�rOr�r�r�rR�
szRawTurtle.onclickcCs"|j�|jj|||�|��dS)a�Bind fun to mouse-button-release event on this turtle on canvas.

        Arguments:
        fun -- a function with two arguments, to which will be assigned
                the coordinates of the clicked point on the canvas.
        btn --  number of the mouse-button defaults to 1 (left mouse button).

        Example (for a MyTurtle instance named joe):
        >>> class MyTurtle(Turtle):
        ...     def glow(self,x,y):
        ...             self.fillcolor("red")
        ...     def unglow(self,x,y):
        ...             self.fillcolor("")
        ...
        >>> joe = MyTurtle()
        >>> joe.onclick(joe.glow)
        >>> joe.onrelease(joe.unglow)

        Clicking on joe turns fillcolor red, unclicking turns it to
        transparent.
        N)r�rQr�r�r:)r�rJr�rOr�r�r�rT�
szRawTurtle.onreleasecCs|j�|jj|||�dS)a�Bind fun to mouse-move event on this turtle on canvas.

        Arguments:
        fun -- a function with two arguments, to which will be assigned
               the coordinates of the clicked point on the canvas.
        btn -- number of the mouse-button defaults to 1 (left mouse button).

        Every sequence of mouse-move-events on a turtle is preceded by a
        mouse-click event on that turtle.

        Example (for a Turtle instance named turtle):
        >>> turtle.ondrag(turtle.goto)

        Subsequently clicking and dragging a Turtle will move it
        across the screen thereby producing handdrawings (if pen is
        down).
        N)r�rRr�r�)r�rJr�rOr�r�r�rS�
szRawTurtle.ondragcCs,|jdkrdS|dkr@|\}}|�|||j�|j��}n�|dkr\|d}|�|�n�|dkrp|�|�n�|dkr�|d}|j�|�|j�	|�n�|dkr�|d}|jj
|dd	d	d
�nh|dk�r|d}d|_|_||jk�r(|j�|�|j�	|�n$|dk�r(t
�||d�|j��dS)
z2Does the main part of the work for undo()
        Nr*rrrr)r/r<r,))rr)rr)rrr�)rr+r+rV)r�r�r�r�r6r)r�r9r�r�r4r�r�r�rV)r��actionrwr�ZdegPAUZdummyrr8r�r�r��_undos8



zRawTurtle._undocCsp|jdkrdS|j��}|d}|dd�}|dkr`x6|r\|��}|�|d|dd��q6Wn|�||�dS)a�undo (repeatedly) the last turtle action.

        No argument.

        undo (repeatedly) the last turtle action.
        Number of available undo actions is determined by the size of
        the undobuffer.

        Example (for a Turtle instance named turtle):
        >>> for i in range(4):
        ...     turtle.fd(50); turtle.lt(80)
        ...
        >>> for i in range(8):
        ...     turtle.undo()
        ...
        Nrr�r�)r�r�r4)r�r8r3rwr�r�r�rw&s

zRawTurtle.undo)NN)N)NNN)N)N)NNNN)F)N)T)N)FrPr0)N)r�N)r�N)r�N)9r�r�r�r�r�r�r�r`rhrxrr5r�r:r�r�r�rr8rkrlrnrgrtrsrmrrGrr�rrrr6r7r�r)r�r�rBr1r>r<rGr{r2r?rDrFrHrEr<rRrTrSr4rwrvr�r�r�r�r
�	sp%

(

(


(

(-
5A

0







 cCstjdkrt�t_tjS)z�Return the singleton screen object.
    If none exists at the moment, create a new one and return it,
    else return the existing one.N)r�_screenr�r�r�r�r�r	Is
c@sfeZdZdZdZedZdd�Zededededfd	d
�Zdd�Z	d
d�Z
dd�Zdd�ZdS)r�Nr)cCs�tjdkr4t�t_|_|j�tj�|j�|j�tjdkr�td}td}td}td}td}td}|j�	||||�|j�
�t_t�|tj�|�
||||�dS)Nrzr�r�r�r�r�)r��_rootrr)�_titler�_destroyr�r�rrrr�r&)r�rzr�r�r�r�r�r�r�r�r�Ws

z_Screen.__init__rzr�r�r�cCs�t|jd�sdS|j��}|j��}t|t�rNd|krBdkrNnn||}|dkrb||d}t|t�r�d|kr�dkr�nn||}|dkr�||d}|j�||||�|��dS)a Set the size and position of the main window.

        Arguments:
        width: as integer a size in pixels, as float a fraction of the screen.
          Default is 50% of screen.
        height: as integer the height in pixels, as float a fraction of the
          screen. Default is 75% of screen.
        startx: if positive, starting position in pixels from the left
          edge of the screen, if negative from the right edge
          Default, startx=None is to center window horizontally.
        starty: if positive, starting position in pixels from the top
          edge of the screen, if negative from the bottom edge
          Default, starty=None is to center window vertically.

        Examples (for a Screen instance named screen):
        >>> screen.setup (width=200, height=200, startx=0, starty=0)

        sets window to 200x200 pixels, in upper left of screen

        >>> screen.setup(width=.75, height=0.5, startx=None, starty=None)

        sets window to 75% of screen by 50% of screen and centers
        rNrr�r�)r.r6rrr�r�rr,)r�rzr�rrr@Zshr�r�r�r&ms

""z
_Screen.setupcCs tjdk	rtj�|�|t_dS)aqSet title of turtle-window

        Argument:
        titlestring -- a string, to appear in the titlebar of the
                       turtle graphics window.

        This is a method of Screen-class. Not available for TurtleScreen-
        objects.

        Example (for a Screen instance named screen):
        >>> screen.title("Welcome to the turtle-zoo!")
        N)r�r6r)r7)r�Ztitlestringr�r�r�r)�s
z
_Screen.titlecCs:|j}|tjkr(dt_dt_dt_dt_dt_|��dS)NF)	r6r�rr�r5r�rr�r)r��rootr�r�r�r8�s
z_Screen._destroycCs|��dS)z~Shut the turtlegraphics window.

        Example (for a TurtleScreen instance named screen):
        >>> screen.bye()
        N)r8)r�r�r�r�r�sz_Screen.byecsN�fdd�}��|�tdr"dSy
t�Wntk
rHtd�YnXdS)alGo into mainloop until the mouse is clicked.

        No arguments.

        Bind bye() method to mouseclick on TurtleScreen.
        If "using_IDLE" - value in configuration dictionary is False
        (default value), enter mainloop.
        If IDLE with -n switch (no subprocess) is used, this value should be
        set to True in turtle.cfg. In this case IDLE's mainloop
        is active also for the client script.

        This is a method of the Screen-class and not available for
        TurtleScreen instances.

        Example (for a Screen instance named screen):
        >>> screen.exitonclick()

        cs���dS)z&Screen.bye() with two dummy-parametersN)r)r�r�)r�r�r��exitGracefully�sz+_Screen.exitonclick.<locals>.exitGracefullyr�Nr)rRr�r�AttributeError�exit)r�r:r�)r�r�r�s

z_Screen.exitonclick)
r�r�r�r6r�r�r7r�r&r)r8rrr�r�r�r�r�Qs'
r�c@s4eZdZdZdZdZedededfdd�ZdS)rz�RawTurtle auto-creating (scrolled) canvas.

    When a Turtle object is created or a function derived from some
    Turtle method is called a TurtleScreen object is automatically created.
    Nrkr�r�cCs,tjdkrt�t_tj|tj|||d�dS)N)rkr�r�)rr5r	r
r�)r�rkr�r�r�r�r�r��s

zTurtle.__init__)r�r�r�r�r�r5r�r�r�r�r�r�r�s�turtle_docstringdictc	Cs�i}x"tD]}d|}t|�j||<q
Wx"tD]}d|}t|�j||<q.Wtd|d���}tdd�|D��}|�d�x8|dd	�D](}|�d
t|��|�d||�q�W|d	}|�d
t|��|�d||�|�d
�|��WdQRXdS)a�Create and write docstring-dictionary to file.

    Optional argument:
    filename -- a string, used as filename
                default value is turtle_docstringdict

    Has to be called explicitly, (not used by the turtle-graphics classes)
    The docstring dictionary will be written to the Python script <filname>.py
    It is intended to serve as a template for translation of the docstrings
    into different languages.
    z_Screen.zTurtle.z%s.pyr)css$|]}|�d�dtkr|VqdS)r�r�N)r�_alias_list)r_r�r�r�r�r�sz&write_docstringdict.<locals>.<genexpr>zdocsdict = {

Nr�z%s :
z        """%s
""",

z        """%s
"""

z}
)	�_tg_screen_functionsr�r��_tg_turtle_functionsr�r�r{�repr�close)r��docsdict�
methodnamer�r�r�r�r�r�r~�s$



c	Csddd|��i}t|�}|j}x@|D]8}y||t|�_Wq$tk
rZtd|�Yq$Xq$WdS)z�Read in docstrings from lang-specific docstring dictionary.

    Transfer docstrings, translated to lang, from a dictionary-file
    to the methods of classes Screen and Turtle and - in revised form -
    to the corresponding functions.
    z!turtle_docstringdict_%(language)sr�zBad docstring-entry: %sN)rt�
__import__rCr�r�r�r�)Zlang�modname�modulerCr�r�r�r��read_docstringss
rHr�zCannot find docsdict forz;Unknown Error when trying to import %s-docstring-dictionaryc
Cs�d}}t�|j�\}}}|dd�}|dd�}|jp:g}dd�|D�}dgt|�t|�|}dd�t||�D�}	|dk	r�|	�d|�|�d|�|dk	r�|	�d|�|�d|�d	�|	�}d
|}d	�|�}d
|}||fS)a?Get strings describing the arguments for the given object

    Returns a pair of strings representing function parameter lists
    including parenthesis.  The first string is suitable for use in
    function definition and the second is suitable for use in function
    call.  The "self" parameter is not included.
    r�r�NcSsg|]}d|f�qS)z=%rr�)r_r�r�r�r�ra;sz"getmethparlist.<locals>.<listcomp>cSsg|]\}}||�qSr�r�)r_r2Zdfltr�r�r�ra=s�*z**z, z(%s))�inspectZgetargs�__code__�__defaults__rcrr-r)
ZobZdefTextZcallTextrZvarargsZvarkwZitems2ZrealArgs�defaultsZitems1r�r�r��getmethparlist+s&


rNcCsJddl}|dkrdStd}|�d|d�}|�d|�}|�d|�}|S)z<To reduce docstrings from RawTurtle class for functions
    rNr�z%s.r�z \(.+ %s\):�:)�rer��replace�compile�sub)�docstrrPZ
turtlename�	newdocstr�parexpr�r�r��_turtle_docreviseJsrWcCsJddl}|dkrdStd}|�d|d�}|�d|�}|�d|�}|S)z?To reduce docstrings from TurtleScreen class for functions
    rNr�z%s.r�z \(.+ %s\):rO)rPr�rQrRrS)rTrPZ
screennamerUrVr�r�r��_screen_docreviseVsrXardef {name}{paramslist}:
    if {obj} is None:
        if not TurtleScreen._RUNNING:
            TurtleScreen._RUNNING = True
            raise Terminator
        {obj} = {init}
    try:
        return {obj}.{name}{argslist}
    except TK.TclError:
        if not TurtleScreen._RUNNING:
            TurtleScreen._RUNNING = True
            raise Terminator
        raise
c
Cspxj|D]b}t||�}t|�\}}|dkr6td||�qtj|||||d�}	t|	t��||j�t�|_qWdS)Nr�z>>>>>>)�obj�initr�Z
paramslistZargslist)�getattrrNr��__func_body�formatr��globalsr�)
Z	functionsr�rYrZZ	docreviserDr�Zpl1Zpl2Zdefstrr�r�r��_make_global_funcsvs



r_zTurtle._screenzScreen()zTurtle._penzTurtle()�__main__cCst�rt�nt�dS)N)rNr]rUr�r�r�r��	switchpen�sracCs~t�td�t�td�t�td�xjtd�D]^}|dkrFt�x td�D]}td�t	d�qPW|dkr~t
d�t�t�td	�t�q4Wtd
�t
d�td�t�td�td�td�td�td
�t�t
dd
�t
dd
�t
d�x2td�D]&}td�t	d�td�td��qWtd�t�x2td�D]&}td�t	d�td�td��qJWt�dS)zDemo of old turtle.py - moduleT�dr�r�r�r��ZZmaroonrr�r�F�Z
startstartr!�redr�N)r`r*ryr0r=rzrbr1rCrPr9r>r_r{)r`r�r�r�r��demo1�sX


rfcCs^td�t�td�ttdd��tdd�d}td�x td�D]}t�t	|d�qDWt
d�xt�rtt�qfWt
�td�td	�d}td
�td�td�x�tdd
�D]t}|dkr�t�td	d|dd|�x td�D]}t|�td�q�Wt�|d7}td�tt�dd�q�Wtd�t�td�td�t�tdd�td�t�x4td�D](}t	dd�td�td�td��qrWt�td�t�td�t�td�t�}|�d�t�}|�d�|�d�|�
�|�d�|�d�|��|�dd�|�d�|��|�d�|�dd�|�d�|�d�tt|��d}xp|�|�dk�r�|�d�|�d �|�|�|��|�d�|d!dk�r�|� �|� �t�|d7}�qpW|j
d"d#d$d%�|�d&�|�d�d'd(�}t!�"d�xt��r4|��|���qW|�d�|j
d)d*d+�|�#|d�d,S)-zDemo of some new features.r�r�rg@rc�r�zwait a moment...r�Zgreenrdr�r���x��FrreZyellowr��2r�r�i�(r�ZblueZoranger�g@g333333�?r�zCAUGHT! )r1r��boldr_)rDrFr�cSst�t�dS)N)rr)r�r�r�r�r��babaszdemo2.<locals>.babaz  Click me!)ZCourierrjrn)rDN)$rprqrYrdrur;rbrbrar4r{rxrwr`rQrrWr1rAr@r>r]rUr9rkrHrarrPryrIr=rr�timeZsleeprR)r�r�Zlaenger`Ztrir�r�ror�r�r��demo2�s�



















rq)r�)r=)Fr�Z_verZtkinterr�r�r�rprJr�Zos.pathrrr�copyrrZ_tg_classesr?r@Z
_tg_utilities�__all__r>r�r�r�r�r�r�rr�r�r�r�r�rr�rr�objectr r�rqrrzrr�r�r�r
rr	r�rr
r~rHZ	_LANGUAGE�ImportErrorrNrWrXr\r_rrr�rarfrqrr�r�r�r��<module>es







4

c	/&.O}
"



5c


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
25 Jul 2024 8.44 AM
root / linksafe
0755
__future__.cpython-37.opt-1.pyc
4.032 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
__future__.cpython-37.opt-2.pyc
2.103 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
__future__.cpython-37.pyc
4.032 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
__phello__.foo.cpython-37.opt-1.pyc
0.135 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
__phello__.foo.cpython-37.opt-2.pyc
0.135 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
__phello__.foo.cpython-37.pyc
0.135 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_bootlocale.cpython-37.opt-1.pyc
1.191 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_bootlocale.cpython-37.opt-2.pyc
0.972 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_bootlocale.cpython-37.pyc
1.217 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_collections_abc.cpython-37.opt-1.pyc
28.261 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_collections_abc.cpython-37.opt-2.pyc
23.228 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_collections_abc.cpython-37.pyc
28.261 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_compat_pickle.cpython-37.opt-1.pyc
5.612 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_compat_pickle.cpython-37.opt-2.pyc
5.612 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_compat_pickle.cpython-37.pyc
5.669 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_compression.cpython-37.opt-1.pyc
4.024 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_compression.cpython-37.opt-2.pyc
3.813 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_compression.cpython-37.pyc
4.024 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_dummy_thread.cpython-37.opt-1.pyc
5.846 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_dummy_thread.cpython-37.opt-2.pyc
3.26 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_dummy_thread.cpython-37.pyc
5.846 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_markupbase.cpython-37.opt-1.pyc
7.435 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_markupbase.cpython-37.opt-2.pyc
7.063 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_markupbase.cpython-37.pyc
7.6 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_osx_support.cpython-37.opt-1.pyc
10.054 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_osx_support.cpython-37.opt-2.pyc
7.662 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_osx_support.cpython-37.pyc
10.054 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_py_abc.cpython-37.opt-1.pyc
4.505 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_py_abc.cpython-37.opt-2.pyc
3.314 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_py_abc.cpython-37.pyc
4.542 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_pydecimal.cpython-37.opt-1.pyc
158.399 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_pydecimal.cpython-37.opt-2.pyc
79.156 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_pydecimal.cpython-37.pyc
158.399 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_pyio.cpython-37.opt-1.pyc
71.215 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_pyio.cpython-37.opt-2.pyc
49.233 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_pyio.cpython-37.pyc
71.234 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_sitebuiltins.cpython-37.opt-1.pyc
3.381 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_sitebuiltins.cpython-37.opt-2.pyc
2.869 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_sitebuiltins.cpython-37.pyc
3.381 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_strptime.cpython-37.opt-1.pyc
15.724 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_strptime.cpython-37.opt-2.pyc
12.081 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_strptime.cpython-37.pyc
15.724 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_sysconfigdata_dm_linux_x86_64-linux-gnu.cpython-37.opt-1.pyc
23.451 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_sysconfigdata_dm_linux_x86_64-linux-gnu.cpython-37.opt-2.pyc
23.451 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_sysconfigdata_dm_linux_x86_64-linux-gnu.cpython-37.pyc
23.451 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-37.opt-1.pyc
22.004 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-37.opt-2.pyc
22.004 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-37.pyc
22.004 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_threading_local.cpython-37.opt-1.pyc
6.259 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_threading_local.cpython-37.opt-2.pyc
3.021 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_threading_local.cpython-37.pyc
6.259 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_weakrefset.cpython-37.opt-1.pyc
7.284 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
_weakrefset.cpython-37.opt-2.pyc
7.284 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
_weakrefset.cpython-37.pyc
7.284 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
abc.cpython-37.opt-1.pyc
6.297 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
abc.cpython-37.opt-2.pyc
3.135 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
abc.cpython-37.pyc
6.297 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
aifc.cpython-37.opt-1.pyc
25.527 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
aifc.cpython-37.opt-2.pyc
20.444 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
aifc.cpython-37.pyc
25.527 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
antigravity.cpython-37.opt-1.pyc
0.779 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
antigravity.cpython-37.opt-2.pyc
0.639 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
antigravity.cpython-37.pyc
0.779 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
argparse.cpython-37.opt-1.pyc
60.397 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
argparse.cpython-37.opt-2.pyc
51.373 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
argparse.cpython-37.pyc
60.528 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
ast.cpython-37.opt-1.pyc
11.438 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
ast.cpython-37.opt-2.pyc
5.818 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
ast.cpython-37.pyc
11.438 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
asynchat.cpython-37.opt-1.pyc
6.671 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
asynchat.cpython-37.opt-2.pyc
5.327 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
asynchat.cpython-37.pyc
6.671 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
asyncore.cpython-37.opt-1.pyc
15.47 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
asyncore.cpython-37.opt-2.pyc
14.294 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
asyncore.cpython-37.pyc
15.47 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
base64.cpython-37.opt-1.pyc
16.43 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
base64.cpython-37.opt-2.pyc
10.963 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
base64.cpython-37.pyc
16.589 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
bdb.cpython-37.opt-1.pyc
23.997 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
bdb.cpython-37.opt-2.pyc
15.141 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
bdb.cpython-37.pyc
23.997 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
binhex.cpython-37.opt-1.pyc
11.773 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
binhex.cpython-37.opt-2.pyc
11.253 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
binhex.cpython-37.pyc
11.773 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
bisect.cpython-37.opt-1.pyc
2.632 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
bisect.cpython-37.opt-2.pyc
1.366 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
bisect.cpython-37.pyc
2.632 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
bz2.cpython-37.opt-1.pyc
10.916 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
bz2.cpython-37.opt-2.pyc
5.978 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
bz2.cpython-37.pyc
10.916 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
cProfile.cpython-37.opt-1.pyc
4.692 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
cProfile.cpython-37.opt-2.pyc
4.242 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
cProfile.cpython-37.pyc
4.692 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
calendar.cpython-37.opt-1.pyc
26.778 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
calendar.cpython-37.opt-2.pyc
22.076 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
calendar.cpython-37.pyc
26.778 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
cgi.cpython-37.opt-1.pyc
26.861 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
cgi.cpython-37.opt-2.pyc
18.53 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
cgi.cpython-37.pyc
26.861 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
cgitb.cpython-37.opt-1.pyc
9.872 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
cgitb.cpython-37.opt-2.pyc
8.311 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
cgitb.cpython-37.pyc
9.872 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
chunk.cpython-37.opt-1.pyc
4.801 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
chunk.cpython-37.opt-2.pyc
2.705 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
chunk.cpython-37.pyc
4.801 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
cmd.cpython-37.opt-1.pyc
12.292 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
cmd.cpython-37.opt-2.pyc
6.98 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
cmd.cpython-37.pyc
12.292 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
code.cpython-37.opt-1.pyc
9.627 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
code.cpython-37.opt-2.pyc
4.472 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
code.cpython-37.pyc
9.627 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
codecs.cpython-37.opt-1.pyc
33.313 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
codecs.cpython-37.opt-2.pyc
17.837 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
codecs.cpython-37.pyc
33.313 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
codeop.cpython-37.opt-1.pyc
6.277 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
codeop.cpython-37.opt-2.pyc
2.304 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
codeop.cpython-37.pyc
6.277 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
colorsys.cpython-37.opt-1.pyc
3.217 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
colorsys.cpython-37.opt-2.pyc
2.625 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
colorsys.cpython-37.pyc
3.217 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
compileall.cpython-37.opt-1.pyc
9.112 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
compileall.cpython-37.opt-2.pyc
6.793 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
compileall.cpython-37.pyc
9.112 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
configparser.cpython-37.opt-1.pyc
44.802 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
configparser.cpython-37.opt-2.pyc
30.18 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
configparser.cpython-37.pyc
44.802 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
contextlib.cpython-37.opt-1.pyc
19.951 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
contextlib.cpython-37.opt-2.pyc
14.329 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
contextlib.cpython-37.pyc
19.977 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
contextvars.cpython-37.opt-1.pyc
0.248 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
contextvars.cpython-37.opt-2.pyc
0.248 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
contextvars.cpython-37.pyc
0.248 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
copy.cpython-37.opt-1.pyc
6.953 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
copy.cpython-37.opt-2.pyc
4.691 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
copy.cpython-37.pyc
6.953 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
copyreg.cpython-37.opt-1.pyc
4.107 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
copyreg.cpython-37.opt-2.pyc
3.322 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
copyreg.cpython-37.pyc
4.142 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
crypt.cpython-37.opt-1.pyc
3.058 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
crypt.cpython-37.opt-2.pyc
2.409 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
crypt.cpython-37.pyc
3.058 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
csv.cpython-37.opt-1.pyc
11.552 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
csv.cpython-37.opt-2.pyc
9.561 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
csv.cpython-37.pyc
11.552 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
dataclasses.cpython-37.opt-1.pyc
22.481 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
dataclasses.cpython-37.opt-2.pyc
19.119 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
dataclasses.cpython-37.pyc
22.481 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
datetime.cpython-37.opt-1.pyc
54.621 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
datetime.cpython-37.opt-2.pyc
45.73 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
datetime.cpython-37.pyc
55.883 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
decimal.cpython-37.opt-1.pyc
0.361 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
decimal.cpython-37.opt-2.pyc
0.361 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
decimal.cpython-37.pyc
0.361 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
difflib.cpython-37.opt-1.pyc
58.011 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
difflib.cpython-37.opt-2.pyc
24.245 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
difflib.cpython-37.pyc
58.048 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
dis.cpython-37.opt-1.pyc
14.846 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
dis.cpython-37.opt-2.pyc
11.128 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
dis.cpython-37.pyc
14.846 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
doctest.cpython-37.opt-1.pyc
73.564 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
doctest.cpython-37.opt-2.pyc
39.065 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
doctest.cpython-37.pyc
73.804 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
dummy_threading.cpython-37.opt-1.pyc
1.095 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
dummy_threading.cpython-37.opt-2.pyc
0.73 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
dummy_threading.cpython-37.pyc
1.095 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
enum.cpython-37.opt-1.pyc
23.805 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
enum.cpython-37.opt-2.pyc
19.614 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
enum.cpython-37.pyc
23.805 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
filecmp.cpython-37.opt-1.pyc
8.109 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
filecmp.cpython-37.opt-2.pyc
5.749 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
filecmp.cpython-37.pyc
8.109 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
fileinput.cpython-37.opt-1.pyc
12.941 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
fileinput.cpython-37.opt-2.pyc
7.477 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
fileinput.cpython-37.pyc
12.941 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
fnmatch.cpython-37.opt-1.pyc
3.256 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
fnmatch.cpython-37.opt-2.pyc
2.095 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
fnmatch.cpython-37.pyc
3.256 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
formatter.cpython-37.opt-1.pyc
17.139 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
formatter.cpython-37.opt-2.pyc
14.756 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
formatter.cpython-37.pyc
17.139 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
fractions.cpython-37.opt-1.pyc
17.994 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
fractions.cpython-37.opt-2.pyc
10.879 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
fractions.cpython-37.pyc
17.994 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
ftplib.cpython-37.opt-1.pyc
27.561 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
ftplib.cpython-37.opt-2.pyc
17.986 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
ftplib.cpython-37.pyc
27.561 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
functools.cpython-37.opt-1.pyc
23.563 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
functools.cpython-37.opt-2.pyc
17.776 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
functools.cpython-37.pyc
23.66 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
genericpath.cpython-37.opt-1.pyc
3.81 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
genericpath.cpython-37.opt-2.pyc
2.688 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
genericpath.cpython-37.pyc
3.81 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
getopt.cpython-37.opt-1.pyc
6.057 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
getopt.cpython-37.opt-2.pyc
3.563 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
getopt.cpython-37.pyc
6.09 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
getpass.cpython-37.opt-1.pyc
4.063 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
getpass.cpython-37.opt-2.pyc
2.906 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
getpass.cpython-37.pyc
4.063 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
gettext.cpython-37.opt-1.pyc
13.833 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
gettext.cpython-37.opt-2.pyc
13.158 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
gettext.cpython-37.pyc
13.833 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
glob.cpython-37.opt-1.pyc
4.093 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
glob.cpython-37.opt-2.pyc
3.253 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
glob.cpython-37.pyc
4.156 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
gzip.cpython-37.opt-1.pyc
16.945 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
gzip.cpython-37.opt-2.pyc
13.229 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
gzip.cpython-37.pyc
16.945 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
hashlib.cpython-37.opt-1.pyc
6.434 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
hashlib.cpython-37.opt-2.pyc
5.875 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
hashlib.cpython-37.pyc
6.434 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
heapq.cpython-37.opt-1.pyc
14.022 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
heapq.cpython-37.opt-2.pyc
11.103 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
heapq.cpython-37.pyc
14.022 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
hmac.cpython-37.opt-1.pyc
5.967 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
hmac.cpython-37.opt-2.pyc
3.828 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
hmac.cpython-37.pyc
5.967 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
imaplib.cpython-37.opt-1.pyc
38.297 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
imaplib.cpython-37.opt-2.pyc
26.492 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
imaplib.cpython-37.pyc
40.456 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
imghdr.cpython-37.opt-1.pyc
4.042 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
imghdr.cpython-37.opt-2.pyc
3.734 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
imghdr.cpython-37.pyc
4.042 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
imp.cpython-37.opt-1.pyc
9.521 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
imp.cpython-37.opt-2.pyc
7.175 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
imp.cpython-37.pyc
9.521 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
inspect.cpython-37.opt-1.pyc
77.892 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
inspect.cpython-37.opt-2.pyc
52.994 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
inspect.cpython-37.pyc
78.164 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
io.cpython-37.opt-1.pyc
3.326 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
io.cpython-37.opt-2.pyc
1.87 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
io.cpython-37.pyc
3.326 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
ipaddress.cpython-37.opt-1.pyc
61.342 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
ipaddress.cpython-37.opt-2.pyc
36.08 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
ipaddress.cpython-37.pyc
61.342 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
keyword.cpython-37.opt-1.pyc
1.764 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
keyword.cpython-37.opt-2.pyc
1.502 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
keyword.cpython-37.pyc
1.764 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
linecache.cpython-37.opt-1.pyc
3.725 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
linecache.cpython-37.opt-2.pyc
2.646 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
linecache.cpython-37.pyc
3.725 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
locale.cpython-37.opt-1.pyc
33.774 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
locale.cpython-37.opt-2.pyc
29.256 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
locale.cpython-37.pyc
33.774 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
lzma.cpython-37.opt-1.pyc
11.656 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
lzma.cpython-37.opt-2.pyc
5.61 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
lzma.cpython-37.pyc
11.656 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
macpath.cpython-37.opt-1.pyc
5.668 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
macpath.cpython-37.opt-2.pyc
4.432 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
macpath.cpython-37.pyc
5.668 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
mailbox.cpython-37.opt-1.pyc
62.073 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
mailbox.cpython-37.opt-2.pyc
53.141 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
mailbox.cpython-37.pyc
62.153 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
mailcap.cpython-37.opt-1.pyc
7.04 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
mailcap.cpython-37.opt-2.pyc
5.507 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
mailcap.cpython-37.pyc
7.04 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
mimetypes.cpython-37.opt-1.pyc
15.355 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
mimetypes.cpython-37.opt-2.pyc
9.498 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
mimetypes.cpython-37.pyc
15.355 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
modulefinder.cpython-37.opt-1.pyc
14.929 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
modulefinder.cpython-37.opt-2.pyc
14.107 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
modulefinder.cpython-37.pyc
14.989 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
netrc.cpython-37.opt-1.pyc
3.672 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
netrc.cpython-37.opt-2.pyc
3.439 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
netrc.cpython-37.pyc
3.672 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
nntplib.cpython-37.opt-1.pyc
32.956 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
nntplib.cpython-37.opt-2.pyc
20.709 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
nntplib.cpython-37.pyc
32.956 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
ntpath.cpython-37.opt-1.pyc
12.696 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
ntpath.cpython-37.opt-2.pyc
10.695 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
ntpath.cpython-37.pyc
12.696 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
nturl2path.cpython-37.opt-1.pyc
1.574 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
nturl2path.cpython-37.opt-2.pyc
1.165 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
nturl2path.cpython-37.pyc
1.574 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
numbers.cpython-37.opt-1.pyc
11.903 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
numbers.cpython-37.opt-2.pyc
8.034 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
numbers.cpython-37.pyc
11.903 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
opcode.cpython-37.opt-1.pyc
5.249 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
opcode.cpython-37.opt-2.pyc
5.112 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
opcode.cpython-37.pyc
5.249 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
operator.cpython-37.opt-1.pyc
13.571 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
operator.cpython-37.opt-2.pyc
11.17 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
operator.cpython-37.pyc
13.571 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
optparse.cpython-37.opt-1.pyc
46.701 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
optparse.cpython-37.opt-2.pyc
34.636 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
optparse.cpython-37.pyc
46.768 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
os.cpython-37.opt-1.pyc
29.065 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
os.cpython-37.opt-2.pyc
17.464 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
os.cpython-37.pyc
29.097 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pathlib.cpython-37.opt-1.pyc
41.266 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pathlib.cpython-37.opt-2.pyc
33.551 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
pathlib.cpython-37.pyc
41.266 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pdb.cpython-37.opt-1.pyc
45.734 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pdb.cpython-37.opt-2.pyc
31.997 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
pdb.cpython-37.pyc
45.788 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pickle.cpython-37.opt-1.pyc
41.915 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pickle.cpython-37.opt-2.pyc
37.239 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
pickle.cpython-37.pyc
42.029 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pickletools.cpython-37.opt-1.pyc
62.996 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pickletools.cpython-37.opt-2.pyc
54.589 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
pickletools.cpython-37.pyc
63.797 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pipes.cpython-37.opt-1.pyc
7.617 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pipes.cpython-37.opt-2.pyc
4.812 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
pipes.cpython-37.pyc
7.617 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pkgutil.cpython-37.opt-1.pyc
15.974 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pkgutil.cpython-37.opt-2.pyc
10.837 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
pkgutil.cpython-37.pyc
15.974 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
platform.cpython-37.opt-1.pyc
27.52 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
platform.cpython-37.opt-2.pyc
18.502 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
platform.cpython-37.pyc
27.52 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
plistlib.cpython-37.opt-1.pyc
24.882 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
plistlib.cpython-37.opt-2.pyc
21.904 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
plistlib.cpython-37.pyc
24.947 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
poplib.cpython-37.opt-1.pyc
13.021 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
poplib.cpython-37.opt-2.pyc
8.205 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
poplib.cpython-37.pyc
13.021 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
posixpath.cpython-37.opt-1.pyc
10.182 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
posixpath.cpython-37.opt-2.pyc
8.501 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
posixpath.cpython-37.pyc
10.182 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pprint.cpython-37.opt-1.pyc
15.409 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pprint.cpython-37.opt-2.pyc
13.394 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
pprint.cpython-37.pyc
15.459 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
profile.cpython-37.opt-1.pyc
13.577 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
profile.cpython-37.opt-2.pyc
10.665 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
profile.cpython-37.pyc
13.759 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pstats.cpython-37.opt-1.pyc
21.769 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pstats.cpython-37.opt-2.pyc
19.305 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
pstats.cpython-37.pyc
21.769 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pty.cpython-37.opt-1.pyc
3.789 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pty.cpython-37.opt-2.pyc
2.956 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
pty.cpython-37.pyc
3.789 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
py_compile.cpython-37.opt-1.pyc
7.02 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
py_compile.cpython-37.opt-2.pyc
3.471 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
py_compile.cpython-37.pyc
7.02 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pyclbr.cpython-37.opt-1.pyc
10.127 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pyclbr.cpython-37.opt-2.pyc
6.604 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
pyclbr.cpython-37.pyc
10.127 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pydoc.cpython-37.opt-1.pyc
81.653 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pydoc.cpython-37.opt-2.pyc
72.182 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
pydoc.cpython-37.pyc
81.705 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
queue.cpython-37.opt-1.pyc
11.2 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
queue.cpython-37.opt-2.pyc
6.231 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
queue.cpython-37.pyc
11.2 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
quopri.cpython-37.opt-1.pyc
5.462 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
quopri.cpython-37.opt-2.pyc
4.45 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
quopri.cpython-37.pyc
5.633 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
random.cpython-37.opt-1.pyc
18.95 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
random.cpython-37.opt-2.pyc
12.563 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
random.cpython-37.pyc
18.95 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
re.cpython-37.opt-1.pyc
13.589 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
re.cpython-37.opt-2.pyc
5.425 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
re.cpython-37.pyc
13.589 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
reprlib.cpython-37.opt-1.pyc
5.222 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
reprlib.cpython-37.opt-2.pyc
5.069 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
reprlib.cpython-37.pyc
5.222 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
rlcompleter.cpython-37.opt-1.pyc
5.609 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
rlcompleter.cpython-37.opt-2.pyc
3.009 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
rlcompleter.cpython-37.pyc
5.609 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
runpy.cpython-37.opt-1.pyc
7.756 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
runpy.cpython-37.opt-2.pyc
6.249 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
runpy.cpython-37.pyc
7.756 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
sched.cpython-37.opt-1.pyc
6.365 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
sched.cpython-37.opt-2.pyc
3.396 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
sched.cpython-37.pyc
6.365 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
secrets.cpython-37.opt-1.pyc
2.13 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
secrets.cpython-37.opt-2.pyc
1.097 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
secrets.cpython-37.pyc
2.13 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
selectors.cpython-37.opt-1.pyc
16.548 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
selectors.cpython-37.opt-2.pyc
12.592 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
selectors.cpython-37.pyc
16.548 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
shelve.cpython-37.opt-1.pyc
9.28 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
shelve.cpython-37.opt-2.pyc
5.225 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
shelve.cpython-37.pyc
9.28 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
shlex.cpython-37.opt-1.pyc
7.014 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
shlex.cpython-37.opt-2.pyc
6.469 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
shlex.cpython-37.pyc
7.014 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
shutil.cpython-37.opt-1.pyc
30.251 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
shutil.cpython-37.opt-2.pyc
19.73 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
shutil.cpython-37.pyc
30.251 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
signal.cpython-37.opt-1.pyc
2.45 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
signal.cpython-37.opt-2.pyc
2.228 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
signal.cpython-37.pyc
2.45 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
site.cpython-37.opt-1.pyc
16.25 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
site.cpython-37.opt-2.pyc
10.83 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
site.cpython-37.pyc
16.25 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
smtpd.cpython-37.opt-1.pyc
25.978 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
smtpd.cpython-37.opt-2.pyc
23.42 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
smtpd.cpython-37.pyc
25.978 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
smtplib.cpython-37.opt-1.pyc
34.595 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
smtplib.cpython-37.opt-2.pyc
18.567 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
smtplib.cpython-37.pyc
34.654 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
sndhdr.cpython-37.opt-1.pyc
6.738 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
sndhdr.cpython-37.opt-2.pyc
5.493 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
sndhdr.cpython-37.pyc
6.738 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
socket.cpython-37.opt-1.pyc
21.479 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
socket.cpython-37.opt-2.pyc
14.219 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
socket.cpython-37.pyc
21.518 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
socketserver.cpython-37.opt-1.pyc
23.63 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
socketserver.cpython-37.opt-2.pyc
12.959 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
socketserver.cpython-37.pyc
23.63 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
sre_compile.cpython-37.opt-1.pyc
14.623 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
sre_compile.cpython-37.opt-2.pyc
14.219 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
sre_compile.cpython-37.pyc
14.844 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
sre_constants.cpython-37.opt-1.pyc
6.141 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
sre_constants.cpython-37.opt-2.pyc
5.726 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
sre_constants.cpython-37.pyc
6.141 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
sre_parse.cpython-37.opt-1.pyc
20.738 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
sre_parse.cpython-37.opt-2.pyc
20.691 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
sre_parse.cpython-37.pyc
20.784 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
ssl.cpython-37.opt-1.pyc
38.464 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
ssl.cpython-37.opt-2.pyc
29.181 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
ssl.cpython-37.pyc
38.464 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
stat.cpython-37.opt-1.pyc
4.239 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
stat.cpython-37.opt-2.pyc
3.461 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
stat.cpython-37.pyc
4.239 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
statistics.cpython-37.opt-1.pyc
17.506 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
statistics.cpython-37.opt-2.pyc
7.069 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
statistics.cpython-37.pyc
17.735 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
string.cpython-37.opt-1.pyc
7.648 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
string.cpython-37.opt-2.pyc
6.568 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
string.cpython-37.pyc
7.648 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
stringprep.cpython-37.opt-1.pyc
9.737 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
stringprep.cpython-37.opt-2.pyc
9.522 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
stringprep.cpython-37.pyc
9.794 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
struct.cpython-37.opt-1.pyc
0.323 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
struct.cpython-37.opt-2.pyc
0.323 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
struct.cpython-37.pyc
0.323 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
subprocess.cpython-37.opt-1.pyc
38.424 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
subprocess.cpython-37.opt-2.pyc
26.989 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
subprocess.cpython-37.pyc
38.526 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
sunau.cpython-37.opt-1.pyc
16.805 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
sunau.cpython-37.opt-2.pyc
12.322 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
sunau.cpython-37.pyc
16.805 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
symbol.cpython-37.opt-1.pyc
2.502 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
symbol.cpython-37.opt-2.pyc
2.428 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
symbol.cpython-37.pyc
2.502 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
symtable.cpython-37.opt-1.pyc
10.116 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
symtable.cpython-37.opt-2.pyc
9.436 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
symtable.cpython-37.pyc
10.206 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
sysconfig.cpython-37.opt-1.pyc
15.173 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
sysconfig.cpython-37.opt-2.pyc
12.84 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
sysconfig.cpython-37.pyc
15.173 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
tabnanny.cpython-37.opt-1.pyc
6.812 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
tabnanny.cpython-37.opt-2.pyc
5.9 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
tabnanny.cpython-37.pyc
6.812 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
tarfile.cpython-37.opt-1.pyc
60.446 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
tarfile.cpython-37.opt-2.pyc
47.063 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
tarfile.cpython-37.pyc
60.446 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
telnetlib.cpython-37.opt-1.pyc
17.675 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
telnetlib.cpython-37.opt-2.pyc
10.342 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
telnetlib.cpython-37.pyc
17.675 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
tempfile.cpython-37.opt-1.pyc
21.704 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
tempfile.cpython-37.opt-2.pyc
15.384 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
tempfile.cpython-37.pyc
21.704 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
textwrap.cpython-37.opt-1.pyc
13.135 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
textwrap.cpython-37.opt-2.pyc
6.094 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
textwrap.cpython-37.pyc
13.205 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
this.cpython-37.opt-1.pyc
1.244 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
this.cpython-37.opt-2.pyc
1.244 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
this.cpython-37.pyc
1.244 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
threading.cpython-37.opt-1.pyc
36.407 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
threading.cpython-37.opt-2.pyc
20.487 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
threading.cpython-37.pyc
37.041 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
timeit.cpython-37.opt-1.pyc
11.408 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
timeit.cpython-37.opt-2.pyc
5.686 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
timeit.cpython-37.pyc
11.408 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
token.cpython-37.opt-1.pyc
3.512 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
token.cpython-37.opt-2.pyc
3.463 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
token.cpython-37.pyc
3.512 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
tokenize.cpython-37.opt-1.pyc
17.367 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
tokenize.cpython-37.opt-2.pyc
13.852 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
tokenize.cpython-37.pyc
17.41 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
trace.cpython-37.opt-1.pyc
18.864 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
trace.cpython-37.opt-2.pyc
15.932 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
trace.cpython-37.pyc
18.864 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
traceback.cpython-37.opt-1.pyc
19.159 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
traceback.cpython-37.opt-2.pyc
10.468 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
traceback.cpython-37.pyc
19.159 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
tracemalloc.cpython-37.opt-1.pyc
16.868 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
tracemalloc.cpython-37.opt-2.pyc
15.485 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
tracemalloc.cpython-37.pyc
16.868 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
tty.cpython-37.opt-1.pyc
1.065 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
tty.cpython-37.opt-2.pyc
0.967 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
tty.cpython-37.pyc
1.065 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
turtle.cpython-37.opt-1.pyc
127.723 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
turtle.cpython-37.opt-2.pyc
66.877 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
turtle.cpython-37.pyc
127.723 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
types.cpython-37.opt-1.pyc
8.763 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
types.cpython-37.opt-2.pyc
7.569 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
types.cpython-37.pyc
8.763 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
typing.cpython-37.opt-1.pyc
49.782 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
typing.cpython-37.opt-2.pyc
38.065 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
typing.cpython-37.pyc
49.83 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
uu.cpython-37.opt-1.pyc
3.706 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
uu.cpython-37.opt-2.pyc
3.468 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
uu.cpython-37.pyc
3.706 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
uuid.cpython-37.opt-1.pyc
22.525 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
uuid.cpython-37.opt-2.pyc
15.537 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
uuid.cpython-37.pyc
22.656 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
warnings.cpython-37.opt-1.pyc
12.989 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
warnings.cpython-37.opt-2.pyc
10.665 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
warnings.cpython-37.pyc
13.509 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
wave.cpython-37.opt-1.pyc
17.809 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
wave.cpython-37.opt-2.pyc
11.957 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
wave.cpython-37.pyc
17.857 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
weakref.cpython-37.opt-1.pyc
19.078 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
weakref.cpython-37.opt-2.pyc
15.855 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
weakref.cpython-37.pyc
19.107 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
webbrowser.cpython-37.opt-1.pyc
16.517 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
webbrowser.cpython-37.opt-2.pyc
14.188 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
webbrowser.cpython-37.pyc
16.549 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
xdrlib.cpython-37.opt-1.pyc
8.126 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
xdrlib.cpython-37.opt-2.pyc
7.652 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
xdrlib.cpython-37.pyc
8.126 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
zipapp.cpython-37.opt-1.pyc
5.664 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
zipapp.cpython-37.opt-2.pyc
4.516 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
zipapp.cpython-37.pyc
5.664 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
zipfile.cpython-37.opt-1.pyc
49.113 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
zipfile.cpython-37.opt-2.pyc
42.973 KB
17 Apr 2024 5.35 PM
root / linksafe
0644
zipfile.cpython-37.pyc
49.149 KB
17 Apr 2024 5.36 PM
root / linksafe
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF