0
      disabled
 ù    ó
VQc           @   sy   d  d l  Td Z d „  Z d „  Z d „  Z d „  Z d „  Z d „  Z d	 „  Z d
 „  Z	 e
 d k ru e	 ƒ  e ƒ  n  d S(   iÿÿÿÿ(   t   *iP   c         C   s   d |  d |  S(   Ng333333@i   (    (   t   x(    (    s/   /usr/lib64/python2.7/Demo/turtle/tdemo_chaos.pyt   f   s    c         C   s   d |  |  d S(   Ng333333@i   (    (   R   (    (    s/   /usr/lib64/python2.7/Demo/turtle/tdemo_chaos.pyt   g   s    c         C   s   d |  d |  |  S(   Ng333333@(    (   R   (    (    s/   /usr/lib64/python2.7/Demo/turtle/tdemo_chaos.pyt   h   s    c         C   s   t  ƒ  t |  | ƒ d  S(   N(   t   penupt   goto(   R   t   y(    (    s/   /usr/lib64/python2.7/Demo/turtle/tdemo_chaos.pyt   jumpto   s     c         C   s%   t  |  | ƒ t ƒ  t | | ƒ d  S(   N(   R   t   pendownR   (   t   x1t   y1t   x2t   y2(    (    s/   /usr/lib64/python2.7/Demo/turtle/tdemo_chaos.pyt   line   s    c           C   s.   t  d d t d d ƒ t  d d d d ƒ d  S(   Niÿÿÿÿi    i   gš™™™™™¹¿gš™™™™™ñ?(   R   t   N(    (    (    s/   /usr/lib64/python2.7/Demo/turtle/tdemo_chaos.pyt   coosys   s    c         C   sp   t  | ƒ | } t d | ƒ t ƒ  t d ƒ x; t t ƒ D]- } |  | ƒ } t | d | ƒ t d ƒ q; Wd  S(   Ni    i   i   (   t   pencolorR   R	   t   dott   rangeR   R   (   t   funt   startt   colourR   t   i(    (    s/   /usr/lib64/python2.7/Demo/turtle/tdemo_chaos.pyt   plot    s    

c          C   sœ   t  ƒ  t d d t d d ƒ t d ƒ t ƒ  t ƒ  t t d d ƒ t t d d ƒ t t	 d d	 ƒ x/ t
 d
 ƒ D]! }  t d |  d t d d ƒ qs Wd S(   Ng      ð¿gš™™™™™¹¿i   gš™™™™™ñ?i    gffffffÖ?t   bluet   greent   redid   g      à?s   Done!(   t   resett   setworldcoordinatesR   t   speedt
   hideturtleR   R   R   R   R   R   (   t   s(    (    s/   /usr/lib64/python2.7/Demo/turtle/tdemo_chaos.pyt   main+   s    
t   __main__N(   t   turtleR   R   R   R   R   R   R   R   R!   t   __name__t   mainloop(    (    (    s/   /usr/lib64/python2.7/Demo/turtle/tdemo_chaos.pyt   <module>   s   
								  "   ˆl–äY>”ÊC]Š
fã!¸)‹FÿÃ804ÂÁ $    # -*- coding: utf-8 -*-
#
# Copyright (C) 2016 Red Hat, Inc.
#
# Authors:
# Thomas Woerner <twoerner@redhat.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""The helper maxnamelen"""

HELPER_MAXNAMELEN = 32
  "   	ˆl–Ým_JJh¥ ² ¸È®2ò˜´oÄƒm×^ÃÂ ’    	"""Compare local and remote dictionaries and transfer differing files -- like rdist."""

import sys
from repr import repr
import FSProxy
import time
import os

def main():
    pwd = os.getcwd()
    s = raw_input("chdir [%s] " % pwd)
    if s:
        os.chdir(s)
        pwd = os.getcwd()
    host = ask("host", 'voorn.cwi.nl')
    port = 4127
    verbose = 1
    mode = ''
    print """\
Mode should be a string of characters, indicating what to do with differences.
r - read different files to local file system
w - write different files to remote file system
c - create new files, either remote or local
d - delete disappearing files, either remote or local
"""
    s = raw_input("mode [%s] " % mode)
    if s: mode = s
    address = (host, port)
    t1 = time.time()
    local = FSProxy.FSProxyLocal()
    remote = FSProxy.FSProxyClient(address, verbose)
   