com.googler.python 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2352) hide show
  1. package/package.json +7 -0
  2. package/python3 +6 -0
  3. package/python3.4.2/bin/2to3 +5 -0
  4. package/python3.4.2/bin/2to3-3.4 +5 -0
  5. package/python3.4.2/bin/android-debian-builder +10 -0
  6. package/python3.4.2/bin/easy_install-3.4 +11 -0
  7. package/python3.4.2/bin/idle3 +5 -0
  8. package/python3.4.2/bin/idle3.4 +5 -0
  9. package/python3.4.2/bin/pip3 +11 -0
  10. package/python3.4.2/bin/pip3.4 +11 -0
  11. package/python3.4.2/bin/pydoc3 +5 -0
  12. package/python3.4.2/bin/pydoc3.4 +5 -0
  13. package/python3.4.2/bin/python3-config +111 -0
  14. package/python3.4.2/bin/python3.4 +0 -0
  15. package/python3.4.2/bin/python3.4-config +111 -0
  16. package/python3.4.2/bin/python3.4m-config +111 -0
  17. package/python3.4.2/bin/pyvenv +11 -0
  18. package/python3.4.2/bin/pyvenv-3.4 +11 -0
  19. package/python3.4.2/include/python3.4m/Python-ast.h +569 -0
  20. package/python3.4.2/include/python3.4m/Python.h +133 -0
  21. package/python3.4.2/include/python3.4m/abstract.h +1267 -0
  22. package/python3.4.2/include/python3.4m/accu.h +37 -0
  23. package/python3.4.2/include/python3.4m/asdl.h +45 -0
  24. package/python3.4.2/include/python3.4m/ast.h +22 -0
  25. package/python3.4.2/include/python3.4m/bitset.h +32 -0
  26. package/python3.4.2/include/python3.4m/bltinmodule.h +14 -0
  27. package/python3.4.2/include/python3.4m/boolobject.h +34 -0
  28. package/python3.4.2/include/python3.4m/bytearrayobject.h +62 -0
  29. package/python3.4.2/include/python3.4m/bytes_methods.h +46 -0
  30. package/python3.4.2/include/python3.4m/bytesobject.h +128 -0
  31. package/python3.4.2/include/python3.4m/cellobject.h +29 -0
  32. package/python3.4.2/include/python3.4m/ceval.h +205 -0
  33. package/python3.4.2/include/python3.4m/classobject.h +58 -0
  34. package/python3.4.2/include/python3.4m/code.h +115 -0
  35. package/python3.4.2/include/python3.4m/codecs.h +233 -0
  36. package/python3.4.2/include/python3.4m/compile.h +72 -0
  37. package/python3.4.2/include/python3.4m/complexobject.h +77 -0
  38. package/python3.4.2/include/python3.4m/datetime.h +243 -0
  39. package/python3.4.2/include/python3.4m/descrobject.h +105 -0
  40. package/python3.4.2/include/python3.4m/dictobject.h +126 -0
  41. package/python3.4.2/include/python3.4m/dtoa.h +19 -0
  42. package/python3.4.2/include/python3.4m/dynamic_annotations.h +499 -0
  43. package/python3.4.2/include/python3.4m/enumobject.h +17 -0
  44. package/python3.4.2/include/python3.4m/errcode.h +38 -0
  45. package/python3.4.2/include/python3.4m/eval.h +27 -0
  46. package/python3.4.2/include/python3.4m/fileobject.h +58 -0
  47. package/python3.4.2/include/python3.4m/fileutils.h +79 -0
  48. package/python3.4.2/include/python3.4m/floatobject.h +128 -0
  49. package/python3.4.2/include/python3.4m/frameobject.h +95 -0
  50. package/python3.4.2/include/python3.4m/funcobject.h +89 -0
  51. package/python3.4.2/include/python3.4m/genobject.h +46 -0
  52. package/python3.4.2/include/python3.4m/graminit.h +84 -0
  53. package/python3.4.2/include/python3.4m/grammar.h +93 -0
  54. package/python3.4.2/include/python3.4m/import.h +130 -0
  55. package/python3.4.2/include/python3.4m/intrcheck.h +21 -0
  56. package/python3.4.2/include/python3.4m/iterobject.h +25 -0
  57. package/python3.4.2/include/python3.4m/listobject.h +80 -0
  58. package/python3.4.2/include/python3.4m/longintrepr.h +103 -0
  59. package/python3.4.2/include/python3.4m/longobject.h +204 -0
  60. package/python3.4.2/include/python3.4m/marshal.h +28 -0
  61. package/python3.4.2/include/python3.4m/memoryobject.h +74 -0
  62. package/python3.4.2/include/python3.4m/metagrammar.h +18 -0
  63. package/python3.4.2/include/python3.4m/methodobject.h +93 -0
  64. package/python3.4.2/include/python3.4m/modsupport.h +132 -0
  65. package/python3.4.2/include/python3.4m/moduleobject.h +63 -0
  66. package/python3.4.2/include/python3.4m/namespaceobject.h +17 -0
  67. package/python3.4.2/include/python3.4m/node.h +44 -0
  68. package/python3.4.2/include/python3.4m/object.h +1015 -0
  69. package/python3.4.2/include/python3.4m/objimpl.h +361 -0
  70. package/python3.4.2/include/python3.4m/opcode.h +159 -0
  71. package/python3.4.2/include/python3.4m/osdefs.h +50 -0
  72. package/python3.4.2/include/python3.4m/parsetok.h +108 -0
  73. package/python3.4.2/include/python3.4m/patchlevel.h +35 -0
  74. package/python3.4.2/include/python3.4m/pgen.h +18 -0
  75. package/python3.4.2/include/python3.4m/pgenheaders.h +42 -0
  76. package/python3.4.2/include/python3.4m/py_curses.h +177 -0
  77. package/python3.4.2/include/python3.4m/pyarena.h +64 -0
  78. package/python3.4.2/include/python3.4m/pyatomic.h +184 -0
  79. package/python3.4.2/include/python3.4m/pycapsule.h +59 -0
  80. package/python3.4.2/include/python3.4m/pyconfig.h +1503 -0
  81. package/python3.4.2/include/python3.4m/pyctype.h +33 -0
  82. package/python3.4.2/include/python3.4m/pydebug.h +34 -0
  83. package/python3.4.2/include/python3.4m/pyerrors.h +464 -0
  84. package/python3.4.2/include/python3.4m/pyexpat.h +53 -0
  85. package/python3.4.2/include/python3.4m/pyfpe.h +176 -0
  86. package/python3.4.2/include/python3.4m/pygetopt.h +21 -0
  87. package/python3.4.2/include/python3.4m/pyhash.h +149 -0
  88. package/python3.4.2/include/python3.4m/pymacconfig.h +102 -0
  89. package/python3.4.2/include/python3.4m/pymacro.h +78 -0
  90. package/python3.4.2/include/python3.4m/pymath.h +190 -0
  91. package/python3.4.2/include/python3.4m/pymem.h +183 -0
  92. package/python3.4.2/include/python3.4m/pyport.h +883 -0
  93. package/python3.4.2/include/python3.4m/pystate.h +271 -0
  94. package/python3.4.2/include/python3.4m/pystrcmp.h +23 -0
  95. package/python3.4.2/include/python3.4m/pystrtod.h +41 -0
  96. package/python3.4.2/include/python3.4m/pythonrun.h +304 -0
  97. package/python3.4.2/include/python3.4m/pythread.h +93 -0
  98. package/python3.4.2/include/python3.4m/pytime.h +105 -0
  99. package/python3.4.2/include/python3.4m/rangeobject.h +27 -0
  100. package/python3.4.2/include/python3.4m/setobject.h +113 -0
  101. package/python3.4.2/include/python3.4m/sliceobject.h +50 -0
  102. package/python3.4.2/include/python3.4m/structmember.h +76 -0
  103. package/python3.4.2/include/python3.4m/structseq.h +49 -0
  104. package/python3.4.2/include/python3.4m/symtable.h +122 -0
  105. package/python3.4.2/include/python3.4m/sysmodule.h +43 -0
  106. package/python3.4.2/include/python3.4m/token.h +87 -0
  107. package/python3.4.2/include/python3.4m/traceback.h +72 -0
  108. package/python3.4.2/include/python3.4m/tupleobject.h +73 -0
  109. package/python3.4.2/include/python3.4m/typeslots.h +76 -0
  110. package/python3.4.2/include/python3.4m/ucnhash.h +36 -0
  111. package/python3.4.2/include/python3.4m/unicodeobject.h +2271 -0
  112. package/python3.4.2/include/python3.4m/warnings.h +54 -0
  113. package/python3.4.2/include/python3.4m/weakrefobject.h +86 -0
  114. package/python3.4.2/lib/pkgconfig/python-3.4.pc +13 -0
  115. package/python3.4.2/lib/pkgconfig/python-3.4m.pc +13 -0
  116. package/python3.4.2/lib/pkgconfig/python3.pc +13 -0
  117. package/python3.4.2/lib/python3.4/LICENSE.txt +254 -0
  118. package/python3.4.2/lib/python3.4/__future__.py +134 -0
  119. package/python3.4.2/lib/python3.4/__phello__.foo.py +1 -0
  120. package/python3.4.2/lib/python3.4/__pycache__/_bootlocale.cpython-34.pyc +0 -0
  121. package/python3.4.2/lib/python3.4/__pycache__/_collections_abc.cpython-34.pyc +0 -0
  122. package/python3.4.2/lib/python3.4/__pycache__/_sitebuiltins.cpython-34.pyc +0 -0
  123. package/python3.4.2/lib/python3.4/__pycache__/_sysconfigdata.cpython-34.pyc +0 -0
  124. package/python3.4.2/lib/python3.4/__pycache__/_weakrefset.cpython-34.pyc +0 -0
  125. package/python3.4.2/lib/python3.4/__pycache__/abc.cpython-34.pyc +0 -0
  126. package/python3.4.2/lib/python3.4/__pycache__/codecs.cpython-34.pyc +0 -0
  127. package/python3.4.2/lib/python3.4/__pycache__/genericpath.cpython-34.pyc +0 -0
  128. package/python3.4.2/lib/python3.4/__pycache__/io.cpython-34.pyc +0 -0
  129. package/python3.4.2/lib/python3.4/__pycache__/os.cpython-34.pyc +0 -0
  130. package/python3.4.2/lib/python3.4/__pycache__/posixpath.cpython-34.pyc +0 -0
  131. package/python3.4.2/lib/python3.4/__pycache__/rlcompleter.cpython-34.pyc +0 -0
  132. package/python3.4.2/lib/python3.4/__pycache__/site.cpython-34.pyc +0 -0
  133. package/python3.4.2/lib/python3.4/__pycache__/stat.cpython-34.pyc +0 -0
  134. package/python3.4.2/lib/python3.4/__pycache__/sysconfig.cpython-34.pyc +0 -0
  135. package/python3.4.2/lib/python3.4/_bootlocale.py +34 -0
  136. package/python3.4.2/lib/python3.4/_collections_abc.py +753 -0
  137. package/python3.4.2/lib/python3.4/_compat_pickle.py +137 -0
  138. package/python3.4.2/lib/python3.4/_dummy_thread.py +155 -0
  139. package/python3.4.2/lib/python3.4/_markupbase.py +395 -0
  140. package/python3.4.2/lib/python3.4/_osx_support.py +502 -0
  141. package/python3.4.2/lib/python3.4/_pyio.py +2105 -0
  142. package/python3.4.2/lib/python3.4/_sitebuiltins.py +103 -0
  143. package/python3.4.2/lib/python3.4/_strptime.py +511 -0
  144. package/python3.4.2/lib/python3.4/_sysconfigdata.py +710 -0
  145. package/python3.4.2/lib/python3.4/_threading_local.py +246 -0
  146. package/python3.4.2/lib/python3.4/_weakrefset.py +196 -0
  147. package/python3.4.2/lib/python3.4/abc.py +248 -0
  148. package/python3.4.2/lib/python3.4/aifc.py +918 -0
  149. package/python3.4.2/lib/python3.4/antigravity.py +17 -0
  150. package/python3.4.2/lib/python3.4/argparse.py +2379 -0
  151. package/python3.4.2/lib/python3.4/ast.py +315 -0
  152. package/python3.4.2/lib/python3.4/asynchat.py +333 -0
  153. package/python3.4.2/lib/python3.4/asyncio/__init__.py +48 -0
  154. package/python3.4.2/lib/python3.4/asyncio/base_events.py +1055 -0
  155. package/python3.4.2/lib/python3.4/asyncio/base_subprocess.py +197 -0
  156. package/python3.4.2/lib/python3.4/asyncio/constants.py +7 -0
  157. package/python3.4.2/lib/python3.4/asyncio/coroutines.py +195 -0
  158. package/python3.4.2/lib/python3.4/asyncio/events.py +586 -0
  159. package/python3.4.2/lib/python3.4/asyncio/futures.py +411 -0
  160. package/python3.4.2/lib/python3.4/asyncio/locks.py +469 -0
  161. package/python3.4.2/lib/python3.4/asyncio/log.py +7 -0
  162. package/python3.4.2/lib/python3.4/asyncio/proactor_events.py +499 -0
  163. package/python3.4.2/lib/python3.4/asyncio/protocols.py +129 -0
  164. package/python3.4.2/lib/python3.4/asyncio/queues.py +288 -0
  165. package/python3.4.2/lib/python3.4/asyncio/selector_events.py +996 -0
  166. package/python3.4.2/lib/python3.4/asyncio/streams.py +485 -0
  167. package/python3.4.2/lib/python3.4/asyncio/subprocess.py +228 -0
  168. package/python3.4.2/lib/python3.4/asyncio/tasks.py +658 -0
  169. package/python3.4.2/lib/python3.4/asyncio/test_utils.py +425 -0
  170. package/python3.4.2/lib/python3.4/asyncio/transports.py +298 -0
  171. package/python3.4.2/lib/python3.4/asyncio/unix_events.py +922 -0
  172. package/python3.4.2/lib/python3.4/asyncio/windows_events.py +634 -0
  173. package/python3.4.2/lib/python3.4/asyncio/windows_utils.py +207 -0
  174. package/python3.4.2/lib/python3.4/asyncore.py +666 -0
  175. package/python3.4.2/lib/python3.4/base64.py +602 -0
  176. package/python3.4.2/lib/python3.4/bdb.py +673 -0
  177. package/python3.4.2/lib/python3.4/binhex.py +471 -0
  178. package/python3.4.2/lib/python3.4/bisect.py +92 -0
  179. package/python3.4.2/lib/python3.4/bz2.py +521 -0
  180. package/python3.4.2/lib/python3.4/cProfile.py +160 -0
  181. package/python3.4.2/lib/python3.4/calendar.py +703 -0
  182. package/python3.4.2/lib/python3.4/cgi.py +1061 -0
  183. package/python3.4.2/lib/python3.4/cgitb.py +320 -0
  184. package/python3.4.2/lib/python3.4/chunk.py +167 -0
  185. package/python3.4.2/lib/python3.4/cmd.py +401 -0
  186. package/python3.4.2/lib/python3.4/code.py +302 -0
  187. package/python3.4.2/lib/python3.4/codecs.py +1110 -0
  188. package/python3.4.2/lib/python3.4/codeop.py +168 -0
  189. package/python3.4.2/lib/python3.4/collections/__init__.py +1132 -0
  190. package/python3.4.2/lib/python3.4/collections/__main__.py +38 -0
  191. package/python3.4.2/lib/python3.4/collections/abc.py +2 -0
  192. package/python3.4.2/lib/python3.4/colorsys.py +164 -0
  193. package/python3.4.2/lib/python3.4/compileall.py +241 -0
  194. package/python3.4.2/lib/python3.4/concurrent/__init__.py +1 -0
  195. package/python3.4.2/lib/python3.4/concurrent/futures/__init__.py +18 -0
  196. package/python3.4.2/lib/python3.4/concurrent/futures/_base.py +575 -0
  197. package/python3.4.2/lib/python3.4/concurrent/futures/process.py +427 -0
  198. package/python3.4.2/lib/python3.4/concurrent/futures/thread.py +132 -0
  199. package/python3.4.2/lib/python3.4/config-3.4m/Makefile +1835 -0
  200. package/python3.4.2/lib/python3.4/config-3.4m/Setup +466 -0
  201. package/python3.4.2/lib/python3.4/config-3.4m/Setup.config +13 -0
  202. package/python3.4.2/lib/python3.4/config-3.4m/Setup.local +1 -0
  203. package/python3.4.2/lib/python3.4/config-3.4m/config.c +234 -0
  204. package/python3.4.2/lib/python3.4/config-3.4m/config.c.in +67 -0
  205. package/python3.4.2/lib/python3.4/config-3.4m/install-sh +294 -0
  206. package/python3.4.2/lib/python3.4/config-3.4m/makesetup +293 -0
  207. package/python3.4.2/lib/python3.4/config-3.4m/python-config.py +68 -0
  208. package/python3.4.2/lib/python3.4/configparser.py +1254 -0
  209. package/python3.4.2/lib/python3.4/contextlib.py +340 -0
  210. package/python3.4.2/lib/python3.4/copy.py +333 -0
  211. package/python3.4.2/lib/python3.4/copyreg.py +202 -0
  212. package/python3.4.2/lib/python3.4/crypt.py +62 -0
  213. package/python3.4.2/lib/python3.4/csv.py +449 -0
  214. package/python3.4.2/lib/python3.4/ctypes/__init__.py +541 -0
  215. package/python3.4.2/lib/python3.4/ctypes/_endian.py +59 -0
  216. package/python3.4.2/lib/python3.4/ctypes/macholib/README.ctypes +7 -0
  217. package/python3.4.2/lib/python3.4/ctypes/macholib/__init__.py +9 -0
  218. package/python3.4.2/lib/python3.4/ctypes/macholib/dyld.py +158 -0
  219. package/python3.4.2/lib/python3.4/ctypes/macholib/dylib.py +63 -0
  220. package/python3.4.2/lib/python3.4/ctypes/macholib/fetch_macholib +2 -0
  221. package/python3.4.2/lib/python3.4/ctypes/macholib/fetch_macholib.bat +1 -0
  222. package/python3.4.2/lib/python3.4/ctypes/macholib/framework.py +65 -0
  223. package/python3.4.2/lib/python3.4/ctypes/test/__init__.py +14 -0
  224. package/python3.4.2/lib/python3.4/ctypes/test/__main__.py +4 -0
  225. package/python3.4.2/lib/python3.4/ctypes/test/test_anon.py +60 -0
  226. package/python3.4.2/lib/python3.4/ctypes/test/test_array_in_pointer.py +64 -0
  227. package/python3.4.2/lib/python3.4/ctypes/test/test_arrays.py +181 -0
  228. package/python3.4.2/lib/python3.4/ctypes/test/test_as_parameter.py +226 -0
  229. package/python3.4.2/lib/python3.4/ctypes/test/test_bitfields.py +263 -0
  230. package/python3.4.2/lib/python3.4/ctypes/test/test_buffers.py +64 -0
  231. package/python3.4.2/lib/python3.4/ctypes/test/test_bytes.py +65 -0
  232. package/python3.4.2/lib/python3.4/ctypes/test/test_byteswap.py +295 -0
  233. package/python3.4.2/lib/python3.4/ctypes/test/test_callbacks.py +247 -0
  234. package/python3.4.2/lib/python3.4/ctypes/test/test_cast.py +86 -0
  235. package/python3.4.2/lib/python3.4/ctypes/test/test_cfuncs.py +212 -0
  236. package/python3.4.2/lib/python3.4/ctypes/test/test_checkretval.py +36 -0
  237. package/python3.4.2/lib/python3.4/ctypes/test/test_delattr.py +21 -0
  238. package/python3.4.2/lib/python3.4/ctypes/test/test_errno.py +79 -0
  239. package/python3.4.2/lib/python3.4/ctypes/test/test_find.py +81 -0
  240. package/python3.4.2/lib/python3.4/ctypes/test/test_frombuffer.py +81 -0
  241. package/python3.4.2/lib/python3.4/ctypes/test/test_funcptr.py +127 -0
  242. package/python3.4.2/lib/python3.4/ctypes/test/test_functions.py +402 -0
  243. package/python3.4.2/lib/python3.4/ctypes/test/test_incomplete.py +42 -0
  244. package/python3.4.2/lib/python3.4/ctypes/test/test_init.py +40 -0
  245. package/python3.4.2/lib/python3.4/ctypes/test/test_internals.py +100 -0
  246. package/python3.4.2/lib/python3.4/ctypes/test/test_keeprefs.py +153 -0
  247. package/python3.4.2/lib/python3.4/ctypes/test/test_libc.py +33 -0
  248. package/python3.4.2/lib/python3.4/ctypes/test/test_loading.py +119 -0
  249. package/python3.4.2/lib/python3.4/ctypes/test/test_macholib.py +63 -0
  250. package/python3.4.2/lib/python3.4/ctypes/test/test_memfunctions.py +79 -0
  251. package/python3.4.2/lib/python3.4/ctypes/test/test_numbers.py +290 -0
  252. package/python3.4.2/lib/python3.4/ctypes/test/test_objects.py +67 -0
  253. package/python3.4.2/lib/python3.4/ctypes/test/test_parameters.py +176 -0
  254. package/python3.4.2/lib/python3.4/ctypes/test/test_pep3118.py +206 -0
  255. package/python3.4.2/lib/python3.4/ctypes/test/test_pickling.py +83 -0
  256. package/python3.4.2/lib/python3.4/ctypes/test/test_pointers.py +192 -0
  257. package/python3.4.2/lib/python3.4/ctypes/test/test_prototypes.py +219 -0
  258. package/python3.4.2/lib/python3.4/ctypes/test/test_python_api.py +89 -0
  259. package/python3.4.2/lib/python3.4/ctypes/test/test_random_things.py +74 -0
  260. package/python3.4.2/lib/python3.4/ctypes/test/test_refcounts.py +101 -0
  261. package/python3.4.2/lib/python3.4/ctypes/test/test_repr.py +29 -0
  262. package/python3.4.2/lib/python3.4/ctypes/test/test_returnfuncptrs.py +67 -0
  263. package/python3.4.2/lib/python3.4/ctypes/test/test_simplesubclasses.py +55 -0
  264. package/python3.4.2/lib/python3.4/ctypes/test/test_sizes.py +34 -0
  265. package/python3.4.2/lib/python3.4/ctypes/test/test_slicing.py +167 -0
  266. package/python3.4.2/lib/python3.4/ctypes/test/test_stringptr.py +77 -0
  267. package/python3.4.2/lib/python3.4/ctypes/test/test_strings.py +225 -0
  268. package/python3.4.2/lib/python3.4/ctypes/test/test_struct_fields.py +50 -0
  269. package/python3.4.2/lib/python3.4/ctypes/test/test_structures.py +468 -0
  270. package/python3.4.2/lib/python3.4/ctypes/test/test_unaligned_structures.py +45 -0
  271. package/python3.4.2/lib/python3.4/ctypes/test/test_unicode.py +56 -0
  272. package/python3.4.2/lib/python3.4/ctypes/test/test_values.py +95 -0
  273. package/python3.4.2/lib/python3.4/ctypes/test/test_varsize_struct.py +50 -0
  274. package/python3.4.2/lib/python3.4/ctypes/test/test_win32.py +119 -0
  275. package/python3.4.2/lib/python3.4/ctypes/test/test_wintypes.py +41 -0
  276. package/python3.4.2/lib/python3.4/ctypes/util.py +267 -0
  277. package/python3.4.2/lib/python3.4/ctypes/wintypes.py +202 -0
  278. package/python3.4.2/lib/python3.4/curses/__init__.py +101 -0
  279. package/python3.4.2/lib/python3.4/curses/ascii.py +99 -0
  280. package/python3.4.2/lib/python3.4/curses/has_key.py +192 -0
  281. package/python3.4.2/lib/python3.4/curses/panel.py +6 -0
  282. package/python3.4.2/lib/python3.4/curses/textpad.py +188 -0
  283. package/python3.4.2/lib/python3.4/datetime.py +2136 -0
  284. package/python3.4.2/lib/python3.4/dbm/__init__.py +188 -0
  285. package/python3.4.2/lib/python3.4/dbm/dumb.py +291 -0
  286. package/python3.4.2/lib/python3.4/dbm/gnu.py +3 -0
  287. package/python3.4.2/lib/python3.4/dbm/ndbm.py +3 -0
  288. package/python3.4.2/lib/python3.4/decimal.py +6414 -0
  289. package/python3.4.2/lib/python3.4/difflib.py +2039 -0
  290. package/python3.4.2/lib/python3.4/dis.py +475 -0
  291. package/python3.4.2/lib/python3.4/distutils/README +13 -0
  292. package/python3.4.2/lib/python3.4/distutils/__init__.py +17 -0
  293. package/python3.4.2/lib/python3.4/distutils/archive_util.py +245 -0
  294. package/python3.4.2/lib/python3.4/distutils/bcppcompiler.py +393 -0
  295. package/python3.4.2/lib/python3.4/distutils/ccompiler.py +1115 -0
  296. package/python3.4.2/lib/python3.4/distutils/cmd.py +435 -0
  297. package/python3.4.2/lib/python3.4/distutils/command/__init__.py +31 -0
  298. package/python3.4.2/lib/python3.4/distutils/command/bdist.py +142 -0
  299. package/python3.4.2/lib/python3.4/distutils/command/bdist_dumb.py +122 -0
  300. package/python3.4.2/lib/python3.4/distutils/command/bdist_msi.py +741 -0
  301. package/python3.4.2/lib/python3.4/distutils/command/bdist_rpm.py +582 -0
  302. package/python3.4.2/lib/python3.4/distutils/command/bdist_wininst.py +349 -0
  303. package/python3.4.2/lib/python3.4/distutils/command/build.py +148 -0
  304. package/python3.4.2/lib/python3.4/distutils/command/build_clib.py +209 -0
  305. package/python3.4.2/lib/python3.4/distutils/command/build_ext.py +735 -0
  306. package/python3.4.2/lib/python3.4/distutils/command/build_py.py +416 -0
  307. package/python3.4.2/lib/python3.4/distutils/command/build_scripts.py +160 -0
  308. package/python3.4.2/lib/python3.4/distutils/command/check.py +145 -0
  309. package/python3.4.2/lib/python3.4/distutils/command/clean.py +76 -0
  310. package/python3.4.2/lib/python3.4/distutils/command/command_template +33 -0
  311. package/python3.4.2/lib/python3.4/distutils/command/config.py +347 -0
  312. package/python3.4.2/lib/python3.4/distutils/command/install.py +650 -0
  313. package/python3.4.2/lib/python3.4/distutils/command/install_data.py +79 -0
  314. package/python3.4.2/lib/python3.4/distutils/command/install_egg_info.py +77 -0
  315. package/python3.4.2/lib/python3.4/distutils/command/install_headers.py +47 -0
  316. package/python3.4.2/lib/python3.4/distutils/command/install_lib.py +217 -0
  317. package/python3.4.2/lib/python3.4/distutils/command/install_scripts.py +60 -0
  318. package/python3.4.2/lib/python3.4/distutils/command/register.py +304 -0
  319. package/python3.4.2/lib/python3.4/distutils/command/sdist.py +467 -0
  320. package/python3.4.2/lib/python3.4/distutils/command/upload.py +202 -0
  321. package/python3.4.2/lib/python3.4/distutils/command/wininst-10.0-amd64.exe +0 -0
  322. package/python3.4.2/lib/python3.4/distutils/command/wininst-10.0.exe +0 -0
  323. package/python3.4.2/lib/python3.4/distutils/command/wininst-6.0.exe +0 -0
  324. package/python3.4.2/lib/python3.4/distutils/command/wininst-7.1.exe +0 -0
  325. package/python3.4.2/lib/python3.4/distutils/command/wininst-8.0.exe +0 -0
  326. package/python3.4.2/lib/python3.4/distutils/command/wininst-9.0-amd64.exe +0 -0
  327. package/python3.4.2/lib/python3.4/distutils/command/wininst-9.0.exe +0 -0
  328. package/python3.4.2/lib/python3.4/distutils/config.py +131 -0
  329. package/python3.4.2/lib/python3.4/distutils/core.py +237 -0
  330. package/python3.4.2/lib/python3.4/distutils/cygwinccompiler.py +405 -0
  331. package/python3.4.2/lib/python3.4/distutils/debug.py +5 -0
  332. package/python3.4.2/lib/python3.4/distutils/dep_util.py +92 -0
  333. package/python3.4.2/lib/python3.4/distutils/dir_util.py +210 -0
  334. package/python3.4.2/lib/python3.4/distutils/dist.py +1238 -0
  335. package/python3.4.2/lib/python3.4/distutils/errors.py +97 -0
  336. package/python3.4.2/lib/python3.4/distutils/extension.py +233 -0
  337. package/python3.4.2/lib/python3.4/distutils/fancy_getopt.py +457 -0
  338. package/python3.4.2/lib/python3.4/distutils/file_util.py +230 -0
  339. package/python3.4.2/lib/python3.4/distutils/filelist.py +328 -0
  340. package/python3.4.2/lib/python3.4/distutils/log.py +75 -0
  341. package/python3.4.2/lib/python3.4/distutils/msvc9compiler.py +788 -0
  342. package/python3.4.2/lib/python3.4/distutils/msvccompiler.py +640 -0
  343. package/python3.4.2/lib/python3.4/distutils/spawn.py +195 -0
  344. package/python3.4.2/lib/python3.4/distutils/sysconfig.py +562 -0
  345. package/python3.4.2/lib/python3.4/distutils/tests/Setup.sample +67 -0
  346. package/python3.4.2/lib/python3.4/distutils/tests/__init__.py +36 -0
  347. package/python3.4.2/lib/python3.4/distutils/tests/support.py +210 -0
  348. package/python3.4.2/lib/python3.4/distutils/tests/test_archive_util.py +341 -0
  349. package/python3.4.2/lib/python3.4/distutils/tests/test_bdist.py +50 -0
  350. package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_dumb.py +97 -0
  351. package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_msi.py +25 -0
  352. package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_rpm.py +134 -0
  353. package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_wininst.py +31 -0
  354. package/python3.4.2/lib/python3.4/distutils/tests/test_build.py +55 -0
  355. package/python3.4.2/lib/python3.4/distutils/tests/test_build_clib.py +143 -0
  356. package/python3.4.2/lib/python3.4/distutils/tests/test_build_ext.py +488 -0
  357. package/python3.4.2/lib/python3.4/distutils/tests/test_build_py.py +178 -0
  358. package/python3.4.2/lib/python3.4/distutils/tests/test_build_scripts.py +112 -0
  359. package/python3.4.2/lib/python3.4/distutils/tests/test_check.py +106 -0
  360. package/python3.4.2/lib/python3.4/distutils/tests/test_clean.py +51 -0
  361. package/python3.4.2/lib/python3.4/distutils/tests/test_cmd.py +126 -0
  362. package/python3.4.2/lib/python3.4/distutils/tests/test_config.py +120 -0
  363. package/python3.4.2/lib/python3.4/distutils/tests/test_config_cmd.py +89 -0
  364. package/python3.4.2/lib/python3.4/distutils/tests/test_core.py +108 -0
  365. package/python3.4.2/lib/python3.4/distutils/tests/test_cygwinccompiler.py +155 -0
  366. package/python3.4.2/lib/python3.4/distutils/tests/test_dep_util.py +81 -0
  367. package/python3.4.2/lib/python3.4/distutils/tests/test_dir_util.py +139 -0
  368. package/python3.4.2/lib/python3.4/distutils/tests/test_dist.py +454 -0
  369. package/python3.4.2/lib/python3.4/distutils/tests/test_extension.py +69 -0
  370. package/python3.4.2/lib/python3.4/distutils/tests/test_file_util.py +85 -0
  371. package/python3.4.2/lib/python3.4/distutils/tests/test_filelist.py +299 -0
  372. package/python3.4.2/lib/python3.4/distutils/tests/test_install.py +246 -0
  373. package/python3.4.2/lib/python3.4/distutils/tests/test_install_data.py +77 -0
  374. package/python3.4.2/lib/python3.4/distutils/tests/test_install_headers.py +41 -0
  375. package/python3.4.2/lib/python3.4/distutils/tests/test_install_lib.py +115 -0
  376. package/python3.4.2/lib/python3.4/distutils/tests/test_install_scripts.py +82 -0
  377. package/python3.4.2/lib/python3.4/distutils/tests/test_log.py +37 -0
  378. package/python3.4.2/lib/python3.4/distutils/tests/test_msvc9compiler.py +184 -0
  379. package/python3.4.2/lib/python3.4/distutils/tests/test_register.py +309 -0
  380. package/python3.4.2/lib/python3.4/distutils/tests/test_sdist.py +484 -0
  381. package/python3.4.2/lib/python3.4/distutils/tests/test_spawn.py +58 -0
  382. package/python3.4.2/lib/python3.4/distutils/tests/test_sysconfig.py +207 -0
  383. package/python3.4.2/lib/python3.4/distutils/tests/test_text_file.py +107 -0
  384. package/python3.4.2/lib/python3.4/distutils/tests/test_unixccompiler.py +150 -0
  385. package/python3.4.2/lib/python3.4/distutils/tests/test_upload.py +151 -0
  386. package/python3.4.2/lib/python3.4/distutils/tests/test_util.py +300 -0
  387. package/python3.4.2/lib/python3.4/distutils/tests/test_version.py +71 -0
  388. package/python3.4.2/lib/python3.4/distutils/tests/test_versionpredicate.py +13 -0
  389. package/python3.4.2/lib/python3.4/distutils/tests/xxmodule.c +396 -0
  390. package/python3.4.2/lib/python3.4/distutils/text_file.py +285 -0
  391. package/python3.4.2/lib/python3.4/distutils/unixccompiler.py +298 -0
  392. package/python3.4.2/lib/python3.4/distutils/util.py +553 -0
  393. package/python3.4.2/lib/python3.4/distutils/version.py +349 -0
  394. package/python3.4.2/lib/python3.4/distutils/versionpredicate.py +166 -0
  395. package/python3.4.2/lib/python3.4/doctest.py +2793 -0
  396. package/python3.4.2/lib/python3.4/dummy_threading.py +78 -0
  397. package/python3.4.2/lib/python3.4/email/__init__.py +64 -0
  398. package/python3.4.2/lib/python3.4/email/_encoded_words.py +221 -0
  399. package/python3.4.2/lib/python3.4/email/_header_value_parser.py +2947 -0
  400. package/python3.4.2/lib/python3.4/email/_parseaddr.py +540 -0
  401. package/python3.4.2/lib/python3.4/email/_policybase.py +358 -0
  402. package/python3.4.2/lib/python3.4/email/architecture.rst +216 -0
  403. package/python3.4.2/lib/python3.4/email/base64mime.py +119 -0
  404. package/python3.4.2/lib/python3.4/email/charset.py +409 -0
  405. package/python3.4.2/lib/python3.4/email/contentmanager.py +249 -0
  406. package/python3.4.2/lib/python3.4/email/encoders.py +69 -0
  407. package/python3.4.2/lib/python3.4/email/errors.py +107 -0
  408. package/python3.4.2/lib/python3.4/email/feedparser.py +526 -0
  409. package/python3.4.2/lib/python3.4/email/generator.py +507 -0
  410. package/python3.4.2/lib/python3.4/email/header.py +581 -0
  411. package/python3.4.2/lib/python3.4/email/headerregistry.py +583 -0
  412. package/python3.4.2/lib/python3.4/email/iterators.py +71 -0
  413. package/python3.4.2/lib/python3.4/email/message.py +1147 -0
  414. package/python3.4.2/lib/python3.4/email/mime/__init__.py +0 -0
  415. package/python3.4.2/lib/python3.4/email/mime/application.py +36 -0
  416. package/python3.4.2/lib/python3.4/email/mime/audio.py +73 -0
  417. package/python3.4.2/lib/python3.4/email/mime/base.py +26 -0
  418. package/python3.4.2/lib/python3.4/email/mime/image.py +46 -0
  419. package/python3.4.2/lib/python3.4/email/mime/message.py +34 -0
  420. package/python3.4.2/lib/python3.4/email/mime/multipart.py +47 -0
  421. package/python3.4.2/lib/python3.4/email/mime/nonmultipart.py +22 -0
  422. package/python3.4.2/lib/python3.4/email/mime/text.py +41 -0
  423. package/python3.4.2/lib/python3.4/email/parser.py +132 -0
  424. package/python3.4.2/lib/python3.4/email/policy.py +201 -0
  425. package/python3.4.2/lib/python3.4/email/quoprimime.py +299 -0
  426. package/python3.4.2/lib/python3.4/email/utils.py +399 -0
  427. package/python3.4.2/lib/python3.4/encodings/__init__.py +152 -0
  428. package/python3.4.2/lib/python3.4/encodings/__pycache__/__init__.cpython-34.pyc +0 -0
  429. package/python3.4.2/lib/python3.4/encodings/__pycache__/aliases.cpython-34.pyc +0 -0
  430. package/python3.4.2/lib/python3.4/encodings/__pycache__/ascii.cpython-34.pyc +0 -0
  431. package/python3.4.2/lib/python3.4/encodings/__pycache__/latin_1.cpython-34.pyc +0 -0
  432. package/python3.4.2/lib/python3.4/encodings/__pycache__/utf_8.cpython-34.pyc +0 -0
  433. package/python3.4.2/lib/python3.4/encodings/aliases.py +544 -0
  434. package/python3.4.2/lib/python3.4/encodings/ascii.py +50 -0
  435. package/python3.4.2/lib/python3.4/encodings/base64_codec.py +55 -0
  436. package/python3.4.2/lib/python3.4/encodings/big5.py +39 -0
  437. package/python3.4.2/lib/python3.4/encodings/big5hkscs.py +39 -0
  438. package/python3.4.2/lib/python3.4/encodings/bz2_codec.py +78 -0
  439. package/python3.4.2/lib/python3.4/encodings/charmap.py +69 -0
  440. package/python3.4.2/lib/python3.4/encodings/cp037.py +307 -0
  441. package/python3.4.2/lib/python3.4/encodings/cp1006.py +307 -0
  442. package/python3.4.2/lib/python3.4/encodings/cp1026.py +307 -0
  443. package/python3.4.2/lib/python3.4/encodings/cp1125.py +698 -0
  444. package/python3.4.2/lib/python3.4/encodings/cp1140.py +307 -0
  445. package/python3.4.2/lib/python3.4/encodings/cp1250.py +307 -0
  446. package/python3.4.2/lib/python3.4/encodings/cp1251.py +307 -0
  447. package/python3.4.2/lib/python3.4/encodings/cp1252.py +307 -0
  448. package/python3.4.2/lib/python3.4/encodings/cp1253.py +307 -0
  449. package/python3.4.2/lib/python3.4/encodings/cp1254.py +307 -0
  450. package/python3.4.2/lib/python3.4/encodings/cp1255.py +307 -0
  451. package/python3.4.2/lib/python3.4/encodings/cp1256.py +307 -0
  452. package/python3.4.2/lib/python3.4/encodings/cp1257.py +307 -0
  453. package/python3.4.2/lib/python3.4/encodings/cp1258.py +307 -0
  454. package/python3.4.2/lib/python3.4/encodings/cp273.py +307 -0
  455. package/python3.4.2/lib/python3.4/encodings/cp424.py +307 -0
  456. package/python3.4.2/lib/python3.4/encodings/cp437.py +698 -0
  457. package/python3.4.2/lib/python3.4/encodings/cp500.py +307 -0
  458. package/python3.4.2/lib/python3.4/encodings/cp65001.py +40 -0
  459. package/python3.4.2/lib/python3.4/encodings/cp720.py +309 -0
  460. package/python3.4.2/lib/python3.4/encodings/cp737.py +698 -0
  461. package/python3.4.2/lib/python3.4/encodings/cp775.py +697 -0
  462. package/python3.4.2/lib/python3.4/encodings/cp850.py +698 -0
  463. package/python3.4.2/lib/python3.4/encodings/cp852.py +698 -0
  464. package/python3.4.2/lib/python3.4/encodings/cp855.py +698 -0
  465. package/python3.4.2/lib/python3.4/encodings/cp856.py +307 -0
  466. package/python3.4.2/lib/python3.4/encodings/cp857.py +694 -0
  467. package/python3.4.2/lib/python3.4/encodings/cp858.py +698 -0
  468. package/python3.4.2/lib/python3.4/encodings/cp860.py +698 -0
  469. package/python3.4.2/lib/python3.4/encodings/cp861.py +698 -0
  470. package/python3.4.2/lib/python3.4/encodings/cp862.py +698 -0
  471. package/python3.4.2/lib/python3.4/encodings/cp863.py +698 -0
  472. package/python3.4.2/lib/python3.4/encodings/cp864.py +690 -0
  473. package/python3.4.2/lib/python3.4/encodings/cp865.py +698 -0
  474. package/python3.4.2/lib/python3.4/encodings/cp866.py +698 -0
  475. package/python3.4.2/lib/python3.4/encodings/cp869.py +689 -0
  476. package/python3.4.2/lib/python3.4/encodings/cp874.py +307 -0
  477. package/python3.4.2/lib/python3.4/encodings/cp875.py +307 -0
  478. package/python3.4.2/lib/python3.4/encodings/cp932.py +39 -0
  479. package/python3.4.2/lib/python3.4/encodings/cp949.py +39 -0
  480. package/python3.4.2/lib/python3.4/encodings/cp950.py +39 -0
  481. package/python3.4.2/lib/python3.4/encodings/euc_jis_2004.py +39 -0
  482. package/python3.4.2/lib/python3.4/encodings/euc_jisx0213.py +39 -0
  483. package/python3.4.2/lib/python3.4/encodings/euc_jp.py +39 -0
  484. package/python3.4.2/lib/python3.4/encodings/euc_kr.py +39 -0
  485. package/python3.4.2/lib/python3.4/encodings/gb18030.py +39 -0
  486. package/python3.4.2/lib/python3.4/encodings/gb2312.py +39 -0
  487. package/python3.4.2/lib/python3.4/encodings/gbk.py +39 -0
  488. package/python3.4.2/lib/python3.4/encodings/hex_codec.py +55 -0
  489. package/python3.4.2/lib/python3.4/encodings/hp_roman8.py +312 -0
  490. package/python3.4.2/lib/python3.4/encodings/hz.py +39 -0
  491. package/python3.4.2/lib/python3.4/encodings/idna.py +309 -0
  492. package/python3.4.2/lib/python3.4/encodings/iso2022_jp.py +39 -0
  493. package/python3.4.2/lib/python3.4/encodings/iso2022_jp_1.py +39 -0
  494. package/python3.4.2/lib/python3.4/encodings/iso2022_jp_2.py +39 -0
  495. package/python3.4.2/lib/python3.4/encodings/iso2022_jp_2004.py +39 -0
  496. package/python3.4.2/lib/python3.4/encodings/iso2022_jp_3.py +39 -0
  497. package/python3.4.2/lib/python3.4/encodings/iso2022_jp_ext.py +39 -0
  498. package/python3.4.2/lib/python3.4/encodings/iso2022_kr.py +39 -0
  499. package/python3.4.2/lib/python3.4/encodings/iso8859_1.py +307 -0
  500. package/python3.4.2/lib/python3.4/encodings/iso8859_10.py +307 -0
  501. package/python3.4.2/lib/python3.4/encodings/iso8859_11.py +307 -0
  502. package/python3.4.2/lib/python3.4/encodings/iso8859_13.py +307 -0
  503. package/python3.4.2/lib/python3.4/encodings/iso8859_14.py +307 -0
  504. package/python3.4.2/lib/python3.4/encodings/iso8859_15.py +307 -0
  505. package/python3.4.2/lib/python3.4/encodings/iso8859_16.py +307 -0
  506. package/python3.4.2/lib/python3.4/encodings/iso8859_2.py +307 -0
  507. package/python3.4.2/lib/python3.4/encodings/iso8859_3.py +307 -0
  508. package/python3.4.2/lib/python3.4/encodings/iso8859_4.py +307 -0
  509. package/python3.4.2/lib/python3.4/encodings/iso8859_5.py +307 -0
  510. package/python3.4.2/lib/python3.4/encodings/iso8859_6.py +307 -0
  511. package/python3.4.2/lib/python3.4/encodings/iso8859_7.py +307 -0
  512. package/python3.4.2/lib/python3.4/encodings/iso8859_8.py +307 -0
  513. package/python3.4.2/lib/python3.4/encodings/iso8859_9.py +307 -0
  514. package/python3.4.2/lib/python3.4/encodings/johab.py +39 -0
  515. package/python3.4.2/lib/python3.4/encodings/koi8_r.py +307 -0
  516. package/python3.4.2/lib/python3.4/encodings/koi8_u.py +307 -0
  517. package/python3.4.2/lib/python3.4/encodings/latin_1.py +50 -0
  518. package/python3.4.2/lib/python3.4/encodings/mac_arabic.py +698 -0
  519. package/python3.4.2/lib/python3.4/encodings/mac_centeuro.py +307 -0
  520. package/python3.4.2/lib/python3.4/encodings/mac_croatian.py +307 -0
  521. package/python3.4.2/lib/python3.4/encodings/mac_cyrillic.py +307 -0
  522. package/python3.4.2/lib/python3.4/encodings/mac_farsi.py +307 -0
  523. package/python3.4.2/lib/python3.4/encodings/mac_greek.py +307 -0
  524. package/python3.4.2/lib/python3.4/encodings/mac_iceland.py +307 -0
  525. package/python3.4.2/lib/python3.4/encodings/mac_latin2.py +312 -0
  526. package/python3.4.2/lib/python3.4/encodings/mac_roman.py +307 -0
  527. package/python3.4.2/lib/python3.4/encodings/mac_romanian.py +307 -0
  528. package/python3.4.2/lib/python3.4/encodings/mac_turkish.py +307 -0
  529. package/python3.4.2/lib/python3.4/encodings/mbcs.py +47 -0
  530. package/python3.4.2/lib/python3.4/encodings/palmos.py +308 -0
  531. package/python3.4.2/lib/python3.4/encodings/ptcp154.py +312 -0
  532. package/python3.4.2/lib/python3.4/encodings/punycode.py +237 -0
  533. package/python3.4.2/lib/python3.4/encodings/quopri_codec.py +56 -0
  534. package/python3.4.2/lib/python3.4/encodings/raw_unicode_escape.py +45 -0
  535. package/python3.4.2/lib/python3.4/encodings/rot_13.py +113 -0
  536. package/python3.4.2/lib/python3.4/encodings/shift_jis.py +39 -0
  537. package/python3.4.2/lib/python3.4/encodings/shift_jis_2004.py +39 -0
  538. package/python3.4.2/lib/python3.4/encodings/shift_jisx0213.py +39 -0
  539. package/python3.4.2/lib/python3.4/encodings/tis_620.py +307 -0
  540. package/python3.4.2/lib/python3.4/encodings/undefined.py +49 -0
  541. package/python3.4.2/lib/python3.4/encodings/unicode_escape.py +45 -0
  542. package/python3.4.2/lib/python3.4/encodings/unicode_internal.py +45 -0
  543. package/python3.4.2/lib/python3.4/encodings/utf_16.py +155 -0
  544. package/python3.4.2/lib/python3.4/encodings/utf_16_be.py +42 -0
  545. package/python3.4.2/lib/python3.4/encodings/utf_16_le.py +42 -0
  546. package/python3.4.2/lib/python3.4/encodings/utf_32.py +150 -0
  547. package/python3.4.2/lib/python3.4/encodings/utf_32_be.py +37 -0
  548. package/python3.4.2/lib/python3.4/encodings/utf_32_le.py +37 -0
  549. package/python3.4.2/lib/python3.4/encodings/utf_7.py +38 -0
  550. package/python3.4.2/lib/python3.4/encodings/utf_8.py +42 -0
  551. package/python3.4.2/lib/python3.4/encodings/utf_8_sig.py +130 -0
  552. package/python3.4.2/lib/python3.4/encodings/uu_codec.py +99 -0
  553. package/python3.4.2/lib/python3.4/encodings/zlib_codec.py +77 -0
  554. package/python3.4.2/lib/python3.4/ensurepip/__init__.py +210 -0
  555. package/python3.4.2/lib/python3.4/ensurepip/__main__.py +4 -0
  556. package/python3.4.2/lib/python3.4/ensurepip/_bundled/pip-1.5.6-py2.py3-none-any.whl +0 -0
  557. package/python3.4.2/lib/python3.4/ensurepip/_bundled/setuptools-2.1-py2.py3-none-any.whl +0 -0
  558. package/python3.4.2/lib/python3.4/ensurepip/_uninstall.py +30 -0
  559. package/python3.4.2/lib/python3.4/enum.py +525 -0
  560. package/python3.4.2/lib/python3.4/filecmp.py +305 -0
  561. package/python3.4.2/lib/python3.4/fileinput.py +429 -0
  562. package/python3.4.2/lib/python3.4/fnmatch.py +109 -0
  563. package/python3.4.2/lib/python3.4/formatter.py +448 -0
  564. package/python3.4.2/lib/python3.4/fractions.py +630 -0
  565. package/python3.4.2/lib/python3.4/ftplib.py +1088 -0
  566. package/python3.4.2/lib/python3.4/functools.py +721 -0
  567. package/python3.4.2/lib/python3.4/genericpath.py +132 -0
  568. package/python3.4.2/lib/python3.4/getopt.py +215 -0
  569. package/python3.4.2/lib/python3.4/getpass.py +186 -0
  570. package/python3.4.2/lib/python3.4/gettext.py +523 -0
  571. package/python3.4.2/lib/python3.4/glob.py +110 -0
  572. package/python3.4.2/lib/python3.4/gzip.py +674 -0
  573. package/python3.4.2/lib/python3.4/hashlib.py +217 -0
  574. package/python3.4.2/lib/python3.4/heapq.py +476 -0
  575. package/python3.4.2/lib/python3.4/hmac.py +144 -0
  576. package/python3.4.2/lib/python3.4/html/__init__.py +132 -0
  577. package/python3.4.2/lib/python3.4/html/entities.py +2506 -0
  578. package/python3.4.2/lib/python3.4/html/parser.py +550 -0
  579. package/python3.4.2/lib/python3.4/http/__init__.py +1 -0
  580. package/python3.4.2/lib/python3.4/http/client.py +1302 -0
  581. package/python3.4.2/lib/python3.4/http/cookiejar.py +2080 -0
  582. package/python3.4.2/lib/python3.4/http/cookies.py +578 -0
  583. package/python3.4.2/lib/python3.4/http/server.py +1241 -0
  584. package/python3.4.2/lib/python3.4/idlelib/AutoComplete.py +233 -0
  585. package/python3.4.2/lib/python3.4/idlelib/AutoCompleteWindow.py +415 -0
  586. package/python3.4.2/lib/python3.4/idlelib/AutoExpand.py +104 -0
  587. package/python3.4.2/lib/python3.4/idlelib/Bindings.py +94 -0
  588. package/python3.4.2/lib/python3.4/idlelib/CREDITS.txt +37 -0
  589. package/python3.4.2/lib/python3.4/idlelib/CallTipWindow.py +170 -0
  590. package/python3.4.2/lib/python3.4/idlelib/CallTips.py +175 -0
  591. package/python3.4.2/lib/python3.4/idlelib/ChangeLog +1591 -0
  592. package/python3.4.2/lib/python3.4/idlelib/ClassBrowser.py +229 -0
  593. package/python3.4.2/lib/python3.4/idlelib/CodeContext.py +176 -0
  594. package/python3.4.2/lib/python3.4/idlelib/ColorDelegator.py +254 -0
  595. package/python3.4.2/lib/python3.4/idlelib/Debugger.py +490 -0
  596. package/python3.4.2/lib/python3.4/idlelib/Delegator.py +25 -0
  597. package/python3.4.2/lib/python3.4/idlelib/EditorWindow.py +1729 -0
  598. package/python3.4.2/lib/python3.4/idlelib/FileList.py +129 -0
  599. package/python3.4.2/lib/python3.4/idlelib/FormatParagraph.py +193 -0
  600. package/python3.4.2/lib/python3.4/idlelib/GrepDialog.py +159 -0
  601. package/python3.4.2/lib/python3.4/idlelib/HISTORY.txt +296 -0
  602. package/python3.4.2/lib/python3.4/idlelib/HyperParser.py +313 -0
  603. package/python3.4.2/lib/python3.4/idlelib/IOBinding.py +555 -0
  604. package/python3.4.2/lib/python3.4/idlelib/Icons/folder.gif +0 -0
  605. package/python3.4.2/lib/python3.4/idlelib/Icons/idle.icns +0 -0
  606. package/python3.4.2/lib/python3.4/idlelib/Icons/idle.ico +0 -0
  607. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_16.gif +0 -0
  608. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_16.png +0 -0
  609. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_32.gif +0 -0
  610. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_32.png +0 -0
  611. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_48.gif +0 -0
  612. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_48.png +0 -0
  613. package/python3.4.2/lib/python3.4/idlelib/Icons/minusnode.gif +0 -0
  614. package/python3.4.2/lib/python3.4/idlelib/Icons/openfolder.gif +0 -0
  615. package/python3.4.2/lib/python3.4/idlelib/Icons/plusnode.gif +0 -0
  616. package/python3.4.2/lib/python3.4/idlelib/Icons/python.gif +0 -0
  617. package/python3.4.2/lib/python3.4/idlelib/Icons/tk.gif +0 -0
  618. package/python3.4.2/lib/python3.4/idlelib/IdleHistory.py +104 -0
  619. package/python3.4.2/lib/python3.4/idlelib/MultiCall.py +453 -0
  620. package/python3.4.2/lib/python3.4/idlelib/MultiStatusBar.py +45 -0
  621. package/python3.4.2/lib/python3.4/idlelib/NEWS.txt +877 -0
  622. package/python3.4.2/lib/python3.4/idlelib/ObjectBrowser.py +143 -0
  623. package/python3.4.2/lib/python3.4/idlelib/OutputWindow.py +144 -0
  624. package/python3.4.2/lib/python3.4/idlelib/ParenMatch.py +178 -0
  625. package/python3.4.2/lib/python3.4/idlelib/PathBrowser.py +106 -0
  626. package/python3.4.2/lib/python3.4/idlelib/Percolator.py +104 -0
  627. package/python3.4.2/lib/python3.4/idlelib/PyParse.py +618 -0
  628. package/python3.4.2/lib/python3.4/idlelib/PyShell.py +1619 -0
  629. package/python3.4.2/lib/python3.4/idlelib/README.txt +60 -0
  630. package/python3.4.2/lib/python3.4/idlelib/RemoteDebugger.py +389 -0
  631. package/python3.4.2/lib/python3.4/idlelib/RemoteObjectBrowser.py +36 -0
  632. package/python3.4.2/lib/python3.4/idlelib/ReplaceDialog.py +221 -0
  633. package/python3.4.2/lib/python3.4/idlelib/RstripExtension.py +33 -0
  634. package/python3.4.2/lib/python3.4/idlelib/ScriptBinding.py +207 -0
  635. package/python3.4.2/lib/python3.4/idlelib/ScrolledList.py +140 -0
  636. package/python3.4.2/lib/python3.4/idlelib/SearchDialog.py +89 -0
  637. package/python3.4.2/lib/python3.4/idlelib/SearchDialogBase.py +184 -0
  638. package/python3.4.2/lib/python3.4/idlelib/SearchEngine.py +233 -0
  639. package/python3.4.2/lib/python3.4/idlelib/StackViewer.py +152 -0
  640. package/python3.4.2/lib/python3.4/idlelib/TODO.txt +210 -0
  641. package/python3.4.2/lib/python3.4/idlelib/ToolTip.py +97 -0
  642. package/python3.4.2/lib/python3.4/idlelib/TreeWidget.py +465 -0
  643. package/python3.4.2/lib/python3.4/idlelib/UndoDelegator.py +365 -0
  644. package/python3.4.2/lib/python3.4/idlelib/WidgetRedirector.py +174 -0
  645. package/python3.4.2/lib/python3.4/idlelib/WindowList.py +90 -0
  646. package/python3.4.2/lib/python3.4/idlelib/ZoomHeight.py +51 -0
  647. package/python3.4.2/lib/python3.4/idlelib/__init__.py +1 -0
  648. package/python3.4.2/lib/python3.4/idlelib/__main__.py +9 -0
  649. package/python3.4.2/lib/python3.4/idlelib/aboutDialog.py +145 -0
  650. package/python3.4.2/lib/python3.4/idlelib/config-extensions.def +96 -0
  651. package/python3.4.2/lib/python3.4/idlelib/config-highlight.def +64 -0
  652. package/python3.4.2/lib/python3.4/idlelib/config-keys.def +214 -0
  653. package/python3.4.2/lib/python3.4/idlelib/config-main.def +79 -0
  654. package/python3.4.2/lib/python3.4/idlelib/configDialog.py +1195 -0
  655. package/python3.4.2/lib/python3.4/idlelib/configHandler.py +722 -0
  656. package/python3.4.2/lib/python3.4/idlelib/configHelpSourceEdit.py +166 -0
  657. package/python3.4.2/lib/python3.4/idlelib/configSectionNameDialog.py +98 -0
  658. package/python3.4.2/lib/python3.4/idlelib/dynOptionMenuWidget.py +57 -0
  659. package/python3.4.2/lib/python3.4/idlelib/extend.txt +83 -0
  660. package/python3.4.2/lib/python3.4/idlelib/help.txt +368 -0
  661. package/python3.4.2/lib/python3.4/idlelib/idle.bat +4 -0
  662. package/python3.4.2/lib/python3.4/idlelib/idle.py +11 -0
  663. package/python3.4.2/lib/python3.4/idlelib/idle.pyw +21 -0
  664. package/python3.4.2/lib/python3.4/idlelib/idle_test/README.txt +115 -0
  665. package/python3.4.2/lib/python3.4/idlelib/idle_test/__init__.py +9 -0
  666. package/python3.4.2/lib/python3.4/idlelib/idle_test/htest.py +369 -0
  667. package/python3.4.2/lib/python3.4/idlelib/idle_test/mock_idle.py +55 -0
  668. package/python3.4.2/lib/python3.4/idlelib/idle_test/mock_tk.py +298 -0
  669. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_autocomplete.py +143 -0
  670. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_autoexpand.py +141 -0
  671. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_calltips.py +172 -0
  672. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_config_name.py +75 -0
  673. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_configdialog.py +32 -0
  674. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_delegator.py +37 -0
  675. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_formatparagraph.py +377 -0
  676. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_grep.py +80 -0
  677. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_hyperparser.py +273 -0
  678. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_idlehistory.py +167 -0
  679. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_parenmatch.py +109 -0
  680. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_pathbrowser.py +12 -0
  681. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_rstrip.py +49 -0
  682. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_searchdialogbase.py +165 -0
  683. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_searchengine.py +329 -0
  684. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_text.py +228 -0
  685. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_textview.py +97 -0
  686. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_warning.py +73 -0
  687. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_widgetredir.py +122 -0
  688. package/python3.4.2/lib/python3.4/idlelib/idlever.py +1 -0
  689. package/python3.4.2/lib/python3.4/idlelib/keybindingDialog.py +266 -0
  690. package/python3.4.2/lib/python3.4/idlelib/macosxSupport.py +239 -0
  691. package/python3.4.2/lib/python3.4/idlelib/rpc.py +624 -0
  692. package/python3.4.2/lib/python3.4/idlelib/run.py +404 -0
  693. package/python3.4.2/lib/python3.4/idlelib/tabbedpages.py +498 -0
  694. package/python3.4.2/lib/python3.4/idlelib/testcode.py +31 -0
  695. package/python3.4.2/lib/python3.4/idlelib/textView.py +86 -0
  696. package/python3.4.2/lib/python3.4/imaplib.py +1549 -0
  697. package/python3.4.2/lib/python3.4/imghdr.py +154 -0
  698. package/python3.4.2/lib/python3.4/imp.py +315 -0
  699. package/python3.4.2/lib/python3.4/importlib/__init__.py +156 -0
  700. package/python3.4.2/lib/python3.4/importlib/_bootstrap.py +2461 -0
  701. package/python3.4.2/lib/python3.4/importlib/abc.py +323 -0
  702. package/python3.4.2/lib/python3.4/importlib/machinery.py +21 -0
  703. package/python3.4.2/lib/python3.4/importlib/util.py +202 -0
  704. package/python3.4.2/lib/python3.4/inspect.py +2759 -0
  705. package/python3.4.2/lib/python3.4/io.py +92 -0
  706. package/python3.4.2/lib/python3.4/ipaddress.py +2183 -0
  707. package/python3.4.2/lib/python3.4/json/__init__.py +331 -0
  708. package/python3.4.2/lib/python3.4/json/decoder.py +362 -0
  709. package/python3.4.2/lib/python3.4/json/encoder.py +433 -0
  710. package/python3.4.2/lib/python3.4/json/scanner.py +73 -0
  711. package/python3.4.2/lib/python3.4/json/tool.py +39 -0
  712. package/python3.4.2/lib/python3.4/keyword.py +94 -0
  713. package/python3.4.2/lib/python3.4/lib2to3/Grammar.txt +159 -0
  714. package/python3.4.2/lib/python3.4/lib2to3/Grammar3.4.2.final.0.pickle +0 -0
  715. package/python3.4.2/lib/python3.4/lib2to3/PatternGrammar.txt +28 -0
  716. package/python3.4.2/lib/python3.4/lib2to3/PatternGrammar3.4.2.final.0.pickle +0 -0
  717. package/python3.4.2/lib/python3.4/lib2to3/__init__.py +1 -0
  718. package/python3.4.2/lib/python3.4/lib2to3/__main__.py +4 -0
  719. package/python3.4.2/lib/python3.4/lib2to3/btm_matcher.py +168 -0
  720. package/python3.4.2/lib/python3.4/lib2to3/btm_utils.py +281 -0
  721. package/python3.4.2/lib/python3.4/lib2to3/fixer_base.py +187 -0
  722. package/python3.4.2/lib/python3.4/lib2to3/fixer_util.py +455 -0
  723. package/python3.4.2/lib/python3.4/lib2to3/fixes/__init__.py +1 -0
  724. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_apply.py +59 -0
  725. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_asserts.py +34 -0
  726. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_basestring.py +14 -0
  727. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_buffer.py +22 -0
  728. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_callable.py +37 -0
  729. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_dict.py +107 -0
  730. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_except.py +93 -0
  731. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_exec.py +40 -0
  732. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_execfile.py +52 -0
  733. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_exitfunc.py +72 -0
  734. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_filter.py +76 -0
  735. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_funcattrs.py +21 -0
  736. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_future.py +22 -0
  737. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_getcwdu.py +19 -0
  738. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_has_key.py +110 -0
  739. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_idioms.py +152 -0
  740. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_import.py +99 -0
  741. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_imports.py +145 -0
  742. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_imports2.py +16 -0
  743. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_input.py +26 -0
  744. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_intern.py +31 -0
  745. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_isinstance.py +52 -0
  746. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_itertools.py +43 -0
  747. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_itertools_imports.py +57 -0
  748. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_long.py +19 -0
  749. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_map.py +91 -0
  750. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_metaclass.py +228 -0
  751. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_methodattrs.py +24 -0
  752. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_ne.py +23 -0
  753. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_next.py +103 -0
  754. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_nonzero.py +21 -0
  755. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_numliterals.py +28 -0
  756. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_operator.py +98 -0
  757. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_paren.py +44 -0
  758. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_print.py +87 -0
  759. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_raise.py +90 -0
  760. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_raw_input.py +17 -0
  761. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_reduce.py +35 -0
  762. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_reload.py +28 -0
  763. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_renames.py +70 -0
  764. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_repr.py +23 -0
  765. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_set_literal.py +53 -0
  766. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_standarderror.py +18 -0
  767. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_sys_exc.py +30 -0
  768. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_throw.py +56 -0
  769. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_tuple_params.py +175 -0
  770. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_types.py +62 -0
  771. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_unicode.py +42 -0
  772. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_urllib.py +197 -0
  773. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_ws_comma.py +39 -0
  774. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_xrange.py +73 -0
  775. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_xreadlines.py +25 -0
  776. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_zip.py +35 -0
  777. package/python3.4.2/lib/python3.4/lib2to3/main.py +268 -0
  778. package/python3.4.2/lib/python3.4/lib2to3/patcomp.py +205 -0
  779. package/python3.4.2/lib/python3.4/lib2to3/pgen2/__init__.py +4 -0
  780. package/python3.4.2/lib/python3.4/lib2to3/pgen2/conv.py +257 -0
  781. package/python3.4.2/lib/python3.4/lib2to3/pgen2/driver.py +157 -0
  782. package/python3.4.2/lib/python3.4/lib2to3/pgen2/grammar.py +183 -0
  783. package/python3.4.2/lib/python3.4/lib2to3/pgen2/literals.py +60 -0
  784. package/python3.4.2/lib/python3.4/lib2to3/pgen2/parse.py +201 -0
  785. package/python3.4.2/lib/python3.4/lib2to3/pgen2/pgen.py +386 -0
  786. package/python3.4.2/lib/python3.4/lib2to3/pgen2/token.py +83 -0
  787. package/python3.4.2/lib/python3.4/lib2to3/pgen2/tokenize.py +502 -0
  788. package/python3.4.2/lib/python3.4/lib2to3/pygram.py +40 -0
  789. package/python3.4.2/lib/python3.4/lib2to3/pytree.py +864 -0
  790. package/python3.4.2/lib/python3.4/lib2to3/refactor.py +747 -0
  791. package/python3.4.2/lib/python3.4/lib2to3/tests/__init__.py +24 -0
  792. package/python3.4.2/lib/python3.4/lib2to3/tests/data/README +6 -0
  793. package/python3.4.2/lib/python3.4/lib2to3/tests/data/bom.py +2 -0
  794. package/python3.4.2/lib/python3.4/lib2to3/tests/data/crlf.py +3 -0
  795. package/python3.4.2/lib/python3.4/lib2to3/tests/data/different_encoding.py +6 -0
  796. package/python3.4.2/lib/python3.4/lib2to3/tests/data/false_encoding.py +2 -0
  797. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/bad_order.py +5 -0
  798. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/__init__.py +0 -0
  799. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_explicit.py +6 -0
  800. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_first.py +6 -0
  801. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_last.py +7 -0
  802. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_parrot.py +13 -0
  803. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_preorder.py +6 -0
  804. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/no_fixer_cls.py +1 -0
  805. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/parrot_example.py +2 -0
  806. package/python3.4.2/lib/python3.4/lib2to3/tests/data/infinite_recursion.py +2669 -0
  807. package/python3.4.2/lib/python3.4/lib2to3/tests/data/py2_test_grammar.py +974 -0
  808. package/python3.4.2/lib/python3.4/lib2to3/tests/data/py3_test_grammar.py +923 -0
  809. package/python3.4.2/lib/python3.4/lib2to3/tests/pytree_idempotency.py +92 -0
  810. package/python3.4.2/lib/python3.4/lib2to3/tests/support.py +54 -0
  811. package/python3.4.2/lib/python3.4/lib2to3/tests/test_all_fixers.py +23 -0
  812. package/python3.4.2/lib/python3.4/lib2to3/tests/test_fixers.py +4687 -0
  813. package/python3.4.2/lib/python3.4/lib2to3/tests/test_main.py +139 -0
  814. package/python3.4.2/lib/python3.4/lib2to3/tests/test_parser.py +249 -0
  815. package/python3.4.2/lib/python3.4/lib2to3/tests/test_pytree.py +477 -0
  816. package/python3.4.2/lib/python3.4/lib2to3/tests/test_refactor.py +321 -0
  817. package/python3.4.2/lib/python3.4/lib2to3/tests/test_util.py +594 -0
  818. package/python3.4.2/lib/python3.4/linecache.py +134 -0
  819. package/python3.4.2/lib/python3.4/locale.py +1559 -0
  820. package/python3.4.2/lib/python3.4/logging/__init__.py +1950 -0
  821. package/python3.4.2/lib/python3.4/logging/config.py +927 -0
  822. package/python3.4.2/lib/python3.4/logging/handlers.py +1452 -0
  823. package/python3.4.2/lib/python3.4/lzma.py +511 -0
  824. package/python3.4.2/lib/python3.4/macpath.py +205 -0
  825. package/python3.4.2/lib/python3.4/macurl2path.py +77 -0
  826. package/python3.4.2/lib/python3.4/mailbox.py +2136 -0
  827. package/python3.4.2/lib/python3.4/mailcap.py +253 -0
  828. package/python3.4.2/lib/python3.4/mimetypes.py +592 -0
  829. package/python3.4.2/lib/python3.4/modulefinder.py +642 -0
  830. package/python3.4.2/lib/python3.4/multiprocessing/__init__.py +38 -0
  831. package/python3.4.2/lib/python3.4/multiprocessing/connection.py +954 -0
  832. package/python3.4.2/lib/python3.4/multiprocessing/context.py +348 -0
  833. package/python3.4.2/lib/python3.4/multiprocessing/dummy/__init__.py +119 -0
  834. package/python3.4.2/lib/python3.4/multiprocessing/dummy/connection.py +74 -0
  835. package/python3.4.2/lib/python3.4/multiprocessing/forkserver.py +267 -0
  836. package/python3.4.2/lib/python3.4/multiprocessing/heap.py +249 -0
  837. package/python3.4.2/lib/python3.4/multiprocessing/managers.py +1131 -0
  838. package/python3.4.2/lib/python3.4/multiprocessing/pool.py +769 -0
  839. package/python3.4.2/lib/python3.4/multiprocessing/popen_fork.py +83 -0
  840. package/python3.4.2/lib/python3.4/multiprocessing/popen_forkserver.py +69 -0
  841. package/python3.4.2/lib/python3.4/multiprocessing/popen_spawn_posix.py +69 -0
  842. package/python3.4.2/lib/python3.4/multiprocessing/popen_spawn_win32.py +99 -0
  843. package/python3.4.2/lib/python3.4/multiprocessing/process.py +332 -0
  844. package/python3.4.2/lib/python3.4/multiprocessing/queues.py +367 -0
  845. package/python3.4.2/lib/python3.4/multiprocessing/reduction.py +240 -0
  846. package/python3.4.2/lib/python3.4/multiprocessing/resource_sharer.py +158 -0
  847. package/python3.4.2/lib/python3.4/multiprocessing/semaphore_tracker.py +143 -0
  848. package/python3.4.2/lib/python3.4/multiprocessing/sharedctypes.py +245 -0
  849. package/python3.4.2/lib/python3.4/multiprocessing/spawn.py +287 -0
  850. package/python3.4.2/lib/python3.4/multiprocessing/synchronize.py +418 -0
  851. package/python3.4.2/lib/python3.4/multiprocessing/util.py +367 -0
  852. package/python3.4.2/lib/python3.4/netrc.py +142 -0
  853. package/python3.4.2/lib/python3.4/nntplib.py +1134 -0
  854. package/python3.4.2/lib/python3.4/ntpath.py +625 -0
  855. package/python3.4.2/lib/python3.4/nturl2path.py +66 -0
  856. package/python3.4.2/lib/python3.4/numbers.py +394 -0
  857. package/python3.4.2/lib/python3.4/opcode.py +200 -0
  858. package/python3.4.2/lib/python3.4/operator.py +411 -0
  859. package/python3.4.2/lib/python3.4/optparse.py +1680 -0
  860. package/python3.4.2/lib/python3.4/os.py +980 -0
  861. package/python3.4.2/lib/python3.4/pathlib.py +1291 -0
  862. package/python3.4.2/lib/python3.4/pdb.py +1685 -0
  863. package/python3.4.2/lib/python3.4/pickle.py +1599 -0
  864. package/python3.4.2/lib/python3.4/pickletools.py +2818 -0
  865. package/python3.4.2/lib/python3.4/pipes.py +247 -0
  866. package/python3.4.2/lib/python3.4/pkgutil.py +629 -0
  867. package/python3.4.2/lib/python3.4/plat-linux/CDROM.py +207 -0
  868. package/python3.4.2/lib/python3.4/plat-linux/DLFCN.py +83 -0
  869. package/python3.4.2/lib/python3.4/plat-linux/IN.py +615 -0
  870. package/python3.4.2/lib/python3.4/plat-linux/TYPES.py +170 -0
  871. package/python3.4.2/lib/python3.4/plat-linux/regen +8 -0
  872. package/python3.4.2/lib/python3.4/platform.py +1476 -0
  873. package/python3.4.2/lib/python3.4/plistlib.py +1025 -0
  874. package/python3.4.2/lib/python3.4/poplib.py +461 -0
  875. package/python3.4.2/lib/python3.4/posixpath.py +457 -0
  876. package/python3.4.2/lib/python3.4/pprint.py +416 -0
  877. package/python3.4.2/lib/python3.4/profile.py +589 -0
  878. package/python3.4.2/lib/python3.4/pstats.py +691 -0
  879. package/python3.4.2/lib/python3.4/pty.py +170 -0
  880. package/python3.4.2/lib/python3.4/py_compile.py +185 -0
  881. package/python3.4.2/lib/python3.4/pyclbr.py +351 -0
  882. package/python3.4.2/lib/python3.4/pydoc.py +2622 -0
  883. package/python3.4.2/lib/python3.4/pydoc_data/__init__.py +0 -0
  884. package/python3.4.2/lib/python3.4/pydoc_data/_pydoc.css +6 -0
  885. package/python3.4.2/lib/python3.4/pydoc_data/topics.py +79 -0
  886. package/python3.4.2/lib/python3.4/queue.py +249 -0
  887. package/python3.4.2/lib/python3.4/quopri.py +242 -0
  888. package/python3.4.2/lib/python3.4/random.py +742 -0
  889. package/python3.4.2/lib/python3.4/re.py +368 -0
  890. package/python3.4.2/lib/python3.4/reprlib.py +157 -0
  891. package/python3.4.2/lib/python3.4/rlcompleter.py +165 -0
  892. package/python3.4.2/lib/python3.4/runpy.py +271 -0
  893. package/python3.4.2/lib/python3.4/sched.py +167 -0
  894. package/python3.4.2/lib/python3.4/selectors.py +525 -0
  895. package/python3.4.2/lib/python3.4/shelve.py +239 -0
  896. package/python3.4.2/lib/python3.4/shlex.py +304 -0
  897. package/python3.4.2/lib/python3.4/shutil.py +1127 -0
  898. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/PKG-INFO +55 -0
  899. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/SOURCES.txt +126 -0
  900. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/dependency_links.txt +1 -0
  901. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/entry_points.txt +4 -0
  902. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/not-zip-safe +1 -0
  903. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/requires.txt +4 -0
  904. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/top_level.txt +1 -0
  905. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/__init__.py +69 -0
  906. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/_compat.py +150 -0
  907. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/_stringdefs.py +132 -0
  908. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/bccache.py +344 -0
  909. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/compiler.py +1640 -0
  910. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/constants.py +32 -0
  911. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/debug.py +337 -0
  912. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/defaults.py +43 -0
  913. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/environment.py +1191 -0
  914. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/exceptions.py +146 -0
  915. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/ext.py +636 -0
  916. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/filters.py +987 -0
  917. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/lexer.py +733 -0
  918. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/loaders.py +471 -0
  919. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/meta.py +103 -0
  920. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/nodes.py +914 -0
  921. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/optimizer.py +68 -0
  922. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/parser.py +895 -0
  923. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/runtime.py +581 -0
  924. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/sandbox.py +368 -0
  925. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/tests.py +149 -0
  926. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/__init__.py +156 -0
  927. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/api.py +261 -0
  928. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/bytecode_cache.py +37 -0
  929. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/core_tags.py +305 -0
  930. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/debug.py +58 -0
  931. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/doctests.py +29 -0
  932. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/ext.py +459 -0
  933. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/filters.py +515 -0
  934. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/imports.py +141 -0
  935. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/inheritance.py +250 -0
  936. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/lexnparse.py +593 -0
  937. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/loader.py +226 -0
  938. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/regression.py +279 -0
  939. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/__init__.py +0 -0
  940. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/broken.html +3 -0
  941. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/foo/test.html +1 -0
  942. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/syntaxerror.html +4 -0
  943. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/test.html +1 -0
  944. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/security.py +166 -0
  945. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/tests.py +93 -0
  946. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/utils.py +82 -0
  947. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/utils.py +520 -0
  948. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/visitor.py +87 -0
  949. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/PKG-INFO +119 -0
  950. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/SOURCES.txt +17 -0
  951. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/dependency_links.txt +1 -0
  952. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/not-zip-safe +1 -0
  953. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/top_level.txt +1 -0
  954. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/__init__.py +298 -0
  955. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_compat.py +26 -0
  956. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_constants.py +267 -0
  957. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_native.py +46 -0
  958. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_speedups.c +239 -0
  959. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/tests.py +179 -0
  960. package/python3.4.2/lib/python3.4/site-packages/README +2 -0
  961. package/python3.4.2/lib/python3.4/site-packages/_markerlib/__init__.py +16 -0
  962. package/python3.4.2/lib/python3.4/site-packages/_markerlib/markers.py +119 -0
  963. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/PKG-INFO +68 -0
  964. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/SOURCES.txt +23 -0
  965. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/dependency_links.txt +1 -0
  966. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/entry_points.txt +3 -0
  967. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/not-zip-safe +1 -0
  968. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/requires.txt +1 -0
  969. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/scripts/android-debian-builder +6 -0
  970. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/top_level.txt +1 -0
  971. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/__init__.py +0 -0
  972. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/__main__.py +26 -0
  973. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/build.py +63 -0
  974. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/config.py +82 -0
  975. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/deb.sh +106 -0
  976. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/default-config +42 -0
  977. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/first-time-setup.sh +94 -0
  978. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/init.sh +27 -0
  979. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/examples/jessie-armhf.cfg +26 -0
  980. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/run_tests.py +38 -0
  981. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/script.py +110 -0
  982. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/util.py +177 -0
  983. package/python3.4.2/lib/python3.4/site-packages/easy-install.pth +4 -0
  984. package/python3.4.2/lib/python3.4/site-packages/easy_install.py +5 -0
  985. package/python3.4.2/lib/python3.4/site-packages/pip/__init__.py +277 -0
  986. package/python3.4.2/lib/python3.4/site-packages/pip/__main__.py +7 -0
  987. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/__init__.py +8 -0
  988. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/_markerlib/__init__.py +16 -0
  989. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/_markerlib/markers.py +119 -0
  990. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/__init__.py +7 -0
  991. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/ansi.py +50 -0
  992. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/ansitowin32.py +190 -0
  993. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/initialise.py +56 -0
  994. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/win32.py +137 -0
  995. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/winterm.py +120 -0
  996. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/__init__.py +23 -0
  997. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/__init__.py +6 -0
  998. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/misc.py +41 -0
  999. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/shutil.py +761 -0
  1000. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg +84 -0
  1001. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/sysconfig.py +788 -0
  1002. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/tarfile.py +2607 -0
  1003. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/compat.py +1064 -0
  1004. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/database.py +1301 -0
  1005. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/index.py +488 -0
  1006. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/locators.py +1194 -0
  1007. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/manifest.py +364 -0
  1008. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/markers.py +190 -0
  1009. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/metadata.py +1026 -0
  1010. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/resources.py +317 -0
  1011. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/scripts.py +323 -0
  1012. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  1013. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  1014. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/util.py +1575 -0
  1015. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/version.py +721 -0
  1016. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  1017. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  1018. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/wheel.py +958 -0
  1019. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/__init__.py +23 -0
  1020. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/constants.py +3104 -0
  1021. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/__init__.py +0 -0
  1022. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/_base.py +12 -0
  1023. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py +20 -0
  1024. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py +65 -0
  1025. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/lint.py +93 -0
  1026. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/optionaltags.py +205 -0
  1027. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/sanitizer.py +12 -0
  1028. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/whitespace.py +38 -0
  1029. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/html5parser.py +2713 -0
  1030. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/ihatexml.py +285 -0
  1031. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/inputstream.py +881 -0
  1032. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/sanitizer.py +271 -0
  1033. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/serializer/__init__.py +16 -0
  1034. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/serializer/htmlserializer.py +320 -0
  1035. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/tokenizer.py +1731 -0
  1036. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py +0 -0
  1037. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treeadapters/sax.py +44 -0
  1038. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py +76 -0
  1039. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/_base.py +377 -0
  1040. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/dom.py +227 -0
  1041. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/etree.py +337 -0
  1042. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py +369 -0
  1043. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py +57 -0
  1044. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/_base.py +200 -0
  1045. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/dom.py +46 -0
  1046. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/etree.py +138 -0
  1047. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/genshistream.py +69 -0
  1048. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/lxmletree.py +208 -0
  1049. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/pulldom.py +63 -0
  1050. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/__init__.py +12 -0
  1051. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/_base.py +37 -0
  1052. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/datrie.py +44 -0
  1053. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/py.py +67 -0
  1054. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/utils.py +82 -0
  1055. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/pkg_resources.py +2762 -0
  1056. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/re-vendor.py +34 -0
  1057. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/__init__.py +77 -0
  1058. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/adapters.py +388 -0
  1059. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/api.py +120 -0
  1060. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/auth.py +193 -0
  1061. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/cacert.pem +5026 -0
  1062. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/certs.py +24 -0
  1063. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/compat.py +115 -0
  1064. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/cookies.py +454 -0
  1065. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/exceptions.py +75 -0
  1066. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/hooks.py +45 -0
  1067. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/models.py +803 -0
  1068. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/__init__.py +3 -0
  1069. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/__init__.py +32 -0
  1070. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/big5freq.py +925 -0
  1071. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/big5prober.py +42 -0
  1072. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/chardetect.py +46 -0
  1073. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/chardistribution.py +231 -0
  1074. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/charsetgroupprober.py +106 -0
  1075. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/charsetprober.py +62 -0
  1076. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/codingstatemachine.py +61 -0
  1077. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/compat.py +34 -0
  1078. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/constants.py +39 -0
  1079. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/cp949prober.py +44 -0
  1080. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/escprober.py +86 -0
  1081. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/escsm.py +242 -0
  1082. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/eucjpprober.py +90 -0
  1083. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euckrfreq.py +596 -0
  1084. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euckrprober.py +42 -0
  1085. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euctwfreq.py +428 -0
  1086. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euctwprober.py +41 -0
  1087. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/gb2312freq.py +472 -0
  1088. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/gb2312prober.py +41 -0
  1089. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/hebrewprober.py +283 -0
  1090. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/jisfreq.py +569 -0
  1091. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/jpcntx.py +219 -0
  1092. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py +229 -0
  1093. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py +329 -0
  1094. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langgreekmodel.py +225 -0
  1095. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langhebrewmodel.py +201 -0
  1096. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langhungarianmodel.py +225 -0
  1097. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langthaimodel.py +200 -0
  1098. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/latin1prober.py +139 -0
  1099. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/mbcharsetprober.py +86 -0
  1100. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py +54 -0
  1101. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/mbcssm.py +575 -0
  1102. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/sbcharsetprober.py +120 -0
  1103. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py +69 -0
  1104. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/sjisprober.py +91 -0
  1105. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/universaldetector.py +170 -0
  1106. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/utf8prober.py +76 -0
  1107. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/__init__.py +58 -0
  1108. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/_collections.py +205 -0
  1109. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/connection.py +204 -0
  1110. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/connectionpool.py +710 -0
  1111. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.py +0 -0
  1112. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py +120 -0
  1113. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py +422 -0
  1114. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/exceptions.py +126 -0
  1115. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/fields.py +177 -0
  1116. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/filepost.py +100 -0
  1117. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/__init__.py +4 -0
  1118. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py +260 -0
  1119. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/six.py +385 -0
  1120. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py +13 -0
  1121. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py +105 -0
  1122. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/poolmanager.py +258 -0
  1123. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/request.py +141 -0
  1124. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/response.py +308 -0
  1125. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/__init__.py +27 -0
  1126. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/connection.py +45 -0
  1127. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/request.py +68 -0
  1128. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/response.py +13 -0
  1129. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py +133 -0
  1130. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/timeout.py +234 -0
  1131. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/url.py +162 -0
  1132. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/sessions.py +637 -0
  1133. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/status_codes.py +88 -0
  1134. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/structures.py +127 -0
  1135. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/utils.py +673 -0
  1136. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/six.py +646 -0
  1137. package/python3.4.2/lib/python3.4/site-packages/pip/backwardcompat/__init__.py +138 -0
  1138. package/python3.4.2/lib/python3.4/site-packages/pip/basecommand.py +201 -0
  1139. package/python3.4.2/lib/python3.4/site-packages/pip/baseparser.py +224 -0
  1140. package/python3.4.2/lib/python3.4/site-packages/pip/cmdoptions.py +371 -0
  1141. package/python3.4.2/lib/python3.4/site-packages/pip/commands/__init__.py +88 -0
  1142. package/python3.4.2/lib/python3.4/site-packages/pip/commands/bundle.py +42 -0
  1143. package/python3.4.2/lib/python3.4/site-packages/pip/commands/completion.py +59 -0
  1144. package/python3.4.2/lib/python3.4/site-packages/pip/commands/freeze.py +114 -0
  1145. package/python3.4.2/lib/python3.4/site-packages/pip/commands/help.py +33 -0
  1146. package/python3.4.2/lib/python3.4/site-packages/pip/commands/install.py +314 -0
  1147. package/python3.4.2/lib/python3.4/site-packages/pip/commands/list.py +162 -0
  1148. package/python3.4.2/lib/python3.4/site-packages/pip/commands/search.py +132 -0
  1149. package/python3.4.2/lib/python3.4/site-packages/pip/commands/show.py +80 -0
  1150. package/python3.4.2/lib/python3.4/site-packages/pip/commands/uninstall.py +59 -0
  1151. package/python3.4.2/lib/python3.4/site-packages/pip/commands/unzip.py +7 -0
  1152. package/python3.4.2/lib/python3.4/site-packages/pip/commands/wheel.py +195 -0
  1153. package/python3.4.2/lib/python3.4/site-packages/pip/commands/zip.py +351 -0
  1154. package/python3.4.2/lib/python3.4/site-packages/pip/download.py +644 -0
  1155. package/python3.4.2/lib/python3.4/site-packages/pip/exceptions.py +46 -0
  1156. package/python3.4.2/lib/python3.4/site-packages/pip/index.py +990 -0
  1157. package/python3.4.2/lib/python3.4/site-packages/pip/locations.py +172 -0
  1158. package/python3.4.2/lib/python3.4/site-packages/pip/log.py +276 -0
  1159. package/python3.4.2/lib/python3.4/site-packages/pip/pep425tags.py +102 -0
  1160. package/python3.4.2/lib/python3.4/site-packages/pip/req.py +1931 -0
  1161. package/python3.4.2/lib/python3.4/site-packages/pip/runner.py +18 -0
  1162. package/python3.4.2/lib/python3.4/site-packages/pip/status_codes.py +6 -0
  1163. package/python3.4.2/lib/python3.4/site-packages/pip/util.py +720 -0
  1164. package/python3.4.2/lib/python3.4/site-packages/pip/vcs/__init__.py +251 -0
  1165. package/python3.4.2/lib/python3.4/site-packages/pip/vcs/bazaar.py +131 -0
  1166. package/python3.4.2/lib/python3.4/site-packages/pip/vcs/git.py +194 -0
  1167. package/python3.4.2/lib/python3.4/site-packages/pip/vcs/mercurial.py +151 -0
  1168. package/python3.4.2/lib/python3.4/site-packages/pip/vcs/subversion.py +273 -0
  1169. package/python3.4.2/lib/python3.4/site-packages/pip/wheel.py +560 -0
  1170. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/DESCRIPTION.rst +71 -0
  1171. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/METADATA +98 -0
  1172. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/RECORD +373 -0
  1173. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/WHEEL +6 -0
  1174. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/entry_points.txt +5 -0
  1175. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/metadata.json +1 -0
  1176. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/top_level.txt +1 -0
  1177. package/python3.4.2/lib/python3.4/site-packages/pkg_resources.py +2719 -0
  1178. package/python3.4.2/lib/python3.4/site-packages/setuptools/__init__.py +98 -0
  1179. package/python3.4.2/lib/python3.4/site-packages/setuptools/archive_util.py +210 -0
  1180. package/python3.4.2/lib/python3.4/site-packages/setuptools/cli-32.exe +0 -0
  1181. package/python3.4.2/lib/python3.4/site-packages/setuptools/cli-64.exe +0 -0
  1182. package/python3.4.2/lib/python3.4/site-packages/setuptools/cli-arm-32.exe +0 -0
  1183. package/python3.4.2/lib/python3.4/site-packages/setuptools/cli.exe +0 -0
  1184. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/__init__.py +17 -0
  1185. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/alias.py +82 -0
  1186. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/bdist_egg.py +553 -0
  1187. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/bdist_rpm.py +82 -0
  1188. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/bdist_wininst.py +82 -0
  1189. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/build_ext.py +298 -0
  1190. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/build_py.py +221 -0
  1191. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/develop.py +167 -0
  1192. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/easy_install.py +1915 -0
  1193. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/egg_info.py +392 -0
  1194. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install.py +103 -0
  1195. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install_egg_info.py +125 -0
  1196. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install_lib.py +82 -0
  1197. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install_scripts.py +54 -0
  1198. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/launcher manifest.xml +15 -0
  1199. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/register.py +10 -0
  1200. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/rotate.py +83 -0
  1201. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/saveopts.py +24 -0
  1202. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/sdist.py +238 -0
  1203. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/setopt.py +164 -0
  1204. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/test.py +198 -0
  1205. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/upload_docs.py +193 -0
  1206. package/python3.4.2/lib/python3.4/site-packages/setuptools/compat.py +83 -0
  1207. package/python3.4.2/lib/python3.4/site-packages/setuptools/depends.py +246 -0
  1208. package/python3.4.2/lib/python3.4/site-packages/setuptools/dist.py +796 -0
  1209. package/python3.4.2/lib/python3.4/site-packages/setuptools/extension.py +46 -0
  1210. package/python3.4.2/lib/python3.4/site-packages/setuptools/gui-32.exe +0 -0
  1211. package/python3.4.2/lib/python3.4/site-packages/setuptools/gui-64.exe +0 -0
  1212. package/python3.4.2/lib/python3.4/site-packages/setuptools/gui-arm-32.exe +0 -0
  1213. package/python3.4.2/lib/python3.4/site-packages/setuptools/gui.exe +0 -0
  1214. package/python3.4.2/lib/python3.4/site-packages/setuptools/lib2to3_ex.py +58 -0
  1215. package/python3.4.2/lib/python3.4/site-packages/setuptools/package_index.py +1057 -0
  1216. package/python3.4.2/lib/python3.4/site-packages/setuptools/py26compat.py +19 -0
  1217. package/python3.4.2/lib/python3.4/site-packages/setuptools/py27compat.py +15 -0
  1218. package/python3.4.2/lib/python3.4/site-packages/setuptools/py31compat.py +11 -0
  1219. package/python3.4.2/lib/python3.4/site-packages/setuptools/sandbox.py +322 -0
  1220. package/python3.4.2/lib/python3.4/site-packages/setuptools/script template (dev).py +11 -0
  1221. package/python3.4.2/lib/python3.4/site-packages/setuptools/script template.py +4 -0
  1222. package/python3.4.2/lib/python3.4/site-packages/setuptools/site-patch.py +83 -0
  1223. package/python3.4.2/lib/python3.4/site-packages/setuptools/ssl_support.py +234 -0
  1224. package/python3.4.2/lib/python3.4/site-packages/setuptools/svn_utils.py +564 -0
  1225. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/__init__.py +352 -0
  1226. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/doctest.py +2683 -0
  1227. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/environment.py +165 -0
  1228. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/py26compat.py +14 -0
  1229. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/script-with-bom.py +3 -0
  1230. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/server.py +82 -0
  1231. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_bdist_egg.py +69 -0
  1232. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_build_ext.py +20 -0
  1233. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_develop.py +122 -0
  1234. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_dist_info.py +83 -0
  1235. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_easy_install.py +394 -0
  1236. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_egg_info.py +173 -0
  1237. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_markerlib.py +68 -0
  1238. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_packageindex.py +203 -0
  1239. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_resources.py +620 -0
  1240. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_sandbox.py +79 -0
  1241. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_sdist.py +535 -0
  1242. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_svn.py +246 -0
  1243. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_test.py +124 -0
  1244. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_upload_docs.py +72 -0
  1245. package/python3.4.2/lib/python3.4/site-packages/setuptools/version.py +1 -0
  1246. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/DESCRIPTION.rst +1742 -0
  1247. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/METADATA +1772 -0
  1248. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/RECORD +149 -0
  1249. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/WHEEL +6 -0
  1250. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/dependency_links.txt +2 -0
  1251. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/entry_points.txt +62 -0
  1252. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/entry_points.txt.orig +62 -0
  1253. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/pydist.json +1 -0
  1254. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/requires.txt.orig +7 -0
  1255. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/top_level.txt +4 -0
  1256. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/zip-safe +1 -0
  1257. package/python3.4.2/lib/python3.4/site.py +616 -0
  1258. package/python3.4.2/lib/python3.4/smtpd.py +861 -0
  1259. package/python3.4.2/lib/python3.4/smtplib.py +999 -0
  1260. package/python3.4.2/lib/python3.4/sndhdr.py +240 -0
  1261. package/python3.4.2/lib/python3.4/socket.py +535 -0
  1262. package/python3.4.2/lib/python3.4/socketserver.py +748 -0
  1263. package/python3.4.2/lib/python3.4/sqlite3/__init__.py +23 -0
  1264. package/python3.4.2/lib/python3.4/sqlite3/dbapi2.py +89 -0
  1265. package/python3.4.2/lib/python3.4/sqlite3/dump.py +70 -0
  1266. package/python3.4.2/lib/python3.4/sqlite3/test/__init__.py +0 -0
  1267. package/python3.4.2/lib/python3.4/sqlite3/test/dbapi.py +911 -0
  1268. package/python3.4.2/lib/python3.4/sqlite3/test/dump.py +81 -0
  1269. package/python3.4.2/lib/python3.4/sqlite3/test/factory.py +253 -0
  1270. package/python3.4.2/lib/python3.4/sqlite3/test/hooks.py +258 -0
  1271. package/python3.4.2/lib/python3.4/sqlite3/test/regression.py +358 -0
  1272. package/python3.4.2/lib/python3.4/sqlite3/test/transactions.py +204 -0
  1273. package/python3.4.2/lib/python3.4/sqlite3/test/types.py +403 -0
  1274. package/python3.4.2/lib/python3.4/sqlite3/test/userfunctions.py +468 -0
  1275. package/python3.4.2/lib/python3.4/sre_compile.py +489 -0
  1276. package/python3.4.2/lib/python3.4/sre_constants.py +261 -0
  1277. package/python3.4.2/lib/python3.4/sre_parse.py +859 -0
  1278. package/python3.4.2/lib/python3.4/ssl.py +945 -0
  1279. package/python3.4.2/lib/python3.4/stat.py +155 -0
  1280. package/python3.4.2/lib/python3.4/statistics.py +595 -0
  1281. package/python3.4.2/lib/python3.4/string.py +282 -0
  1282. package/python3.4.2/lib/python3.4/stringprep.py +272 -0
  1283. package/python3.4.2/lib/python3.4/struct.py +15 -0
  1284. package/python3.4.2/lib/python3.4/subprocess.py +1690 -0
  1285. package/python3.4.2/lib/python3.4/sunau.py +525 -0
  1286. package/python3.4.2/lib/python3.4/symbol.py +111 -0
  1287. package/python3.4.2/lib/python3.4/symtable.py +240 -0
  1288. package/python3.4.2/lib/python3.4/sysconfig.py +709 -0
  1289. package/python3.4.2/lib/python3.4/tabnanny.py +332 -0
  1290. package/python3.4.2/lib/python3.4/tarfile.py +2519 -0
  1291. package/python3.4.2/lib/python3.4/telnetlib.py +672 -0
  1292. package/python3.4.2/lib/python3.4/tempfile.py +698 -0
  1293. package/python3.4.2/lib/python3.4/test/185test.db +0 -0
  1294. package/python3.4.2/lib/python3.4/test/Sine-1000Hz-300ms.aif +0 -0
  1295. package/python3.4.2/lib/python3.4/test/__init__.py +1 -0
  1296. package/python3.4.2/lib/python3.4/test/__main__.py +3 -0
  1297. package/python3.4.2/lib/python3.4/test/_test_multiprocessing.py +3841 -0
  1298. package/python3.4.2/lib/python3.4/test/audiodata/pluck-alaw.aifc +0 -0
  1299. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm16.aiff +0 -0
  1300. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm16.au +0 -0
  1301. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm16.wav +0 -0
  1302. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm24.aiff +0 -0
  1303. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm24.au +0 -0
  1304. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm24.wav +0 -0
  1305. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm32.aiff +0 -0
  1306. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm32.au +0 -0
  1307. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm32.wav +0 -0
  1308. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm8.aiff +0 -0
  1309. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm8.au +0 -0
  1310. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm8.wav +0 -0
  1311. package/python3.4.2/lib/python3.4/test/audiodata/pluck-ulaw.aifc +0 -0
  1312. package/python3.4.2/lib/python3.4/test/audiodata/pluck-ulaw.au +0 -0
  1313. package/python3.4.2/lib/python3.4/test/audiotest.au +0 -0
  1314. package/python3.4.2/lib/python3.4/test/audiotests.py +329 -0
  1315. package/python3.4.2/lib/python3.4/test/autotest.py +6 -0
  1316. package/python3.4.2/lib/python3.4/test/bad_coding.py +1 -0
  1317. package/python3.4.2/lib/python3.4/test/bad_coding2.py +2 -0
  1318. package/python3.4.2/lib/python3.4/test/badcert.pem +36 -0
  1319. package/python3.4.2/lib/python3.4/test/badkey.pem +40 -0
  1320. package/python3.4.2/lib/python3.4/test/badsyntax_3131.py +2 -0
  1321. package/python3.4.2/lib/python3.4/test/badsyntax_future10.py +3 -0
  1322. package/python3.4.2/lib/python3.4/test/badsyntax_future3.py +10 -0
  1323. package/python3.4.2/lib/python3.4/test/badsyntax_future4.py +10 -0
  1324. package/python3.4.2/lib/python3.4/test/badsyntax_future5.py +12 -0
  1325. package/python3.4.2/lib/python3.4/test/badsyntax_future6.py +10 -0
  1326. package/python3.4.2/lib/python3.4/test/badsyntax_future7.py +11 -0
  1327. package/python3.4.2/lib/python3.4/test/badsyntax_future8.py +10 -0
  1328. package/python3.4.2/lib/python3.4/test/badsyntax_future9.py +10 -0
  1329. package/python3.4.2/lib/python3.4/test/badsyntax_pep3120.py +1 -0
  1330. package/python3.4.2/lib/python3.4/test/buffer_tests.py +218 -0
  1331. package/python3.4.2/lib/python3.4/test/bytecode_helper.py +41 -0
  1332. package/python3.4.2/lib/python3.4/test/capath/4e1295a3.0 +14 -0
  1333. package/python3.4.2/lib/python3.4/test/capath/5ed36f99.0 +41 -0
  1334. package/python3.4.2/lib/python3.4/test/capath/6e88d7b8.0 +14 -0
  1335. package/python3.4.2/lib/python3.4/test/capath/99d0fa06.0 +41 -0
  1336. package/python3.4.2/lib/python3.4/test/cfgparser.1 +2 -0
  1337. package/python3.4.2/lib/python3.4/test/cfgparser.2 +537 -0
  1338. package/python3.4.2/lib/python3.4/test/cfgparser.3 +69 -0
  1339. package/python3.4.2/lib/python3.4/test/check_soundcard.vbs +13 -0
  1340. package/python3.4.2/lib/python3.4/test/cjkencodings/big5-utf8.txt +9 -0
  1341. package/python3.4.2/lib/python3.4/test/cjkencodings/big5.txt +9 -0
  1342. package/python3.4.2/lib/python3.4/test/cjkencodings/big5hkscs-utf8.txt +2 -0
  1343. package/python3.4.2/lib/python3.4/test/cjkencodings/big5hkscs.txt +2 -0
  1344. package/python3.4.2/lib/python3.4/test/cjkencodings/cp949-utf8.txt +9 -0
  1345. package/python3.4.2/lib/python3.4/test/cjkencodings/cp949.txt +9 -0
  1346. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jisx0213-utf8.txt +8 -0
  1347. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jisx0213.txt +8 -0
  1348. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jp-utf8.txt +7 -0
  1349. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jp.txt +7 -0
  1350. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_kr-utf8.txt +7 -0
  1351. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_kr.txt +7 -0
  1352. package/python3.4.2/lib/python3.4/test/cjkencodings/gb18030-utf8.txt +15 -0
  1353. package/python3.4.2/lib/python3.4/test/cjkencodings/gb18030.txt +15 -0
  1354. package/python3.4.2/lib/python3.4/test/cjkencodings/gb2312-utf8.txt +6 -0
  1355. package/python3.4.2/lib/python3.4/test/cjkencodings/gb2312.txt +6 -0
  1356. package/python3.4.2/lib/python3.4/test/cjkencodings/gbk-utf8.txt +14 -0
  1357. package/python3.4.2/lib/python3.4/test/cjkencodings/gbk.txt +14 -0
  1358. package/python3.4.2/lib/python3.4/test/cjkencodings/hz-utf8.txt +2 -0
  1359. package/python3.4.2/lib/python3.4/test/cjkencodings/hz.txt +2 -0
  1360. package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_jp-utf8.txt +7 -0
  1361. package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_jp.txt +7 -0
  1362. package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_kr-utf8.txt +7 -0
  1363. package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_kr.txt +7 -0
  1364. package/python3.4.2/lib/python3.4/test/cjkencodings/johab-utf8.txt +9 -0
  1365. package/python3.4.2/lib/python3.4/test/cjkencodings/johab.txt +9 -0
  1366. package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jis-utf8.txt +7 -0
  1367. package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jis.txt +7 -0
  1368. package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jisx0213-utf8.txt +8 -0
  1369. package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jisx0213.txt +8 -0
  1370. package/python3.4.2/lib/python3.4/test/cmath_testcases.txt +2370 -0
  1371. package/python3.4.2/lib/python3.4/test/coding20731.py +4 -0
  1372. package/python3.4.2/lib/python3.4/test/curses_tests.py +46 -0
  1373. package/python3.4.2/lib/python3.4/test/data/README +2 -0
  1374. package/python3.4.2/lib/python3.4/test/datetimetester.py +3786 -0
  1375. package/python3.4.2/lib/python3.4/test/decimaltestdata/abs.decTest +161 -0
  1376. package/python3.4.2/lib/python3.4/test/decimaltestdata/add.decTest +2716 -0
  1377. package/python3.4.2/lib/python3.4/test/decimaltestdata/and.decTest +338 -0
  1378. package/python3.4.2/lib/python3.4/test/decimaltestdata/base.decTest +1411 -0
  1379. package/python3.4.2/lib/python3.4/test/decimaltestdata/clamp.decTest +211 -0
  1380. package/python3.4.2/lib/python3.4/test/decimaltestdata/class.decTest +131 -0
  1381. package/python3.4.2/lib/python3.4/test/decimaltestdata/compare.decTest +758 -0
  1382. package/python3.4.2/lib/python3.4/test/decimaltestdata/comparetotal.decTest +798 -0
  1383. package/python3.4.2/lib/python3.4/test/decimaltestdata/comparetotmag.decTest +790 -0
  1384. package/python3.4.2/lib/python3.4/test/decimaltestdata/copy.decTest +86 -0
  1385. package/python3.4.2/lib/python3.4/test/decimaltestdata/copyabs.decTest +86 -0
  1386. package/python3.4.2/lib/python3.4/test/decimaltestdata/copynegate.decTest +86 -0
  1387. package/python3.4.2/lib/python3.4/test/decimaltestdata/copysign.decTest +177 -0
  1388. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddAbs.decTest +126 -0
  1389. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddAdd.decTest +1328 -0
  1390. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddAnd.decTest +347 -0
  1391. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddBase.decTest +1104 -0
  1392. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCanonical.decTest +357 -0
  1393. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddClass.decTest +76 -0
  1394. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompare.decTest +744 -0
  1395. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompareSig.decTest +647 -0
  1396. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompareTotal.decTest +706 -0
  1397. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompareTotalMag.decTest +706 -0
  1398. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopy.decTest +88 -0
  1399. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopyAbs.decTest +88 -0
  1400. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopyNegate.decTest +88 -0
  1401. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopySign.decTest +175 -0
  1402. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddDivide.decTest +863 -0
  1403. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddDivideInt.decTest +449 -0
  1404. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddEncode.decTest +495 -0
  1405. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddFMA.decTest +1698 -0
  1406. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddInvert.decTest +202 -0
  1407. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddLogB.decTest +159 -0
  1408. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMax.decTest +322 -0
  1409. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMaxMag.decTest +304 -0
  1410. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMin.decTest +309 -0
  1411. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMinMag.decTest +293 -0
  1412. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMinus.decTest +88 -0
  1413. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMultiply.decTest +553 -0
  1414. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddNextMinus.decTest +126 -0
  1415. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddNextPlus.decTest +124 -0
  1416. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddNextToward.decTest +374 -0
  1417. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddOr.decTest +292 -0
  1418. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddPlus.decTest +88 -0
  1419. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddQuantize.decTest +833 -0
  1420. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddReduce.decTest +182 -0
  1421. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddRemainder.decTest +600 -0
  1422. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddRemainderNear.decTest +629 -0
  1423. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddRotate.decTest +262 -0
  1424. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddSameQuantum.decTest +389 -0
  1425. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddScaleB.decTest +243 -0
  1426. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddShift.decTest +262 -0
  1427. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddSubtract.decTest +629 -0
  1428. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddToIntegral.decTest +257 -0
  1429. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddXor.decTest +337 -0
  1430. package/python3.4.2/lib/python3.4/test/decimaltestdata/decDouble.decTest +65 -0
  1431. package/python3.4.2/lib/python3.4/test/decimaltestdata/decQuad.decTest +65 -0
  1432. package/python3.4.2/lib/python3.4/test/decimaltestdata/decSingle.decTest +25 -0
  1433. package/python3.4.2/lib/python3.4/test/decimaltestdata/divide.decTest +854 -0
  1434. package/python3.4.2/lib/python3.4/test/decimaltestdata/divideint.decTest +486 -0
  1435. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqAbs.decTest +126 -0
  1436. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqAdd.decTest +1215 -0
  1437. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqAnd.decTest +420 -0
  1438. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqBase.decTest +1081 -0
  1439. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCanonical.decTest +372 -0
  1440. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqClass.decTest +77 -0
  1441. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompare.decTest +753 -0
  1442. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompareSig.decTest +647 -0
  1443. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompareTotal.decTest +706 -0
  1444. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompareTotalMag.decTest +706 -0
  1445. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopy.decTest +88 -0
  1446. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopyAbs.decTest +88 -0
  1447. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopyNegate.decTest +88 -0
  1448. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopySign.decTest +175 -0
  1449. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqDivide.decTest +808 -0
  1450. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqDivideInt.decTest +453 -0
  1451. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqEncode.decTest +477 -0
  1452. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqFMA.decTest +1786 -0
  1453. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqInvert.decTest +245 -0
  1454. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqLogB.decTest +160 -0
  1455. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMax.decTest +322 -0
  1456. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMaxMag.decTest +304 -0
  1457. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMin.decTest +309 -0
  1458. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMinMag.decTest +293 -0
  1459. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMinus.decTest +88 -0
  1460. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMultiply.decTest +589 -0
  1461. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqNextMinus.decTest +126 -0
  1462. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqNextPlus.decTest +124 -0
  1463. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqNextToward.decTest +375 -0
  1464. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqOr.decTest +401 -0
  1465. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqPlus.decTest +88 -0
  1466. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqQuantize.decTest +836 -0
  1467. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqReduce.decTest +183 -0
  1468. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqRemainder.decTest +597 -0
  1469. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqRemainderNear.decTest +631 -0
  1470. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqRotate.decTest +298 -0
  1471. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqSameQuantum.decTest +389 -0
  1472. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqScaleB.decTest +260 -0
  1473. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqShift.decTest +298 -0
  1474. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqSubtract.decTest +635 -0
  1475. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqToIntegral.decTest +257 -0
  1476. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqXor.decTest +410 -0
  1477. package/python3.4.2/lib/python3.4/test/decimaltestdata/dsBase.decTest +1062 -0
  1478. package/python3.4.2/lib/python3.4/test/decimaltestdata/dsEncode.decTest +372 -0
  1479. package/python3.4.2/lib/python3.4/test/decimaltestdata/exp.decTest +674 -0
  1480. package/python3.4.2/lib/python3.4/test/decimaltestdata/extra.decTest +2830 -0
  1481. package/python3.4.2/lib/python3.4/test/decimaltestdata/fma.decTest +3426 -0
  1482. package/python3.4.2/lib/python3.4/test/decimaltestdata/inexact.decTest +215 -0
  1483. package/python3.4.2/lib/python3.4/test/decimaltestdata/invert.decTest +176 -0
  1484. package/python3.4.2/lib/python3.4/test/decimaltestdata/ln.decTest +611 -0
  1485. package/python3.4.2/lib/python3.4/test/decimaltestdata/log10.decTest +551 -0
  1486. package/python3.4.2/lib/python3.4/test/decimaltestdata/logb.decTest +188 -0
  1487. package/python3.4.2/lib/python3.4/test/decimaltestdata/max.decTest +424 -0
  1488. package/python3.4.2/lib/python3.4/test/decimaltestdata/maxmag.decTest +404 -0
  1489. package/python3.4.2/lib/python3.4/test/decimaltestdata/min.decTest +407 -0
  1490. package/python3.4.2/lib/python3.4/test/decimaltestdata/minmag.decTest +390 -0
  1491. package/python3.4.2/lib/python3.4/test/decimaltestdata/minus.decTest +182 -0
  1492. package/python3.4.2/lib/python3.4/test/decimaltestdata/multiply.decTest +731 -0
  1493. package/python3.4.2/lib/python3.4/test/decimaltestdata/nextminus.decTest +148 -0
  1494. package/python3.4.2/lib/python3.4/test/decimaltestdata/nextplus.decTest +150 -0
  1495. package/python3.4.2/lib/python3.4/test/decimaltestdata/nexttoward.decTest +426 -0
  1496. package/python3.4.2/lib/python3.4/test/decimaltestdata/or.decTest +334 -0
  1497. package/python3.4.2/lib/python3.4/test/decimaltestdata/plus.decTest +195 -0
  1498. package/python3.4.2/lib/python3.4/test/decimaltestdata/power.decTest +1624 -0
  1499. package/python3.4.2/lib/python3.4/test/decimaltestdata/powersqrt.decTest +2970 -0
  1500. package/python3.4.2/lib/python3.4/test/decimaltestdata/quantize.decTest +948 -0
  1501. package/python3.4.2/lib/python3.4/test/decimaltestdata/randomBound32.decTest +2443 -0
  1502. package/python3.4.2/lib/python3.4/test/decimaltestdata/randoms.decTest +4030 -0
  1503. package/python3.4.2/lib/python3.4/test/decimaltestdata/reduce.decTest +234 -0
  1504. package/python3.4.2/lib/python3.4/test/decimaltestdata/remainder.decTest +640 -0
  1505. package/python3.4.2/lib/python3.4/test/decimaltestdata/remainderNear.decTest +572 -0
  1506. package/python3.4.2/lib/python3.4/test/decimaltestdata/rescale.decTest +764 -0
  1507. package/python3.4.2/lib/python3.4/test/decimaltestdata/rotate.decTest +247 -0
  1508. package/python3.4.2/lib/python3.4/test/decimaltestdata/rounding.decTest +1303 -0
  1509. package/python3.4.2/lib/python3.4/test/decimaltestdata/samequantum.decTest +389 -0
  1510. package/python3.4.2/lib/python3.4/test/decimaltestdata/scaleb.decTest +209 -0
  1511. package/python3.4.2/lib/python3.4/test/decimaltestdata/shift.decTest +250 -0
  1512. package/python3.4.2/lib/python3.4/test/decimaltestdata/squareroot.decTest +3834 -0
  1513. package/python3.4.2/lib/python3.4/test/decimaltestdata/subtract.decTest +873 -0
  1514. package/python3.4.2/lib/python3.4/test/decimaltestdata/testall.decTest +87 -0
  1515. package/python3.4.2/lib/python3.4/test/decimaltestdata/tointegral.decTest +241 -0
  1516. package/python3.4.2/lib/python3.4/test/decimaltestdata/tointegralx.decTest +255 -0
  1517. package/python3.4.2/lib/python3.4/test/decimaltestdata/xor.decTest +335 -0
  1518. package/python3.4.2/lib/python3.4/test/dh512.pem +9 -0
  1519. package/python3.4.2/lib/python3.4/test/dis_module.py +5 -0
  1520. package/python3.4.2/lib/python3.4/test/doctest_aliases.py +13 -0
  1521. package/python3.4.2/lib/python3.4/test/double_const.py +30 -0
  1522. package/python3.4.2/lib/python3.4/test/empty.vbs +1 -0
  1523. package/python3.4.2/lib/python3.4/test/encoded_modules/__init__.py +23 -0
  1524. package/python3.4.2/lib/python3.4/test/encoded_modules/module_iso_8859_1.py +5 -0
  1525. package/python3.4.2/lib/python3.4/test/encoded_modules/module_koi8_r.py +3 -0
  1526. package/python3.4.2/lib/python3.4/test/exception_hierarchy.txt +61 -0
  1527. package/python3.4.2/lib/python3.4/test/final_a.py +19 -0
  1528. package/python3.4.2/lib/python3.4/test/final_b.py +19 -0
  1529. package/python3.4.2/lib/python3.4/test/floating_points.txt +1028 -0
  1530. package/python3.4.2/lib/python3.4/test/fork_wait.py +77 -0
  1531. package/python3.4.2/lib/python3.4/test/formatfloat_testcases.txt +355 -0
  1532. package/python3.4.2/lib/python3.4/test/future_test1.py +11 -0
  1533. package/python3.4.2/lib/python3.4/test/future_test2.py +10 -0
  1534. package/python3.4.2/lib/python3.4/test/gdb_sample.py +12 -0
  1535. package/python3.4.2/lib/python3.4/test/https_svn_python_org_root.pem +41 -0
  1536. package/python3.4.2/lib/python3.4/test/ieee754.txt +185 -0
  1537. package/python3.4.2/lib/python3.4/test/imghdrdata/python.bmp +0 -0
  1538. package/python3.4.2/lib/python3.4/test/imghdrdata/python.gif +0 -0
  1539. package/python3.4.2/lib/python3.4/test/imghdrdata/python.jpg +0 -0
  1540. package/python3.4.2/lib/python3.4/test/imghdrdata/python.pbm +3 -0
  1541. package/python3.4.2/lib/python3.4/test/imghdrdata/python.pgm +0 -0
  1542. package/python3.4.2/lib/python3.4/test/imghdrdata/python.png +0 -0
  1543. package/python3.4.2/lib/python3.4/test/imghdrdata/python.ppm +0 -0
  1544. package/python3.4.2/lib/python3.4/test/imghdrdata/python.ras +0 -0
  1545. package/python3.4.2/lib/python3.4/test/imghdrdata/python.sgi +0 -0
  1546. package/python3.4.2/lib/python3.4/test/imghdrdata/python.tiff +0 -0
  1547. package/python3.4.2/lib/python3.4/test/imghdrdata/python.xbm +6 -0
  1548. package/python3.4.2/lib/python3.4/test/inspect_fodder.py +58 -0
  1549. package/python3.4.2/lib/python3.4/test/inspect_fodder2.py +111 -0
  1550. package/python3.4.2/lib/python3.4/test/keycert.passwd.pem +33 -0
  1551. package/python3.4.2/lib/python3.4/test/keycert.pem +31 -0
  1552. package/python3.4.2/lib/python3.4/test/keycert2.pem +31 -0
  1553. package/python3.4.2/lib/python3.4/test/keycert3.pem +73 -0
  1554. package/python3.4.2/lib/python3.4/test/keycert4.pem +73 -0
  1555. package/python3.4.2/lib/python3.4/test/list_tests.py +585 -0
  1556. package/python3.4.2/lib/python3.4/test/lock_tests.py +896 -0
  1557. package/python3.4.2/lib/python3.4/test/mailcap.txt +39 -0
  1558. package/python3.4.2/lib/python3.4/test/make_ssl_certs.py +176 -0
  1559. package/python3.4.2/lib/python3.4/test/mapping_tests.py +657 -0
  1560. package/python3.4.2/lib/python3.4/test/math_testcases.txt +633 -0
  1561. package/python3.4.2/lib/python3.4/test/memory_watchdog.py +28 -0
  1562. package/python3.4.2/lib/python3.4/test/mime.types +1445 -0
  1563. package/python3.4.2/lib/python3.4/test/mock_socket.py +156 -0
  1564. package/python3.4.2/lib/python3.4/test/mp_fork_bomb.py +18 -0
  1565. package/python3.4.2/lib/python3.4/test/multibytecodec_support.py +377 -0
  1566. package/python3.4.2/lib/python3.4/test/nokia.pem +31 -0
  1567. package/python3.4.2/lib/python3.4/test/nullbytecert.pem +90 -0
  1568. package/python3.4.2/lib/python3.4/test/nullcert.pem +0 -0
  1569. package/python3.4.2/lib/python3.4/test/outstanding_bugs.py +18 -0
  1570. package/python3.4.2/lib/python3.4/test/pickletester.py +2253 -0
  1571. package/python3.4.2/lib/python3.4/test/profilee.py +115 -0
  1572. package/python3.4.2/lib/python3.4/test/pstats.pck +0 -0
  1573. package/python3.4.2/lib/python3.4/test/pycacert.pem +78 -0
  1574. package/python3.4.2/lib/python3.4/test/pycakey.pem +28 -0
  1575. package/python3.4.2/lib/python3.4/test/pyclbr_input.py +33 -0
  1576. package/python3.4.2/lib/python3.4/test/pydoc_mod.py +37 -0
  1577. package/python3.4.2/lib/python3.4/test/pydocfodder.py +216 -0
  1578. package/python3.4.2/lib/python3.4/test/pystone.py +277 -0
  1579. package/python3.4.2/lib/python3.4/test/randv2_32.pck +633 -0
  1580. package/python3.4.2/lib/python3.4/test/randv2_64.pck +633 -0
  1581. package/python3.4.2/lib/python3.4/test/randv3.pck +633 -0
  1582. package/python3.4.2/lib/python3.4/test/re_tests.py +670 -0
  1583. package/python3.4.2/lib/python3.4/test/regrtest.py +1589 -0
  1584. package/python3.4.2/lib/python3.4/test/relimport.py +1 -0
  1585. package/python3.4.2/lib/python3.4/test/reperf.py +23 -0
  1586. package/python3.4.2/lib/python3.4/test/revocation.crl +11 -0
  1587. package/python3.4.2/lib/python3.4/test/sample_doctest.py +76 -0
  1588. package/python3.4.2/lib/python3.4/test/sample_doctest_no_docstrings.py +12 -0
  1589. package/python3.4.2/lib/python3.4/test/sample_doctest_no_doctests.py +15 -0
  1590. package/python3.4.2/lib/python3.4/test/script_helper.py +178 -0
  1591. package/python3.4.2/lib/python3.4/test/seq_tests.py +397 -0
  1592. package/python3.4.2/lib/python3.4/test/sgml_input.html +212 -0
  1593. package/python3.4.2/lib/python3.4/test/sha256.pem +128 -0
  1594. package/python3.4.2/lib/python3.4/test/sndhdrdata/README +12 -0
  1595. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.8svx +0 -0
  1596. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.aifc +0 -0
  1597. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.aiff +0 -0
  1598. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.au +0 -0
  1599. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.hcom +0 -0
  1600. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.sndt +0 -0
  1601. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.voc +0 -0
  1602. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.wav +0 -0
  1603. package/python3.4.2/lib/python3.4/test/sortperf.py +169 -0
  1604. package/python3.4.2/lib/python3.4/test/ssl_cert.pem +15 -0
  1605. package/python3.4.2/lib/python3.4/test/ssl_key.passwd.pem +18 -0
  1606. package/python3.4.2/lib/python3.4/test/ssl_key.pem +16 -0
  1607. package/python3.4.2/lib/python3.4/test/ssl_servers.py +205 -0
  1608. package/python3.4.2/lib/python3.4/test/ssltests.py +22 -0
  1609. package/python3.4.2/lib/python3.4/test/string_tests.py +1385 -0
  1610. package/python3.4.2/lib/python3.4/test/subprocessdata/fd_status.py +34 -0
  1611. package/python3.4.2/lib/python3.4/test/subprocessdata/input_reader.py +7 -0
  1612. package/python3.4.2/lib/python3.4/test/subprocessdata/qcat.py +7 -0
  1613. package/python3.4.2/lib/python3.4/test/subprocessdata/qgrep.py +10 -0
  1614. package/python3.4.2/lib/python3.4/test/subprocessdata/sigchild_ignore.py +15 -0
  1615. package/python3.4.2/lib/python3.4/test/support/__init__.py +2241 -0
  1616. package/python3.4.2/lib/python3.4/test/test___all__.py +117 -0
  1617. package/python3.4.2/lib/python3.4/test/test___future__.py +65 -0
  1618. package/python3.4.2/lib/python3.4/test/test__locale.py +170 -0
  1619. package/python3.4.2/lib/python3.4/test/test__opcode.py +23 -0
  1620. package/python3.4.2/lib/python3.4/test/test__osx_support.py +281 -0
  1621. package/python3.4.2/lib/python3.4/test/test_abc.py +408 -0
  1622. package/python3.4.2/lib/python3.4/test/test_abstract_numbers.py +44 -0
  1623. package/python3.4.2/lib/python3.4/test/test_aifc.py +384 -0
  1624. package/python3.4.2/lib/python3.4/test/test_argparse.py +4979 -0
  1625. package/python3.4.2/lib/python3.4/test/test_array.py +1323 -0
  1626. package/python3.4.2/lib/python3.4/test/test_ast.py +1038 -0
  1627. package/python3.4.2/lib/python3.4/test/test_asynchat.py +333 -0
  1628. package/python3.4.2/lib/python3.4/test/test_asyncio/__init__.py +10 -0
  1629. package/python3.4.2/lib/python3.4/test/test_asyncio/__main__.py +4 -0
  1630. package/python3.4.2/lib/python3.4/test/test_asyncio/echo.py +8 -0
  1631. package/python3.4.2/lib/python3.4/test/test_asyncio/echo2.py +6 -0
  1632. package/python3.4.2/lib/python3.4/test/test_asyncio/echo3.py +11 -0
  1633. package/python3.4.2/lib/python3.4/test/test_asyncio/keycert3.pem +73 -0
  1634. package/python3.4.2/lib/python3.4/test/test_asyncio/pycacert.pem +78 -0
  1635. package/python3.4.2/lib/python3.4/test/test_asyncio/ssl_cert.pem +15 -0
  1636. package/python3.4.2/lib/python3.4/test/test_asyncio/ssl_key.pem +16 -0
  1637. package/python3.4.2/lib/python3.4/test/test_asyncio/test_base_events.py +1064 -0
  1638. package/python3.4.2/lib/python3.4/test/test_asyncio/test_events.py +2240 -0
  1639. package/python3.4.2/lib/python3.4/test/test_asyncio/test_futures.py +442 -0
  1640. package/python3.4.2/lib/python3.4/test/test_asyncio/test_locks.py +858 -0
  1641. package/python3.4.2/lib/python3.4/test/test_asyncio/test_proactor_events.py +492 -0
  1642. package/python3.4.2/lib/python3.4/test/test_asyncio/test_queues.py +476 -0
  1643. package/python3.4.2/lib/python3.4/test/test_asyncio/test_selector_events.py +1737 -0
  1644. package/python3.4.2/lib/python3.4/test/test_asyncio/test_streams.py +628 -0
  1645. package/python3.4.2/lib/python3.4/test/test_asyncio/test_subprocess.py +217 -0
  1646. package/python3.4.2/lib/python3.4/test/test_asyncio/test_tasks.py +1977 -0
  1647. package/python3.4.2/lib/python3.4/test/test_asyncio/test_transports.py +90 -0
  1648. package/python3.4.2/lib/python3.4/test/test_asyncio/test_unix_events.py +1582 -0
  1649. package/python3.4.2/lib/python3.4/test/test_asyncio/test_windows_events.py +141 -0
  1650. package/python3.4.2/lib/python3.4/test/test_asyncio/test_windows_utils.py +171 -0
  1651. package/python3.4.2/lib/python3.4/test/test_asyncore.py +859 -0
  1652. package/python3.4.2/lib/python3.4/test/test_atexit.py +185 -0
  1653. package/python3.4.2/lib/python3.4/test/test_audioop.py +534 -0
  1654. package/python3.4.2/lib/python3.4/test/test_augassign.py +315 -0
  1655. package/python3.4.2/lib/python3.4/test/test_base64.py +666 -0
  1656. package/python3.4.2/lib/python3.4/test/test_bigaddrspace.py +101 -0
  1657. package/python3.4.2/lib/python3.4/test/test_bigmem.py +1257 -0
  1658. package/python3.4.2/lib/python3.4/test/test_binascii.py +270 -0
  1659. package/python3.4.2/lib/python3.4/test/test_binhex.py +56 -0
  1660. package/python3.4.2/lib/python3.4/test/test_binop.py +380 -0
  1661. package/python3.4.2/lib/python3.4/test/test_bisect.py +328 -0
  1662. package/python3.4.2/lib/python3.4/test/test_bool.py +347 -0
  1663. package/python3.4.2/lib/python3.4/test/test_buffer.py +4294 -0
  1664. package/python3.4.2/lib/python3.4/test/test_bufio.py +73 -0
  1665. package/python3.4.2/lib/python3.4/test/test_builtin.py +1637 -0
  1666. package/python3.4.2/lib/python3.4/test/test_bytes.py +1433 -0
  1667. package/python3.4.2/lib/python3.4/test/test_bz2.py +880 -0
  1668. package/python3.4.2/lib/python3.4/test/test_calendar.py +714 -0
  1669. package/python3.4.2/lib/python3.4/test/test_call.py +131 -0
  1670. package/python3.4.2/lib/python3.4/test/test_capi.py +469 -0
  1671. package/python3.4.2/lib/python3.4/test/test_cgi.py +489 -0
  1672. package/python3.4.2/lib/python3.4/test/test_cgitb.py +70 -0
  1673. package/python3.4.2/lib/python3.4/test/test_charmapcodec.py +56 -0
  1674. package/python3.4.2/lib/python3.4/test/test_class.py +552 -0
  1675. package/python3.4.2/lib/python3.4/test/test_cmath.py +536 -0
  1676. package/python3.4.2/lib/python3.4/test/test_cmd.py +243 -0
  1677. package/python3.4.2/lib/python3.4/test/test_cmd_line.py +473 -0
  1678. package/python3.4.2/lib/python3.4/test/test_cmd_line_script.py +481 -0
  1679. package/python3.4.2/lib/python3.4/test/test_code.py +170 -0
  1680. package/python3.4.2/lib/python3.4/test/test_code_module.py +86 -0
  1681. package/python3.4.2/lib/python3.4/test/test_codeccallbacks.py +880 -0
  1682. package/python3.4.2/lib/python3.4/test/test_codecencodings_cn.py +90 -0
  1683. package/python3.4.2/lib/python3.4/test/test_codecencodings_hk.py +26 -0
  1684. package/python3.4.2/lib/python3.4/test/test_codecencodings_iso2022.py +45 -0
  1685. package/python3.4.2/lib/python3.4/test/test_codecencodings_jp.py +130 -0
  1686. package/python3.4.2/lib/python3.4/test/test_codecencodings_kr.py +73 -0
  1687. package/python3.4.2/lib/python3.4/test/test_codecencodings_tw.py +26 -0
  1688. package/python3.4.2/lib/python3.4/test/test_codecmaps_cn.py +29 -0
  1689. package/python3.4.2/lib/python3.4/test/test_codecmaps_hk.py +16 -0
  1690. package/python3.4.2/lib/python3.4/test/test_codecmaps_jp.py +63 -0
  1691. package/python3.4.2/lib/python3.4/test/test_codecmaps_kr.py +40 -0
  1692. package/python3.4.2/lib/python3.4/test/test_codecmaps_tw.py +30 -0
  1693. package/python3.4.2/lib/python3.4/test/test_codecs.py +2901 -0
  1694. package/python3.4.2/lib/python3.4/test/test_codeop.py +304 -0
  1695. package/python3.4.2/lib/python3.4/test/test_collections.py +1552 -0
  1696. package/python3.4.2/lib/python3.4/test/test_colorsys.py +100 -0
  1697. package/python3.4.2/lib/python3.4/test/test_compare.py +67 -0
  1698. package/python3.4.2/lib/python3.4/test/test_compile.py +561 -0
  1699. package/python3.4.2/lib/python3.4/test/test_compileall.py +384 -0
  1700. package/python3.4.2/lib/python3.4/test/test_complex.py +638 -0
  1701. package/python3.4.2/lib/python3.4/test/test_concurrent_futures.py +685 -0
  1702. package/python3.4.2/lib/python3.4/test/test_configparser.py +1768 -0
  1703. package/python3.4.2/lib/python3.4/test/test_contains.py +93 -0
  1704. package/python3.4.2/lib/python3.4/test/test_contextlib.py +828 -0
  1705. package/python3.4.2/lib/python3.4/test/test_copy.py +759 -0
  1706. package/python3.4.2/lib/python3.4/test/test_copyreg.py +121 -0
  1707. package/python3.4.2/lib/python3.4/test/test_cprofile.py +98 -0
  1708. package/python3.4.2/lib/python3.4/test/test_crashers.py +38 -0
  1709. package/python3.4.2/lib/python3.4/test/test_crypt.py +33 -0
  1710. package/python3.4.2/lib/python3.4/test/test_csv.py +1074 -0
  1711. package/python3.4.2/lib/python3.4/test/test_ctypes.py +6 -0
  1712. package/python3.4.2/lib/python3.4/test/test_curses.py +395 -0
  1713. package/python3.4.2/lib/python3.4/test/test_datetime.py +48 -0
  1714. package/python3.4.2/lib/python3.4/test/test_dbm.py +193 -0
  1715. package/python3.4.2/lib/python3.4/test/test_dbm_dumb.py +228 -0
  1716. package/python3.4.2/lib/python3.4/test/test_dbm_gnu.py +97 -0
  1717. package/python3.4.2/lib/python3.4/test/test_dbm_ndbm.py +54 -0
  1718. package/python3.4.2/lib/python3.4/test/test_decimal.py +5504 -0
  1719. package/python3.4.2/lib/python3.4/test/test_decorators.py +309 -0
  1720. package/python3.4.2/lib/python3.4/test/test_defaultdict.py +190 -0
  1721. package/python3.4.2/lib/python3.4/test/test_deque.py +817 -0
  1722. package/python3.4.2/lib/python3.4/test/test_descr.py +5006 -0
  1723. package/python3.4.2/lib/python3.4/test/test_descrtut.py +485 -0
  1724. package/python3.4.2/lib/python3.4/test/test_devpoll.py +146 -0
  1725. package/python3.4.2/lib/python3.4/test/test_dict.py +928 -0
  1726. package/python3.4.2/lib/python3.4/test/test_dictcomps.py +88 -0
  1727. package/python3.4.2/lib/python3.4/test/test_dictviews.py +206 -0
  1728. package/python3.4.2/lib/python3.4/test/test_difflib.py +298 -0
  1729. package/python3.4.2/lib/python3.4/test/test_difflib_expect.html +526 -0
  1730. package/python3.4.2/lib/python3.4/test/test_dis.py +832 -0
  1731. package/python3.4.2/lib/python3.4/test/test_distutils.py +18 -0
  1732. package/python3.4.2/lib/python3.4/test/test_doctest.py +2921 -0
  1733. package/python3.4.2/lib/python3.4/test/test_doctest.txt +17 -0
  1734. package/python3.4.2/lib/python3.4/test/test_doctest2.py +123 -0
  1735. package/python3.4.2/lib/python3.4/test/test_doctest2.txt +14 -0
  1736. package/python3.4.2/lib/python3.4/test/test_doctest3.txt +5 -0
  1737. package/python3.4.2/lib/python3.4/test/test_doctest4.txt +11 -0
  1738. package/python3.4.2/lib/python3.4/test/test_docxmlrpc.py +219 -0
  1739. package/python3.4.2/lib/python3.4/test/test_dummy_thread.py +182 -0
  1740. package/python3.4.2/lib/python3.4/test/test_dummy_threading.py +64 -0
  1741. package/python3.4.2/lib/python3.4/test/test_dynamic.py +143 -0
  1742. package/python3.4.2/lib/python3.4/test/test_dynamicclassattribute.py +304 -0
  1743. package/python3.4.2/lib/python3.4/test/test_email/__init__.py +159 -0
  1744. package/python3.4.2/lib/python3.4/test/test_email/__main__.py +4 -0
  1745. package/python3.4.2/lib/python3.4/test/test_email/data/PyBanner048.gif +0 -0
  1746. package/python3.4.2/lib/python3.4/test/test_email/data/audiotest.au +0 -0
  1747. package/python3.4.2/lib/python3.4/test/test_email/data/msg_01.txt +19 -0
  1748. package/python3.4.2/lib/python3.4/test/test_email/data/msg_02.txt +136 -0
  1749. package/python3.4.2/lib/python3.4/test/test_email/data/msg_03.txt +16 -0
  1750. package/python3.4.2/lib/python3.4/test/test_email/data/msg_04.txt +37 -0
  1751. package/python3.4.2/lib/python3.4/test/test_email/data/msg_05.txt +28 -0
  1752. package/python3.4.2/lib/python3.4/test/test_email/data/msg_06.txt +33 -0
  1753. package/python3.4.2/lib/python3.4/test/test_email/data/msg_07.txt +83 -0
  1754. package/python3.4.2/lib/python3.4/test/test_email/data/msg_08.txt +24 -0
  1755. package/python3.4.2/lib/python3.4/test/test_email/data/msg_09.txt +24 -0
  1756. package/python3.4.2/lib/python3.4/test/test_email/data/msg_10.txt +39 -0
  1757. package/python3.4.2/lib/python3.4/test/test_email/data/msg_11.txt +7 -0
  1758. package/python3.4.2/lib/python3.4/test/test_email/data/msg_12.txt +36 -0
  1759. package/python3.4.2/lib/python3.4/test/test_email/data/msg_12a.txt +38 -0
  1760. package/python3.4.2/lib/python3.4/test/test_email/data/msg_13.txt +94 -0
  1761. package/python3.4.2/lib/python3.4/test/test_email/data/msg_14.txt +23 -0
  1762. package/python3.4.2/lib/python3.4/test/test_email/data/msg_15.txt +52 -0
  1763. package/python3.4.2/lib/python3.4/test/test_email/data/msg_16.txt +123 -0
  1764. package/python3.4.2/lib/python3.4/test/test_email/data/msg_17.txt +12 -0
  1765. package/python3.4.2/lib/python3.4/test/test_email/data/msg_18.txt +6 -0
  1766. package/python3.4.2/lib/python3.4/test/test_email/data/msg_19.txt +43 -0
  1767. package/python3.4.2/lib/python3.4/test/test_email/data/msg_20.txt +22 -0
  1768. package/python3.4.2/lib/python3.4/test/test_email/data/msg_21.txt +20 -0
  1769. package/python3.4.2/lib/python3.4/test/test_email/data/msg_22.txt +46 -0
  1770. package/python3.4.2/lib/python3.4/test/test_email/data/msg_23.txt +8 -0
  1771. package/python3.4.2/lib/python3.4/test/test_email/data/msg_24.txt +10 -0
  1772. package/python3.4.2/lib/python3.4/test/test_email/data/msg_25.txt +117 -0
  1773. package/python3.4.2/lib/python3.4/test/test_email/data/msg_26.txt +46 -0
  1774. package/python3.4.2/lib/python3.4/test/test_email/data/msg_27.txt +15 -0
  1775. package/python3.4.2/lib/python3.4/test/test_email/data/msg_28.txt +25 -0
  1776. package/python3.4.2/lib/python3.4/test/test_email/data/msg_29.txt +22 -0
  1777. package/python3.4.2/lib/python3.4/test/test_email/data/msg_30.txt +23 -0
  1778. package/python3.4.2/lib/python3.4/test/test_email/data/msg_31.txt +15 -0
  1779. package/python3.4.2/lib/python3.4/test/test_email/data/msg_32.txt +14 -0
  1780. package/python3.4.2/lib/python3.4/test/test_email/data/msg_33.txt +29 -0
  1781. package/python3.4.2/lib/python3.4/test/test_email/data/msg_34.txt +19 -0
  1782. package/python3.4.2/lib/python3.4/test/test_email/data/msg_35.txt +4 -0
  1783. package/python3.4.2/lib/python3.4/test/test_email/data/msg_36.txt +40 -0
  1784. package/python3.4.2/lib/python3.4/test/test_email/data/msg_37.txt +22 -0
  1785. package/python3.4.2/lib/python3.4/test/test_email/data/msg_38.txt +101 -0
  1786. package/python3.4.2/lib/python3.4/test/test_email/data/msg_39.txt +83 -0
  1787. package/python3.4.2/lib/python3.4/test/test_email/data/msg_40.txt +10 -0
  1788. package/python3.4.2/lib/python3.4/test/test_email/data/msg_41.txt +8 -0
  1789. package/python3.4.2/lib/python3.4/test/test_email/data/msg_42.txt +20 -0
  1790. package/python3.4.2/lib/python3.4/test/test_email/data/msg_43.txt +217 -0
  1791. package/python3.4.2/lib/python3.4/test/test_email/data/msg_44.txt +33 -0
  1792. package/python3.4.2/lib/python3.4/test/test_email/data/msg_45.txt +33 -0
  1793. package/python3.4.2/lib/python3.4/test/test_email/data/msg_46.txt +23 -0
  1794. package/python3.4.2/lib/python3.4/test/test_email/test__encoded_words.py +192 -0
  1795. package/python3.4.2/lib/python3.4/test/test_email/test__header_value_parser.py +2606 -0
  1796. package/python3.4.2/lib/python3.4/test/test_email/test_asian_codecs.py +82 -0
  1797. package/python3.4.2/lib/python3.4/test/test_email/test_contentmanager.py +796 -0
  1798. package/python3.4.2/lib/python3.4/test/test_email/test_defect_handling.py +320 -0
  1799. package/python3.4.2/lib/python3.4/test/test_email/test_email.py +5289 -0
  1800. package/python3.4.2/lib/python3.4/test/test_email/test_generator.py +199 -0
  1801. package/python3.4.2/lib/python3.4/test/test_email/test_headerregistry.py +1594 -0
  1802. package/python3.4.2/lib/python3.4/test/test_email/test_inversion.py +49 -0
  1803. package/python3.4.2/lib/python3.4/test/test_email/test_message.py +783 -0
  1804. package/python3.4.2/lib/python3.4/test/test_email/test_parser.py +36 -0
  1805. package/python3.4.2/lib/python3.4/test/test_email/test_pickleable.py +74 -0
  1806. package/python3.4.2/lib/python3.4/test/test_email/test_policy.py +332 -0
  1807. package/python3.4.2/lib/python3.4/test/test_email/test_utils.py +140 -0
  1808. package/python3.4.2/lib/python3.4/test/test_email/torture_test.py +136 -0
  1809. package/python3.4.2/lib/python3.4/test/test_ensurepip.py +345 -0
  1810. package/python3.4.2/lib/python3.4/test/test_enum.py +1592 -0
  1811. package/python3.4.2/lib/python3.4/test/test_enumerate.py +272 -0
  1812. package/python3.4.2/lib/python3.4/test/test_eof.py +31 -0
  1813. package/python3.4.2/lib/python3.4/test/test_epoll.py +259 -0
  1814. package/python3.4.2/lib/python3.4/test/test_errno.py +40 -0
  1815. package/python3.4.2/lib/python3.4/test/test_exception_variations.py +180 -0
  1816. package/python3.4.2/lib/python3.4/test/test_exceptions.py +978 -0
  1817. package/python3.4.2/lib/python3.4/test/test_extcall.py +349 -0
  1818. package/python3.4.2/lib/python3.4/test/test_faulthandler.py +623 -0
  1819. package/python3.4.2/lib/python3.4/test/test_fcntl.py +152 -0
  1820. package/python3.4.2/lib/python3.4/test/test_file.py +329 -0
  1821. package/python3.4.2/lib/python3.4/test/test_file_eintr.py +236 -0
  1822. package/python3.4.2/lib/python3.4/test/test_filecmp.py +217 -0
  1823. package/python3.4.2/lib/python3.4/test/test_fileinput.py +891 -0
  1824. package/python3.4.2/lib/python3.4/test/test_fileio.py +480 -0
  1825. package/python3.4.2/lib/python3.4/test/test_finalization.py +522 -0
  1826. package/python3.4.2/lib/python3.4/test/test_float.py +1312 -0
  1827. package/python3.4.2/lib/python3.4/test/test_flufl.py +27 -0
  1828. package/python3.4.2/lib/python3.4/test/test_fnmatch.py +89 -0
  1829. package/python3.4.2/lib/python3.4/test/test_fork1.py +111 -0
  1830. package/python3.4.2/lib/python3.4/test/test_format.py +362 -0
  1831. package/python3.4.2/lib/python3.4/test/test_fractions.py +612 -0
  1832. package/python3.4.2/lib/python3.4/test/test_frame.py +168 -0
  1833. package/python3.4.2/lib/python3.4/test/test_ftplib.py +1080 -0
  1834. package/python3.4.2/lib/python3.4/test/test_funcattrs.py +385 -0
  1835. package/python3.4.2/lib/python3.4/test/test_functools.py +1584 -0
  1836. package/python3.4.2/lib/python3.4/test/test_future.py +125 -0
  1837. package/python3.4.2/lib/python3.4/test/test_future3.py +26 -0
  1838. package/python3.4.2/lib/python3.4/test/test_future4.py +6 -0
  1839. package/python3.4.2/lib/python3.4/test/test_future5.py +21 -0
  1840. package/python3.4.2/lib/python3.4/test/test_gc.py +1013 -0
  1841. package/python3.4.2/lib/python3.4/test/test_gdb.py +870 -0
  1842. package/python3.4.2/lib/python3.4/test/test_generators.py +1940 -0
  1843. package/python3.4.2/lib/python3.4/test/test_genericpath.py +439 -0
  1844. package/python3.4.2/lib/python3.4/test/test_genexps.py +285 -0
  1845. package/python3.4.2/lib/python3.4/test/test_getargs2.py +615 -0
  1846. package/python3.4.2/lib/python3.4/test/test_getopt.py +187 -0
  1847. package/python3.4.2/lib/python3.4/test/test_getpass.py +163 -0
  1848. package/python3.4.2/lib/python3.4/test/test_gettext.py +467 -0
  1849. package/python3.4.2/lib/python3.4/test/test_glob.py +200 -0
  1850. package/python3.4.2/lib/python3.4/test/test_global.py +61 -0
  1851. package/python3.4.2/lib/python3.4/test/test_grammar.py +1024 -0
  1852. package/python3.4.2/lib/python3.4/test/test_grp.py +99 -0
  1853. package/python3.4.2/lib/python3.4/test/test_gzip.py +561 -0
  1854. package/python3.4.2/lib/python3.4/test/test_hash.py +346 -0
  1855. package/python3.4.2/lib/python3.4/test/test_hashlib.py +533 -0
  1856. package/python3.4.2/lib/python3.4/test/test_heapq.py +417 -0
  1857. package/python3.4.2/lib/python3.4/test/test_hmac.py +506 -0
  1858. package/python3.4.2/lib/python3.4/test/test_html.py +104 -0
  1859. package/python3.4.2/lib/python3.4/test/test_htmlparser.py +832 -0
  1860. package/python3.4.2/lib/python3.4/test/test_http_cookiejar.py +1714 -0
  1861. package/python3.4.2/lib/python3.4/test/test_http_cookies.py +243 -0
  1862. package/python3.4.2/lib/python3.4/test/test_httplib.py +1025 -0
  1863. package/python3.4.2/lib/python3.4/test/test_httpservers.py +770 -0
  1864. package/python3.4.2/lib/python3.4/test/test_idle.py +16 -0
  1865. package/python3.4.2/lib/python3.4/test/test_imaplib.py +504 -0
  1866. package/python3.4.2/lib/python3.4/test/test_imghdr.py +131 -0
  1867. package/python3.4.2/lib/python3.4/test/test_imp.py +485 -0
  1868. package/python3.4.2/lib/python3.4/test/test_import.py +1072 -0
  1869. package/python3.4.2/lib/python3.4/test/test_importlib/__init__.py +5 -0
  1870. package/python3.4.2/lib/python3.4/test/test_importlib/__main__.py +4 -0
  1871. package/python3.4.2/lib/python3.4/test/test_importlib/abc.py +94 -0
  1872. package/python3.4.2/lib/python3.4/test/test_importlib/builtin/__init__.py +5 -0
  1873. package/python3.4.2/lib/python3.4/test/test_importlib/builtin/__main__.py +4 -0
  1874. package/python3.4.2/lib/python3.4/test/test_importlib/builtin/test_finder.py +85 -0
  1875. package/python3.4.2/lib/python3.4/test/test_importlib/builtin/test_loader.py +106 -0
  1876. package/python3.4.2/lib/python3.4/test/test_importlib/builtin/util.py +7 -0
  1877. package/python3.4.2/lib/python3.4/test/test_importlib/extension/__init__.py +5 -0
  1878. package/python3.4.2/lib/python3.4/test/test_importlib/extension/__main__.py +4 -0
  1879. package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_case_sensitivity.py +51 -0
  1880. package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_finder.py +44 -0
  1881. package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_loader.py +86 -0
  1882. package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_path_hook.py +32 -0
  1883. package/python3.4.2/lib/python3.4/test/test_importlib/extension/util.py +19 -0
  1884. package/python3.4.2/lib/python3.4/test/test_importlib/frozen/__init__.py +5 -0
  1885. package/python3.4.2/lib/python3.4/test/test_importlib/frozen/__main__.py +4 -0
  1886. package/python3.4.2/lib/python3.4/test/test_importlib/frozen/test_finder.py +80 -0
  1887. package/python3.4.2/lib/python3.4/test/test_importlib/frozen/test_loader.py +222 -0
  1888. package/python3.4.2/lib/python3.4/test/test_importlib/import_/__init__.py +5 -0
  1889. package/python3.4.2/lib/python3.4/test/test_importlib/import_/__main__.py +4 -0
  1890. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test___loader__.py +70 -0
  1891. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test___package__.py +133 -0
  1892. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_api.py +94 -0
  1893. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_caching.py +92 -0
  1894. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_fromlist.py +129 -0
  1895. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_meta_path.py +119 -0
  1896. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_packages.py +110 -0
  1897. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_path.py +144 -0
  1898. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_relative_imports.py +216 -0
  1899. package/python3.4.2/lib/python3.4/test/test_importlib/import_/util.py +20 -0
  1900. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/both_portions/foo/one.py +1 -0
  1901. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/both_portions/foo/two.py +1 -0
  1902. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/missing_directory.zip +0 -0
  1903. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty +0 -0
  1904. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py +1 -0
  1905. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/nested_portion1.zip +0 -0
  1906. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py +0 -0
  1907. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py +1 -0
  1908. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/portion1/foo/one.py +1 -0
  1909. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/portion2/foo/two.py +1 -0
  1910. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/project1/parent/child/one.py +1 -0
  1911. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/project2/parent/child/two.py +1 -0
  1912. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/project3/parent/child/three.py +1 -0
  1913. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/top_level_portion1.zip +0 -0
  1914. package/python3.4.2/lib/python3.4/test/test_importlib/regrtest.py +17 -0
  1915. package/python3.4.2/lib/python3.4/test/test_importlib/source/__init__.py +5 -0
  1916. package/python3.4.2/lib/python3.4/test/test_importlib/source/__main__.py +4 -0
  1917. package/python3.4.2/lib/python3.4/test/test_importlib/source/test_case_sensitivity.py +83 -0
  1918. package/python3.4.2/lib/python3.4/test/test_importlib/source/test_file_loader.py +588 -0
  1919. package/python3.4.2/lib/python3.4/test/test_importlib/source/test_finder.py +232 -0
  1920. package/python3.4.2/lib/python3.4/test/test_importlib/source/test_path_hook.py +30 -0
  1921. package/python3.4.2/lib/python3.4/test/test_importlib/source/test_source_encoding.py +165 -0
  1922. package/python3.4.2/lib/python3.4/test/test_importlib/source/util.py +96 -0
  1923. package/python3.4.2/lib/python3.4/test/test_importlib/test_abc.py +951 -0
  1924. package/python3.4.2/lib/python3.4/test/test_importlib/test_api.py +437 -0
  1925. package/python3.4.2/lib/python3.4/test/test_importlib/test_locks.py +156 -0
  1926. package/python3.4.2/lib/python3.4/test/test_importlib/test_namespace_pkgs.py +293 -0
  1927. package/python3.4.2/lib/python3.4/test/test_importlib/test_spec.py +957 -0
  1928. package/python3.4.2/lib/python3.4/test/test_importlib/test_util.py +592 -0
  1929. package/python3.4.2/lib/python3.4/test/test_importlib/test_windows.py +29 -0
  1930. package/python3.4.2/lib/python3.4/test/test_importlib/util.py +225 -0
  1931. package/python3.4.2/lib/python3.4/test/test_index.py +275 -0
  1932. package/python3.4.2/lib/python3.4/test/test_inspect.py +3103 -0
  1933. package/python3.4.2/lib/python3.4/test/test_int.py +458 -0
  1934. package/python3.4.2/lib/python3.4/test/test_int_literal.py +147 -0
  1935. package/python3.4.2/lib/python3.4/test/test_io.py +3481 -0
  1936. package/python3.4.2/lib/python3.4/test/test_ioctl.py +91 -0
  1937. package/python3.4.2/lib/python3.4/test/test_ipaddress.py +1693 -0
  1938. package/python3.4.2/lib/python3.4/test/test_isinstance.py +289 -0
  1939. package/python3.4.2/lib/python3.4/test/test_iter.py +927 -0
  1940. package/python3.4.2/lib/python3.4/test/test_iterlen.py +229 -0
  1941. package/python3.4.2/lib/python3.4/test/test_itertools.py +2142 -0
  1942. package/python3.4.2/lib/python3.4/test/test_json/__init__.py +53 -0
  1943. package/python3.4.2/lib/python3.4/test/test_json/__main__.py +4 -0
  1944. package/python3.4.2/lib/python3.4/test/test_json/test_decode.py +99 -0
  1945. package/python3.4.2/lib/python3.4/test/test_json/test_default.py +12 -0
  1946. package/python3.4.2/lib/python3.4/test/test_json/test_dump.py +49 -0
  1947. package/python3.4.2/lib/python3.4/test/test_json/test_encode_basestring_ascii.py +44 -0
  1948. package/python3.4.2/lib/python3.4/test/test_json/test_enum.py +120 -0
  1949. package/python3.4.2/lib/python3.4/test/test_json/test_fail.py +194 -0
  1950. package/python3.4.2/lib/python3.4/test/test_json/test_float.py +33 -0
  1951. package/python3.4.2/lib/python3.4/test/test_json/test_indent.py +67 -0
  1952. package/python3.4.2/lib/python3.4/test/test_json/test_pass1.py +75 -0
  1953. package/python3.4.2/lib/python3.4/test/test_json/test_pass2.py +18 -0
  1954. package/python3.4.2/lib/python3.4/test/test_json/test_pass3.py +24 -0
  1955. package/python3.4.2/lib/python3.4/test/test_json/test_recursion.py +100 -0
  1956. package/python3.4.2/lib/python3.4/test/test_json/test_scanstring.py +141 -0
  1957. package/python3.4.2/lib/python3.4/test/test_json/test_separators.py +44 -0
  1958. package/python3.4.2/lib/python3.4/test/test_json/test_speedups.py +24 -0
  1959. package/python3.4.2/lib/python3.4/test/test_json/test_tool.py +69 -0
  1960. package/python3.4.2/lib/python3.4/test/test_json/test_unicode.py +75 -0
  1961. package/python3.4.2/lib/python3.4/test/test_keyword.py +138 -0
  1962. package/python3.4.2/lib/python3.4/test/test_keywordonlyarg.py +193 -0
  1963. package/python3.4.2/lib/python3.4/test/test_kqueue.py +219 -0
  1964. package/python3.4.2/lib/python3.4/test/test_largefile.py +180 -0
  1965. package/python3.4.2/lib/python3.4/test/test_lib2to3.py +22 -0
  1966. package/python3.4.2/lib/python3.4/test/test_linecache.py +133 -0
  1967. package/python3.4.2/lib/python3.4/test/test_list.py +125 -0
  1968. package/python3.4.2/lib/python3.4/test/test_listcomps.py +148 -0
  1969. package/python3.4.2/lib/python3.4/test/test_locale.py +528 -0
  1970. package/python3.4.2/lib/python3.4/test/test_logging.py +4179 -0
  1971. package/python3.4.2/lib/python3.4/test/test_long.py +1250 -0
  1972. package/python3.4.2/lib/python3.4/test/test_longexp.py +14 -0
  1973. package/python3.4.2/lib/python3.4/test/test_lzma.py +1592 -0
  1974. package/python3.4.2/lib/python3.4/test/test_macpath.py +123 -0
  1975. package/python3.4.2/lib/python3.4/test/test_macurl2path.py +31 -0
  1976. package/python3.4.2/lib/python3.4/test/test_mailbox.py +2287 -0
  1977. package/python3.4.2/lib/python3.4/test/test_mailcap.py +221 -0
  1978. package/python3.4.2/lib/python3.4/test/test_marshal.py +451 -0
  1979. package/python3.4.2/lib/python3.4/test/test_math.py +1107 -0
  1980. package/python3.4.2/lib/python3.4/test/test_memoryio.py +784 -0
  1981. package/python3.4.2/lib/python3.4/test/test_memoryview.py +478 -0
  1982. package/python3.4.2/lib/python3.4/test/test_metaclass.py +265 -0
  1983. package/python3.4.2/lib/python3.4/test/test_mimetypes.py +111 -0
  1984. package/python3.4.2/lib/python3.4/test/test_minidom.py +1545 -0
  1985. package/python3.4.2/lib/python3.4/test/test_mmap.py +774 -0
  1986. package/python3.4.2/lib/python3.4/test/test_module.py +222 -0
  1987. package/python3.4.2/lib/python3.4/test/test_modulefinder.py +324 -0
  1988. package/python3.4.2/lib/python3.4/test/test_msilib.py +46 -0
  1989. package/python3.4.2/lib/python3.4/test/test_multibytecodec.py +263 -0
  1990. package/python3.4.2/lib/python3.4/test/test_multiprocessing_fork.py +7 -0
  1991. package/python3.4.2/lib/python3.4/test/test_multiprocessing_forkserver.py +7 -0
  1992. package/python3.4.2/lib/python3.4/test/test_multiprocessing_main_handling.py +289 -0
  1993. package/python3.4.2/lib/python3.4/test/test_multiprocessing_spawn.py +7 -0
  1994. package/python3.4.2/lib/python3.4/test/test_netrc.py +130 -0
  1995. package/python3.4.2/lib/python3.4/test/test_nis.py +43 -0
  1996. package/python3.4.2/lib/python3.4/test/test_nntplib.py +1429 -0
  1997. package/python3.4.2/lib/python3.4/test/test_normalization.py +104 -0
  1998. package/python3.4.2/lib/python3.4/test/test_ntpath.py +385 -0
  1999. package/python3.4.2/lib/python3.4/test/test_numeric_tower.py +206 -0
  2000. package/python3.4.2/lib/python3.4/test/test_opcodes.py +112 -0
  2001. package/python3.4.2/lib/python3.4/test/test_openpty.py +25 -0
  2002. package/python3.4.2/lib/python3.4/test/test_operator.py +484 -0
  2003. package/python3.4.2/lib/python3.4/test/test_optparse.py +1657 -0
  2004. package/python3.4.2/lib/python3.4/test/test_os.py +2550 -0
  2005. package/python3.4.2/lib/python3.4/test/test_ossaudiodev.py +202 -0
  2006. package/python3.4.2/lib/python3.4/test/test_osx_env.py +34 -0
  2007. package/python3.4.2/lib/python3.4/test/test_parser.py +745 -0
  2008. package/python3.4.2/lib/python3.4/test/test_pathlib.py +1884 -0
  2009. package/python3.4.2/lib/python3.4/test/test_pdb.py +1052 -0
  2010. package/python3.4.2/lib/python3.4/test/test_peepholer.py +339 -0
  2011. package/python3.4.2/lib/python3.4/test/test_pep247.py +70 -0
  2012. package/python3.4.2/lib/python3.4/test/test_pep277.py +201 -0
  2013. package/python3.4.2/lib/python3.4/test/test_pep292.py +247 -0
  2014. package/python3.4.2/lib/python3.4/test/test_pep3120.py +47 -0
  2015. package/python3.4.2/lib/python3.4/test/test_pep3131.py +35 -0
  2016. package/python3.4.2/lib/python3.4/test/test_pep3151.py +209 -0
  2017. package/python3.4.2/lib/python3.4/test/test_pep352.py +184 -0
  2018. package/python3.4.2/lib/python3.4/test/test_pep380.py +1023 -0
  2019. package/python3.4.2/lib/python3.4/test/test_pickle.py +156 -0
  2020. package/python3.4.2/lib/python3.4/test/test_pickletools.py +25 -0
  2021. package/python3.4.2/lib/python3.4/test/test_pipes.py +196 -0
  2022. package/python3.4.2/lib/python3.4/test/test_pkg.py +299 -0
  2023. package/python3.4.2/lib/python3.4/test/test_pkgimport.py +84 -0
  2024. package/python3.4.2/lib/python3.4/test/test_pkgutil.py +410 -0
  2025. package/python3.4.2/lib/python3.4/test/test_platform.py +320 -0
  2026. package/python3.4.2/lib/python3.4/test/test_plistlib.py +526 -0
  2027. package/python3.4.2/lib/python3.4/test/test_poll.py +215 -0
  2028. package/python3.4.2/lib/python3.4/test/test_popen.py +64 -0
  2029. package/python3.4.2/lib/python3.4/test/test_poplib.py +507 -0
  2030. package/python3.4.2/lib/python3.4/test/test_posix.py +1183 -0
  2031. package/python3.4.2/lib/python3.4/test/test_posixpath.py +544 -0
  2032. package/python3.4.2/lib/python3.4/test/test_pow.py +129 -0
  2033. package/python3.4.2/lib/python3.4/test/test_pprint.py +602 -0
  2034. package/python3.4.2/lib/python3.4/test/test_print.py +132 -0
  2035. package/python3.4.2/lib/python3.4/test/test_profile.py +187 -0
  2036. package/python3.4.2/lib/python3.4/test/test_property.py +254 -0
  2037. package/python3.4.2/lib/python3.4/test/test_pstats.py +45 -0
  2038. package/python3.4.2/lib/python3.4/test/test_pty.py +302 -0
  2039. package/python3.4.2/lib/python3.4/test/test_pulldom.py +347 -0
  2040. package/python3.4.2/lib/python3.4/test/test_pwd.py +114 -0
  2041. package/python3.4.2/lib/python3.4/test/test_py_compile.py +103 -0
  2042. package/python3.4.2/lib/python3.4/test/test_pyclbr.py +181 -0
  2043. package/python3.4.2/lib/python3.4/test/test_pydoc.py +1003 -0
  2044. package/python3.4.2/lib/python3.4/test/test_pyexpat.py +708 -0
  2045. package/python3.4.2/lib/python3.4/test/test_queue.py +363 -0
  2046. package/python3.4.2/lib/python3.4/test/test_quopri.py +208 -0
  2047. package/python3.4.2/lib/python3.4/test/test_raise.py +422 -0
  2048. package/python3.4.2/lib/python3.4/test/test_random.py +759 -0
  2049. package/python3.4.2/lib/python3.4/test/test_range.py +652 -0
  2050. package/python3.4.2/lib/python3.4/test/test_re.py +1451 -0
  2051. package/python3.4.2/lib/python3.4/test/test_readline.py +60 -0
  2052. package/python3.4.2/lib/python3.4/test/test_regrtest.py +275 -0
  2053. package/python3.4.2/lib/python3.4/test/test_reprlib.py +383 -0
  2054. package/python3.4.2/lib/python3.4/test/test_resource.py +166 -0
  2055. package/python3.4.2/lib/python3.4/test/test_richcmp.py +333 -0
  2056. package/python3.4.2/lib/python3.4/test/test_rlcompleter.py +73 -0
  2057. package/python3.4.2/lib/python3.4/test/test_robotparser.py +320 -0
  2058. package/python3.4.2/lib/python3.4/test/test_runpy.py +691 -0
  2059. package/python3.4.2/lib/python3.4/test/test_sax.py +1007 -0
  2060. package/python3.4.2/lib/python3.4/test/test_sched.py +199 -0
  2061. package/python3.4.2/lib/python3.4/test/test_scope.py +764 -0
  2062. package/python3.4.2/lib/python3.4/test/test_select.py +83 -0
  2063. package/python3.4.2/lib/python3.4/test/test_selectors.py +453 -0
  2064. package/python3.4.2/lib/python3.4/test/test_set.py +1839 -0
  2065. package/python3.4.2/lib/python3.4/test/test_setcomps.py +151 -0
  2066. package/python3.4.2/lib/python3.4/test/test_shelve.py +224 -0
  2067. package/python3.4.2/lib/python3.4/test/test_shlex.py +202 -0
  2068. package/python3.4.2/lib/python3.4/test/test_shutil.py +1766 -0
  2069. package/python3.4.2/lib/python3.4/test/test_signal.py +940 -0
  2070. package/python3.4.2/lib/python3.4/test/test_site.py +468 -0
  2071. package/python3.4.2/lib/python3.4/test/test_slice.py +247 -0
  2072. package/python3.4.2/lib/python3.4/test/test_smtpd.py +557 -0
  2073. package/python3.4.2/lib/python3.4/test/test_smtplib.py +950 -0
  2074. package/python3.4.2/lib/python3.4/test/test_smtpnet.py +86 -0
  2075. package/python3.4.2/lib/python3.4/test/test_sndhdr.py +23 -0
  2076. package/python3.4.2/lib/python3.4/test/test_socket.py +5163 -0
  2077. package/python3.4.2/lib/python3.4/test/test_socketserver.py +314 -0
  2078. package/python3.4.2/lib/python3.4/test/test_sort.py +285 -0
  2079. package/python3.4.2/lib/python3.4/test/test_source_encoding.py +145 -0
  2080. package/python3.4.2/lib/python3.4/test/test_spwd.py +60 -0
  2081. package/python3.4.2/lib/python3.4/test/test_sqlite.py +24 -0
  2082. package/python3.4.2/lib/python3.4/test/test_ssl.py +2908 -0
  2083. package/python3.4.2/lib/python3.4/test/test_startfile.py +37 -0
  2084. package/python3.4.2/lib/python3.4/test/test_stat.py +202 -0
  2085. package/python3.4.2/lib/python3.4/test/test_statistics.py +1574 -0
  2086. package/python3.4.2/lib/python3.4/test/test_strftime.py +204 -0
  2087. package/python3.4.2/lib/python3.4/test/test_string.py +174 -0
  2088. package/python3.4.2/lib/python3.4/test/test_stringprep.py +96 -0
  2089. package/python3.4.2/lib/python3.4/test/test_strlit.py +206 -0
  2090. package/python3.4.2/lib/python3.4/test/test_strptime.py +577 -0
  2091. package/python3.4.2/lib/python3.4/test/test_strtod.py +436 -0
  2092. package/python3.4.2/lib/python3.4/test/test_struct.py +667 -0
  2093. package/python3.4.2/lib/python3.4/test/test_structmembers.py +147 -0
  2094. package/python3.4.2/lib/python3.4/test/test_structseq.py +130 -0
  2095. package/python3.4.2/lib/python3.4/test/test_subprocess.py +2474 -0
  2096. package/python3.4.2/lib/python3.4/test/test_sunau.py +122 -0
  2097. package/python3.4.2/lib/python3.4/test/test_sundry.py +59 -0
  2098. package/python3.4.2/lib/python3.4/test/test_super.py +181 -0
  2099. package/python3.4.2/lib/python3.4/test/test_support.py +315 -0
  2100. package/python3.4.2/lib/python3.4/test/test_symtable.py +176 -0
  2101. package/python3.4.2/lib/python3.4/test/test_syntax.py +593 -0
  2102. package/python3.4.2/lib/python3.4/test/test_sys.py +1000 -0
  2103. package/python3.4.2/lib/python3.4/test/test_sys_setprofile.py +386 -0
  2104. package/python3.4.2/lib/python3.4/test/test_sys_settrace.py +834 -0
  2105. package/python3.4.2/lib/python3.4/test/test_sysconfig.py +423 -0
  2106. package/python3.4.2/lib/python3.4/test/test_syslog.py +43 -0
  2107. package/python3.4.2/lib/python3.4/test/test_tarfile.py +2180 -0
  2108. package/python3.4.2/lib/python3.4/test/test_tcl.py +642 -0
  2109. package/python3.4.2/lib/python3.4/test/test_telnetlib.py +401 -0
  2110. package/python3.4.2/lib/python3.4/test/test_tempfile.py +1248 -0
  2111. package/python3.4.2/lib/python3.4/test/test_textwrap.py +929 -0
  2112. package/python3.4.2/lib/python3.4/test/test_thread.py +260 -0
  2113. package/python3.4.2/lib/python3.4/test/test_threaded_import.py +244 -0
  2114. package/python3.4.2/lib/python3.4/test/test_threadedtempfile.py +78 -0
  2115. package/python3.4.2/lib/python3.4/test/test_threading.py +1021 -0
  2116. package/python3.4.2/lib/python3.4/test/test_threading_local.py +225 -0
  2117. package/python3.4.2/lib/python3.4/test/test_threadsignals.py +227 -0
  2118. package/python3.4.2/lib/python3.4/test/test_time.py +763 -0
  2119. package/python3.4.2/lib/python3.4/test/test_timeit.py +306 -0
  2120. package/python3.4.2/lib/python3.4/test/test_timeout.py +303 -0
  2121. package/python3.4.2/lib/python3.4/test/test_tk.py +18 -0
  2122. package/python3.4.2/lib/python3.4/test/test_tokenize.py +1233 -0
  2123. package/python3.4.2/lib/python3.4/test/test_trace.py +415 -0
  2124. package/python3.4.2/lib/python3.4/test/test_traceback.py +451 -0
  2125. package/python3.4.2/lib/python3.4/test/test_tracemalloc.py +826 -0
  2126. package/python3.4.2/lib/python3.4/test/test_ttk_guionly.py +37 -0
  2127. package/python3.4.2/lib/python3.4/test/test_ttk_textonly.py +17 -0
  2128. package/python3.4.2/lib/python3.4/test/test_tuple.py +208 -0
  2129. package/python3.4.2/lib/python3.4/test/test_typechecks.py +76 -0
  2130. package/python3.4.2/lib/python3.4/test/test_types.py +1178 -0
  2131. package/python3.4.2/lib/python3.4/test/test_ucn.py +240 -0
  2132. package/python3.4.2/lib/python3.4/test/test_unary.py +58 -0
  2133. package/python3.4.2/lib/python3.4/test/test_unicode.py +2596 -0
  2134. package/python3.4.2/lib/python3.4/test/test_unicode_file.py +144 -0
  2135. package/python3.4.2/lib/python3.4/test/test_unicodedata.py +323 -0
  2136. package/python3.4.2/lib/python3.4/test/test_unittest.py +16 -0
  2137. package/python3.4.2/lib/python3.4/test/test_univnewlines.py +123 -0
  2138. package/python3.4.2/lib/python3.4/test/test_unpack.py +130 -0
  2139. package/python3.4.2/lib/python3.4/test/test_unpack_ex.py +174 -0
  2140. package/python3.4.2/lib/python3.4/test/test_urllib.py +1486 -0
  2141. package/python3.4.2/lib/python3.4/test/test_urllib2.py +1646 -0
  2142. package/python3.4.2/lib/python3.4/test/test_urllib2_localnet.py +690 -0
  2143. package/python3.4.2/lib/python3.4/test/test_urllib2net.py +342 -0
  2144. package/python3.4.2/lib/python3.4/test/test_urllib_response.py +59 -0
  2145. package/python3.4.2/lib/python3.4/test/test_urllibnet.py +212 -0
  2146. package/python3.4.2/lib/python3.4/test/test_urlparse.py +879 -0
  2147. package/python3.4.2/lib/python3.4/test/test_userdict.py +199 -0
  2148. package/python3.4.2/lib/python3.4/test/test_userlist.py +65 -0
  2149. package/python3.4.2/lib/python3.4/test/test_userstring.py +47 -0
  2150. package/python3.4.2/lib/python3.4/test/test_uu.py +239 -0
  2151. package/python3.4.2/lib/python3.4/test/test_uuid.py +498 -0
  2152. package/python3.4.2/lib/python3.4/test/test_venv.py +406 -0
  2153. package/python3.4.2/lib/python3.4/test/test_wait3.py +38 -0
  2154. package/python3.4.2/lib/python3.4/test/test_wait4.py +38 -0
  2155. package/python3.4.2/lib/python3.4/test/test_warnings.py +873 -0
  2156. package/python3.4.2/lib/python3.4/test/test_wave.py +107 -0
  2157. package/python3.4.2/lib/python3.4/test/test_weakref.py +1801 -0
  2158. package/python3.4.2/lib/python3.4/test/test_weakset.py +450 -0
  2159. package/python3.4.2/lib/python3.4/test/test_webbrowser.py +192 -0
  2160. package/python3.4.2/lib/python3.4/test/test_winreg.py +485 -0
  2161. package/python3.4.2/lib/python3.4/test/test_winsound.py +253 -0
  2162. package/python3.4.2/lib/python3.4/test/test_with.py +750 -0
  2163. package/python3.4.2/lib/python3.4/test/test_wsgiref.py +640 -0
  2164. package/python3.4.2/lib/python3.4/test/test_xdrlib.py +58 -0
  2165. package/python3.4.2/lib/python3.4/test/test_xml_dom_minicompat.py +101 -0
  2166. package/python3.4.2/lib/python3.4/test/test_xml_etree.py +2587 -0
  2167. package/python3.4.2/lib/python3.4/test/test_xml_etree_c.py +94 -0
  2168. package/python3.4.2/lib/python3.4/test/test_xmlrpc.py +1114 -0
  2169. package/python3.4.2/lib/python3.4/test/test_xmlrpc_net.py +33 -0
  2170. package/python3.4.2/lib/python3.4/test/test_zipfile.py +1783 -0
  2171. package/python3.4.2/lib/python3.4/test/test_zipfile64.py +118 -0
  2172. package/python3.4.2/lib/python3.4/test/test_zipimport.py +507 -0
  2173. package/python3.4.2/lib/python3.4/test/test_zipimport_support.py +246 -0
  2174. package/python3.4.2/lib/python3.4/test/test_zlib.py +725 -0
  2175. package/python3.4.2/lib/python3.4/test/testcodec.py +48 -0
  2176. package/python3.4.2/lib/python3.4/test/testtar.tar +0 -0
  2177. package/python3.4.2/lib/python3.4/test/tf_inherit_check.py +25 -0
  2178. package/python3.4.2/lib/python3.4/test/threaded_import_hangers.py +45 -0
  2179. package/python3.4.2/lib/python3.4/test/time_hashlib.py +87 -0
  2180. package/python3.4.2/lib/python3.4/test/tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt +13 -0
  2181. package/python3.4.2/lib/python3.4/test/tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt +11 -0
  2182. package/python3.4.2/lib/python3.4/test/tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt +13 -0
  2183. package/python3.4.2/lib/python3.4/test/tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt +12 -0
  2184. package/python3.4.2/lib/python3.4/test/tokenize_tests.txt +189 -0
  2185. package/python3.4.2/lib/python3.4/test/tracedmodules/__init__.py +4 -0
  2186. package/python3.4.2/lib/python3.4/test/tracedmodules/testmod.py +9 -0
  2187. package/python3.4.2/lib/python3.4/test/warning_tests.py +9 -0
  2188. package/python3.4.2/lib/python3.4/test/win_console_handler.py +49 -0
  2189. package/python3.4.2/lib/python3.4/test/xmltestdata/simple-ns.xml +7 -0
  2190. package/python3.4.2/lib/python3.4/test/xmltestdata/simple.xml +6 -0
  2191. package/python3.4.2/lib/python3.4/test/xmltestdata/test.xml +115 -0
  2192. package/python3.4.2/lib/python3.4/test/xmltestdata/test.xml.out +115 -0
  2193. package/python3.4.2/lib/python3.4/test/xmltests.py +21 -0
  2194. package/python3.4.2/lib/python3.4/test/zip_cp437_header.zip +0 -0
  2195. package/python3.4.2/lib/python3.4/test/zipdir.zip +0 -0
  2196. package/python3.4.2/lib/python3.4/textwrap.py +470 -0
  2197. package/python3.4.2/lib/python3.4/this.py +28 -0
  2198. package/python3.4.2/lib/python3.4/threading.py +1359 -0
  2199. package/python3.4.2/lib/python3.4/timeit.py +322 -0
  2200. package/python3.4.2/lib/python3.4/tkinter/__init__.py +3898 -0
  2201. package/python3.4.2/lib/python3.4/tkinter/__main__.py +7 -0
  2202. package/python3.4.2/lib/python3.4/tkinter/_fix.py +78 -0
  2203. package/python3.4.2/lib/python3.4/tkinter/colorchooser.py +72 -0
  2204. package/python3.4.2/lib/python3.4/tkinter/commondialog.py +60 -0
  2205. package/python3.4.2/lib/python3.4/tkinter/constants.py +110 -0
  2206. package/python3.4.2/lib/python3.4/tkinter/dialog.py +49 -0
  2207. package/python3.4.2/lib/python3.4/tkinter/dnd.py +321 -0
  2208. package/python3.4.2/lib/python3.4/tkinter/filedialog.py +479 -0
  2209. package/python3.4.2/lib/python3.4/tkinter/font.py +234 -0
  2210. package/python3.4.2/lib/python3.4/tkinter/messagebox.py +134 -0
  2211. package/python3.4.2/lib/python3.4/tkinter/scrolledtext.py +54 -0
  2212. package/python3.4.2/lib/python3.4/tkinter/simpledialog.py +423 -0
  2213. package/python3.4.2/lib/python3.4/tkinter/test/README +14 -0
  2214. package/python3.4.2/lib/python3.4/tkinter/test/__init__.py +0 -0
  2215. package/python3.4.2/lib/python3.4/tkinter/test/runtktests.py +71 -0
  2216. package/python3.4.2/lib/python3.4/tkinter/test/support.py +104 -0
  2217. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/__init__.py +0 -0
  2218. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_font.py +27 -0
  2219. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_geometry_managers.py +900 -0
  2220. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_images.py +327 -0
  2221. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_loadtk.py +46 -0
  2222. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_misc.py +42 -0
  2223. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_text.py +47 -0
  2224. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_variables.py +186 -0
  2225. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_widgets.py +1193 -0
  2226. package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/__init__.py +0 -0
  2227. package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_extensions.py +291 -0
  2228. package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_functions.py +462 -0
  2229. package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_style.py +92 -0
  2230. package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_widgets.py +1598 -0
  2231. package/python3.4.2/lib/python3.4/tkinter/test/widget_tests.py +521 -0
  2232. package/python3.4.2/lib/python3.4/tkinter/tix.py +1944 -0
  2233. package/python3.4.2/lib/python3.4/tkinter/ttk.py +1616 -0
  2234. package/python3.4.2/lib/python3.4/token.py +140 -0
  2235. package/python3.4.2/lib/python3.4/tokenize.py +691 -0
  2236. package/python3.4.2/lib/python3.4/trace.py +858 -0
  2237. package/python3.4.2/lib/python3.4/traceback.py +313 -0
  2238. package/python3.4.2/lib/python3.4/tracemalloc.py +487 -0
  2239. package/python3.4.2/lib/python3.4/tty.py +36 -0
  2240. package/python3.4.2/lib/python3.4/turtle.py +4140 -0
  2241. package/python3.4.2/lib/python3.4/turtledemo/__init__.py +14 -0
  2242. package/python3.4.2/lib/python3.4/turtledemo/__main__.py +380 -0
  2243. package/python3.4.2/lib/python3.4/turtledemo/bytedesign.py +162 -0
  2244. package/python3.4.2/lib/python3.4/turtledemo/chaos.py +59 -0
  2245. package/python3.4.2/lib/python3.4/turtledemo/clock.py +132 -0
  2246. package/python3.4.2/lib/python3.4/turtledemo/colormixer.py +58 -0
  2247. package/python3.4.2/lib/python3.4/turtledemo/forest.py +108 -0
  2248. package/python3.4.2/lib/python3.4/turtledemo/fractalcurves.py +138 -0
  2249. package/python3.4.2/lib/python3.4/turtledemo/lindenmayer.py +119 -0
  2250. package/python3.4.2/lib/python3.4/turtledemo/minimal_hanoi.py +79 -0
  2251. package/python3.4.2/lib/python3.4/turtledemo/nim.py +226 -0
  2252. package/python3.4.2/lib/python3.4/turtledemo/paint.py +54 -0
  2253. package/python3.4.2/lib/python3.4/turtledemo/peace.py +61 -0
  2254. package/python3.4.2/lib/python3.4/turtledemo/penrose.py +181 -0
  2255. package/python3.4.2/lib/python3.4/turtledemo/planet_and_moon.py +112 -0
  2256. package/python3.4.2/lib/python3.4/turtledemo/round_dance.py +86 -0
  2257. package/python3.4.2/lib/python3.4/turtledemo/tree.py +63 -0
  2258. package/python3.4.2/lib/python3.4/turtledemo/turtle.cfg +10 -0
  2259. package/python3.4.2/lib/python3.4/turtledemo/two_canvases.py +54 -0
  2260. package/python3.4.2/lib/python3.4/turtledemo/wikipedia.py +65 -0
  2261. package/python3.4.2/lib/python3.4/turtledemo/yinyang.py +49 -0
  2262. package/python3.4.2/lib/python3.4/types.py +158 -0
  2263. package/python3.4.2/lib/python3.4/unittest/__init__.py +69 -0
  2264. package/python3.4.2/lib/python3.4/unittest/__main__.py +18 -0
  2265. package/python3.4.2/lib/python3.4/unittest/case.py +1400 -0
  2266. package/python3.4.2/lib/python3.4/unittest/loader.py +379 -0
  2267. package/python3.4.2/lib/python3.4/unittest/main.py +248 -0
  2268. package/python3.4.2/lib/python3.4/unittest/mock.py +2330 -0
  2269. package/python3.4.2/lib/python3.4/unittest/result.py +212 -0
  2270. package/python3.4.2/lib/python3.4/unittest/runner.py +213 -0
  2271. package/python3.4.2/lib/python3.4/unittest/signals.py +71 -0
  2272. package/python3.4.2/lib/python3.4/unittest/suite.py +324 -0
  2273. package/python3.4.2/lib/python3.4/unittest/test/__init__.py +22 -0
  2274. package/python3.4.2/lib/python3.4/unittest/test/__main__.py +18 -0
  2275. package/python3.4.2/lib/python3.4/unittest/test/_test_warnings.py +73 -0
  2276. package/python3.4.2/lib/python3.4/unittest/test/dummy.py +1 -0
  2277. package/python3.4.2/lib/python3.4/unittest/test/support.py +142 -0
  2278. package/python3.4.2/lib/python3.4/unittest/test/test_assertions.py +398 -0
  2279. package/python3.4.2/lib/python3.4/unittest/test/test_break.py +288 -0
  2280. package/python3.4.2/lib/python3.4/unittest/test/test_case.py +1574 -0
  2281. package/python3.4.2/lib/python3.4/unittest/test/test_discovery.py +527 -0
  2282. package/python3.4.2/lib/python3.4/unittest/test/test_functiontestcase.py +148 -0
  2283. package/python3.4.2/lib/python3.4/unittest/test/test_loader.py +1312 -0
  2284. package/python3.4.2/lib/python3.4/unittest/test/test_program.py +396 -0
  2285. package/python3.4.2/lib/python3.4/unittest/test/test_result.py +660 -0
  2286. package/python3.4.2/lib/python3.4/unittest/test/test_runner.py +346 -0
  2287. package/python3.4.2/lib/python3.4/unittest/test/test_setups.py +506 -0
  2288. package/python3.4.2/lib/python3.4/unittest/test/test_skipping.py +227 -0
  2289. package/python3.4.2/lib/python3.4/unittest/test/test_suite.py +447 -0
  2290. package/python3.4.2/lib/python3.4/unittest/test/testmock/__init__.py +17 -0
  2291. package/python3.4.2/lib/python3.4/unittest/test/testmock/__main__.py +18 -0
  2292. package/python3.4.2/lib/python3.4/unittest/test/testmock/support.py +23 -0
  2293. package/python3.4.2/lib/python3.4/unittest/test/testmock/testcallable.py +151 -0
  2294. package/python3.4.2/lib/python3.4/unittest/test/testmock/testhelpers.py +908 -0
  2295. package/python3.4.2/lib/python3.4/unittest/test/testmock/testmagicmethods.py +428 -0
  2296. package/python3.4.2/lib/python3.4/unittest/test/testmock/testmock.py +1412 -0
  2297. package/python3.4.2/lib/python3.4/unittest/test/testmock/testpatch.py +1801 -0
  2298. package/python3.4.2/lib/python3.4/unittest/test/testmock/testsentinel.py +28 -0
  2299. package/python3.4.2/lib/python3.4/unittest/test/testmock/testwith.py +259 -0
  2300. package/python3.4.2/lib/python3.4/unittest/util.py +177 -0
  2301. package/python3.4.2/lib/python3.4/urllib/__init__.py +0 -0
  2302. package/python3.4.2/lib/python3.4/urllib/error.py +76 -0
  2303. package/python3.4.2/lib/python3.4/urllib/parse.py +973 -0
  2304. package/python3.4.2/lib/python3.4/urllib/request.py +2559 -0
  2305. package/python3.4.2/lib/python3.4/urllib/response.py +76 -0
  2306. package/python3.4.2/lib/python3.4/urllib/robotparser.py +212 -0
  2307. package/python3.4.2/lib/python3.4/uu.py +199 -0
  2308. package/python3.4.2/lib/python3.4/uuid.py +591 -0
  2309. package/python3.4.2/lib/python3.4/venv/__init__.py +449 -0
  2310. package/python3.4.2/lib/python3.4/venv/__main__.py +10 -0
  2311. package/python3.4.2/lib/python3.4/venv/scripts/posix/activate +76 -0
  2312. package/python3.4.2/lib/python3.4/venv/scripts/posix/activate.csh +37 -0
  2313. package/python3.4.2/lib/python3.4/venv/scripts/posix/activate.fish +74 -0
  2314. package/python3.4.2/lib/python3.4/warnings.py +407 -0
  2315. package/python3.4.2/lib/python3.4/wave.py +503 -0
  2316. package/python3.4.2/lib/python3.4/weakref.py +577 -0
  2317. package/python3.4.2/lib/python3.4/webbrowser.py +651 -0
  2318. package/python3.4.2/lib/python3.4/wsgiref/__init__.py +23 -0
  2319. package/python3.4.2/lib/python3.4/wsgiref/handlers.py +547 -0
  2320. package/python3.4.2/lib/python3.4/wsgiref/headers.py +184 -0
  2321. package/python3.4.2/lib/python3.4/wsgiref/simple_server.py +165 -0
  2322. package/python3.4.2/lib/python3.4/wsgiref/util.py +165 -0
  2323. package/python3.4.2/lib/python3.4/wsgiref/validate.py +443 -0
  2324. package/python3.4.2/lib/python3.4/xdrlib.py +224 -0
  2325. package/python3.4.2/lib/python3.4/xml/__init__.py +20 -0
  2326. package/python3.4.2/lib/python3.4/xml/dom/NodeFilter.py +27 -0
  2327. package/python3.4.2/lib/python3.4/xml/dom/__init__.py +140 -0
  2328. package/python3.4.2/lib/python3.4/xml/dom/domreg.py +97 -0
  2329. package/python3.4.2/lib/python3.4/xml/dom/expatbuilder.py +965 -0
  2330. package/python3.4.2/lib/python3.4/xml/dom/minicompat.py +109 -0
  2331. package/python3.4.2/lib/python3.4/xml/dom/minidom.py +1983 -0
  2332. package/python3.4.2/lib/python3.4/xml/dom/pulldom.py +342 -0
  2333. package/python3.4.2/lib/python3.4/xml/dom/xmlbuilder.py +386 -0
  2334. package/python3.4.2/lib/python3.4/xml/etree/ElementInclude.py +143 -0
  2335. package/python3.4.2/lib/python3.4/xml/etree/ElementPath.py +308 -0
  2336. package/python3.4.2/lib/python3.4/xml/etree/ElementTree.py +1667 -0
  2337. package/python3.4.2/lib/python3.4/xml/etree/__init__.py +33 -0
  2338. package/python3.4.2/lib/python3.4/xml/etree/cElementTree.py +3 -0
  2339. package/python3.4.2/lib/python3.4/xml/parsers/__init__.py +8 -0
  2340. package/python3.4.2/lib/python3.4/xml/parsers/expat.py +8 -0
  2341. package/python3.4.2/lib/python3.4/xml/sax/__init__.py +105 -0
  2342. package/python3.4.2/lib/python3.4/xml/sax/_exceptions.py +131 -0
  2343. package/python3.4.2/lib/python3.4/xml/sax/expatreader.py +417 -0
  2344. package/python3.4.2/lib/python3.4/xml/sax/handler.py +342 -0
  2345. package/python3.4.2/lib/python3.4/xml/sax/saxutils.py +365 -0
  2346. package/python3.4.2/lib/python3.4/xml/sax/xmlreader.py +378 -0
  2347. package/python3.4.2/lib/python3.4/xmlrpc/__init__.py +1 -0
  2348. package/python3.4.2/lib/python3.4/xmlrpc/client.py +1479 -0
  2349. package/python3.4.2/lib/python3.4/xmlrpc/server.py +986 -0
  2350. package/python3.4.2/lib/python3.4/zipfile.py +1788 -0
  2351. package/python3.4.2/share/man/man1/python3.1 +460 -0
  2352. package/python3.4.2/share/man/man1/python3.4.1 +460 -0
@@ -0,0 +1,4140 @@
1
+ #
2
+ # turtle.py: a Tkinter based turtle graphics module for Python
3
+ # Version 1.1b - 4. 5. 2009
4
+ #
5
+ # Copyright (C) 2006 - 2010 Gregor Lingl
6
+ # email: glingl@aon.at
7
+ #
8
+ # This software is provided 'as-is', without any express or implied
9
+ # warranty. In no event will the authors be held liable for any damages
10
+ # arising from the use of this software.
11
+ #
12
+ # Permission is granted to anyone to use this software for any purpose,
13
+ # including commercial applications, and to alter it and redistribute it
14
+ # freely, subject to the following restrictions:
15
+ #
16
+ # 1. The origin of this software must not be misrepresented; you must not
17
+ # claim that you wrote the original software. If you use this software
18
+ # in a product, an acknowledgment in the product documentation would be
19
+ # appreciated but is not required.
20
+ # 2. Altered source versions must be plainly marked as such, and must not be
21
+ # misrepresented as being the original software.
22
+ # 3. This notice may not be removed or altered from any source distribution.
23
+
24
+
25
+ """
26
+ Turtle graphics is a popular way for introducing programming to
27
+ kids. It was part of the original Logo programming language developed
28
+ by Wally Feurzig and Seymour Papert in 1966.
29
+
30
+ Imagine a robotic turtle starting at (0, 0) in the x-y plane. After an ``import turtle``, give it
31
+ the command turtle.forward(15), and it moves (on-screen!) 15 pixels in
32
+ the direction it is facing, drawing a line as it moves. Give it the
33
+ command turtle.right(25), and it rotates in-place 25 degrees clockwise.
34
+
35
+ By combining together these and similar commands, intricate shapes and
36
+ pictures can easily be drawn.
37
+
38
+ ----- turtle.py
39
+
40
+ This module is an extended reimplementation of turtle.py from the
41
+ Python standard distribution up to Python 2.5. (See: http://www.python.org)
42
+
43
+ It tries to keep the merits of turtle.py and to be (nearly) 100%
44
+ compatible with it. This means in the first place to enable the
45
+ learning programmer to use all the commands, classes and methods
46
+ interactively when using the module from within IDLE run with
47
+ the -n switch.
48
+
49
+ Roughly it has the following features added:
50
+
51
+ - Better animation of the turtle movements, especially of turning the
52
+ turtle. So the turtles can more easily be used as a visual feedback
53
+ instrument by the (beginning) programmer.
54
+
55
+ - Different turtle shapes, gif-images as turtle shapes, user defined
56
+ and user controllable turtle shapes, among them compound
57
+ (multicolored) shapes. Turtle shapes can be stretched and tilted, which
58
+ makes turtles very versatile geometrical objects.
59
+
60
+ - Fine control over turtle movement and screen updates via delay(),
61
+ and enhanced tracer() and speed() methods.
62
+
63
+ - Aliases for the most commonly used commands, like fd for forward etc.,
64
+ following the early Logo traditions. This reduces the boring work of
65
+ typing long sequences of commands, which often occur in a natural way
66
+ when kids try to program fancy pictures on their first encounter with
67
+ turtle graphics.
68
+
69
+ - Turtles now have an undo()-method with configurable undo-buffer.
70
+
71
+ - Some simple commands/methods for creating event driven programs
72
+ (mouse-, key-, timer-events). Especially useful for programming games.
73
+
74
+ - A scrollable Canvas class. The default scrollable Canvas can be
75
+ extended interactively as needed while playing around with the turtle(s).
76
+
77
+ - A TurtleScreen class with methods controlling background color or
78
+ background image, window and canvas size and other properties of the
79
+ TurtleScreen.
80
+
81
+ - There is a method, setworldcoordinates(), to install a user defined
82
+ coordinate-system for the TurtleScreen.
83
+
84
+ - The implementation uses a 2-vector class named Vec2D, derived from tuple.
85
+ This class is public, so it can be imported by the application programmer,
86
+ which makes certain types of computations very natural and compact.
87
+
88
+ - Appearance of the TurtleScreen and the Turtles at startup/import can be
89
+ configured by means of a turtle.cfg configuration file.
90
+ The default configuration mimics the appearance of the old turtle module.
91
+
92
+ - If configured appropriately the module reads in docstrings from a docstring
93
+ dictionary in some different language, supplied separately and replaces
94
+ the English ones by those read in. There is a utility function
95
+ write_docstringdict() to write a dictionary with the original (English)
96
+ docstrings to disc, so it can serve as a template for translations.
97
+
98
+ Behind the scenes there are some features included with possible
99
+ extensions in mind. These will be commented and documented elsewhere.
100
+
101
+ """
102
+
103
+ _ver = "turtle 1.1b- - for Python 3.1 - 4. 5. 2009"
104
+
105
+ # print(_ver)
106
+
107
+ import tkinter as TK
108
+ import types
109
+ import math
110
+ import time
111
+ import inspect
112
+ import sys
113
+
114
+ from os.path import isfile, split, join
115
+ from copy import deepcopy
116
+ from tkinter import simpledialog
117
+
118
+ _tg_classes = ['ScrolledCanvas', 'TurtleScreen', 'Screen',
119
+ 'RawTurtle', 'Turtle', 'RawPen', 'Pen', 'Shape', 'Vec2D']
120
+ _tg_screen_functions = ['addshape', 'bgcolor', 'bgpic', 'bye',
121
+ 'clearscreen', 'colormode', 'delay', 'exitonclick', 'getcanvas',
122
+ 'getshapes', 'listen', 'mainloop', 'mode', 'numinput',
123
+ 'onkey', 'onkeypress', 'onkeyrelease', 'onscreenclick', 'ontimer',
124
+ 'register_shape', 'resetscreen', 'screensize', 'setup',
125
+ 'setworldcoordinates', 'textinput', 'title', 'tracer', 'turtles', 'update',
126
+ 'window_height', 'window_width']
127
+ _tg_turtle_functions = ['back', 'backward', 'begin_fill', 'begin_poly', 'bk',
128
+ 'circle', 'clear', 'clearstamp', 'clearstamps', 'clone', 'color',
129
+ 'degrees', 'distance', 'dot', 'down', 'end_fill', 'end_poly', 'fd',
130
+ 'fillcolor', 'filling', 'forward', 'get_poly', 'getpen', 'getscreen', 'get_shapepoly',
131
+ 'getturtle', 'goto', 'heading', 'hideturtle', 'home', 'ht', 'isdown',
132
+ 'isvisible', 'left', 'lt', 'onclick', 'ondrag', 'onrelease', 'pd',
133
+ 'pen', 'pencolor', 'pendown', 'pensize', 'penup', 'pos', 'position',
134
+ 'pu', 'radians', 'right', 'reset', 'resizemode', 'rt',
135
+ 'seth', 'setheading', 'setpos', 'setposition', 'settiltangle',
136
+ 'setundobuffer', 'setx', 'sety', 'shape', 'shapesize', 'shapetransform', 'shearfactor', 'showturtle',
137
+ 'speed', 'st', 'stamp', 'tilt', 'tiltangle', 'towards',
138
+ 'turtlesize', 'undo', 'undobufferentries', 'up', 'width',
139
+ 'write', 'xcor', 'ycor']
140
+ _tg_utilities = ['write_docstringdict', 'done']
141
+
142
+ __all__ = (_tg_classes + _tg_screen_functions + _tg_turtle_functions +
143
+ _tg_utilities + ['Terminator']) # + _math_functions)
144
+
145
+ _alias_list = ['addshape', 'backward', 'bk', 'fd', 'ht', 'lt', 'pd', 'pos',
146
+ 'pu', 'rt', 'seth', 'setpos', 'setposition', 'st',
147
+ 'turtlesize', 'up', 'width']
148
+
149
+ _CFG = {"width" : 0.5, # Screen
150
+ "height" : 0.75,
151
+ "canvwidth" : 400,
152
+ "canvheight": 300,
153
+ "leftright": None,
154
+ "topbottom": None,
155
+ "mode": "standard", # TurtleScreen
156
+ "colormode": 1.0,
157
+ "delay": 10,
158
+ "undobuffersize": 1000, # RawTurtle
159
+ "shape": "classic",
160
+ "pencolor" : "black",
161
+ "fillcolor" : "black",
162
+ "resizemode" : "noresize",
163
+ "visible" : True,
164
+ "language": "english", # docstrings
165
+ "exampleturtle": "turtle",
166
+ "examplescreen": "screen",
167
+ "title": "Python Turtle Graphics",
168
+ "using_IDLE": False
169
+ }
170
+
171
+ def config_dict(filename):
172
+ """Convert content of config-file into dictionary."""
173
+ with open(filename, "r") as f:
174
+ cfglines = f.readlines()
175
+ cfgdict = {}
176
+ for line in cfglines:
177
+ line = line.strip()
178
+ if not line or line.startswith("#"):
179
+ continue
180
+ try:
181
+ key, value = line.split("=")
182
+ except:
183
+ print("Bad line in config-file %s:\n%s" % (filename,line))
184
+ continue
185
+ key = key.strip()
186
+ value = value.strip()
187
+ if value in ["True", "False", "None", "''", '""']:
188
+ value = eval(value)
189
+ else:
190
+ try:
191
+ if "." in value:
192
+ value = float(value)
193
+ else:
194
+ value = int(value)
195
+ except:
196
+ pass # value need not be converted
197
+ cfgdict[key] = value
198
+ return cfgdict
199
+
200
+ def readconfig(cfgdict):
201
+ """Read config-files, change configuration-dict accordingly.
202
+
203
+ If there is a turtle.cfg file in the current working directory,
204
+ read it from there. If this contains an importconfig-value,
205
+ say 'myway', construct filename turtle_mayway.cfg else use
206
+ turtle.cfg and read it from the import-directory, where
207
+ turtle.py is located.
208
+ Update configuration dictionary first according to config-file,
209
+ in the import directory, then according to config-file in the
210
+ current working directory.
211
+ If no config-file is found, the default configuration is used.
212
+ """
213
+ default_cfg = "turtle.cfg"
214
+ cfgdict1 = {}
215
+ cfgdict2 = {}
216
+ if isfile(default_cfg):
217
+ cfgdict1 = config_dict(default_cfg)
218
+ if "importconfig" in cfgdict1:
219
+ default_cfg = "turtle_%s.cfg" % cfgdict1["importconfig"]
220
+ try:
221
+ head, tail = split(__file__)
222
+ cfg_file2 = join(head, default_cfg)
223
+ except:
224
+ cfg_file2 = ""
225
+ if isfile(cfg_file2):
226
+ cfgdict2 = config_dict(cfg_file2)
227
+ _CFG.update(cfgdict2)
228
+ _CFG.update(cfgdict1)
229
+
230
+ try:
231
+ readconfig(_CFG)
232
+ except:
233
+ print ("No configfile read, reason unknown")
234
+
235
+
236
+ class Vec2D(tuple):
237
+ """A 2 dimensional vector class, used as a helper class
238
+ for implementing turtle graphics.
239
+ May be useful for turtle graphics programs also.
240
+ Derived from tuple, so a vector is a tuple!
241
+
242
+ Provides (for a, b vectors, k number):
243
+ a+b vector addition
244
+ a-b vector subtraction
245
+ a*b inner product
246
+ k*a and a*k multiplication with scalar
247
+ |a| absolute value of a
248
+ a.rotate(angle) rotation
249
+ """
250
+ def __new__(cls, x, y):
251
+ return tuple.__new__(cls, (x, y))
252
+ def __add__(self, other):
253
+ return Vec2D(self[0]+other[0], self[1]+other[1])
254
+ def __mul__(self, other):
255
+ if isinstance(other, Vec2D):
256
+ return self[0]*other[0]+self[1]*other[1]
257
+ return Vec2D(self[0]*other, self[1]*other)
258
+ def __rmul__(self, other):
259
+ if isinstance(other, int) or isinstance(other, float):
260
+ return Vec2D(self[0]*other, self[1]*other)
261
+ def __sub__(self, other):
262
+ return Vec2D(self[0]-other[0], self[1]-other[1])
263
+ def __neg__(self):
264
+ return Vec2D(-self[0], -self[1])
265
+ def __abs__(self):
266
+ return (self[0]**2 + self[1]**2)**0.5
267
+ def rotate(self, angle):
268
+ """rotate self counterclockwise by angle
269
+ """
270
+ perp = Vec2D(-self[1], self[0])
271
+ angle = angle * math.pi / 180.0
272
+ c, s = math.cos(angle), math.sin(angle)
273
+ return Vec2D(self[0]*c+perp[0]*s, self[1]*c+perp[1]*s)
274
+ def __getnewargs__(self):
275
+ return (self[0], self[1])
276
+ def __repr__(self):
277
+ return "(%.2f,%.2f)" % self
278
+
279
+
280
+ ##############################################################################
281
+ ### From here up to line : Tkinter - Interface for turtle.py ###
282
+ ### May be replaced by an interface to some different graphics toolkit ###
283
+ ##############################################################################
284
+
285
+ ## helper functions for Scrolled Canvas, to forward Canvas-methods
286
+ ## to ScrolledCanvas class
287
+
288
+ def __methodDict(cls, _dict):
289
+ """helper function for Scrolled Canvas"""
290
+ baseList = list(cls.__bases__)
291
+ baseList.reverse()
292
+ for _super in baseList:
293
+ __methodDict(_super, _dict)
294
+ for key, value in cls.__dict__.items():
295
+ if type(value) == types.FunctionType:
296
+ _dict[key] = value
297
+
298
+ def __methods(cls):
299
+ """helper function for Scrolled Canvas"""
300
+ _dict = {}
301
+ __methodDict(cls, _dict)
302
+ return _dict.keys()
303
+
304
+ __stringBody = (
305
+ 'def %(method)s(self, *args, **kw): return ' +
306
+ 'self.%(attribute)s.%(method)s(*args, **kw)')
307
+
308
+ def __forwardmethods(fromClass, toClass, toPart, exclude = ()):
309
+ ### MANY CHANGES ###
310
+ _dict_1 = {}
311
+ __methodDict(toClass, _dict_1)
312
+ _dict = {}
313
+ mfc = __methods(fromClass)
314
+ for ex in _dict_1.keys():
315
+ if ex[:1] == '_' or ex[-1:] == '_' or ex in exclude or ex in mfc:
316
+ pass
317
+ else:
318
+ _dict[ex] = _dict_1[ex]
319
+
320
+ for method, func in _dict.items():
321
+ d = {'method': method, 'func': func}
322
+ if isinstance(toPart, str):
323
+ execString = \
324
+ __stringBody % {'method' : method, 'attribute' : toPart}
325
+ exec(execString, d)
326
+ setattr(fromClass, method, d[method]) ### NEWU!
327
+
328
+
329
+ class ScrolledCanvas(TK.Frame):
330
+ """Modeled after the scrolled canvas class from Grayons's Tkinter book.
331
+
332
+ Used as the default canvas, which pops up automatically when
333
+ using turtle graphics functions or the Turtle class.
334
+ """
335
+ def __init__(self, master, width=500, height=350,
336
+ canvwidth=600, canvheight=500):
337
+ TK.Frame.__init__(self, master, width=width, height=height)
338
+ self._rootwindow = self.winfo_toplevel()
339
+ self.width, self.height = width, height
340
+ self.canvwidth, self.canvheight = canvwidth, canvheight
341
+ self.bg = "white"
342
+ self._canvas = TK.Canvas(master, width=width, height=height,
343
+ bg=self.bg, relief=TK.SUNKEN, borderwidth=2)
344
+ self.hscroll = TK.Scrollbar(master, command=self._canvas.xview,
345
+ orient=TK.HORIZONTAL)
346
+ self.vscroll = TK.Scrollbar(master, command=self._canvas.yview)
347
+ self._canvas.configure(xscrollcommand=self.hscroll.set,
348
+ yscrollcommand=self.vscroll.set)
349
+ self.rowconfigure(0, weight=1, minsize=0)
350
+ self.columnconfigure(0, weight=1, minsize=0)
351
+ self._canvas.grid(padx=1, in_ = self, pady=1, row=0,
352
+ column=0, rowspan=1, columnspan=1, sticky='news')
353
+ self.vscroll.grid(padx=1, in_ = self, pady=1, row=0,
354
+ column=1, rowspan=1, columnspan=1, sticky='news')
355
+ self.hscroll.grid(padx=1, in_ = self, pady=1, row=1,
356
+ column=0, rowspan=1, columnspan=1, sticky='news')
357
+ self.reset()
358
+ self._rootwindow.bind('<Configure>', self.onResize)
359
+
360
+ def reset(self, canvwidth=None, canvheight=None, bg = None):
361
+ """Adjust canvas and scrollbars according to given canvas size."""
362
+ if canvwidth:
363
+ self.canvwidth = canvwidth
364
+ if canvheight:
365
+ self.canvheight = canvheight
366
+ if bg:
367
+ self.bg = bg
368
+ self._canvas.config(bg=bg,
369
+ scrollregion=(-self.canvwidth//2, -self.canvheight//2,
370
+ self.canvwidth//2, self.canvheight//2))
371
+ self._canvas.xview_moveto(0.5*(self.canvwidth - self.width + 30) /
372
+ self.canvwidth)
373
+ self._canvas.yview_moveto(0.5*(self.canvheight- self.height + 30) /
374
+ self.canvheight)
375
+ self.adjustScrolls()
376
+
377
+
378
+ def adjustScrolls(self):
379
+ """ Adjust scrollbars according to window- and canvas-size.
380
+ """
381
+ cwidth = self._canvas.winfo_width()
382
+ cheight = self._canvas.winfo_height()
383
+ self._canvas.xview_moveto(0.5*(self.canvwidth-cwidth)/self.canvwidth)
384
+ self._canvas.yview_moveto(0.5*(self.canvheight-cheight)/self.canvheight)
385
+ if cwidth < self.canvwidth or cheight < self.canvheight:
386
+ self.hscroll.grid(padx=1, in_ = self, pady=1, row=1,
387
+ column=0, rowspan=1, columnspan=1, sticky='news')
388
+ self.vscroll.grid(padx=1, in_ = self, pady=1, row=0,
389
+ column=1, rowspan=1, columnspan=1, sticky='news')
390
+ else:
391
+ self.hscroll.grid_forget()
392
+ self.vscroll.grid_forget()
393
+
394
+ def onResize(self, event):
395
+ """self-explanatory"""
396
+ self.adjustScrolls()
397
+
398
+ def bbox(self, *args):
399
+ """ 'forward' method, which canvas itself has inherited...
400
+ """
401
+ return self._canvas.bbox(*args)
402
+
403
+ def cget(self, *args, **kwargs):
404
+ """ 'forward' method, which canvas itself has inherited...
405
+ """
406
+ return self._canvas.cget(*args, **kwargs)
407
+
408
+ def config(self, *args, **kwargs):
409
+ """ 'forward' method, which canvas itself has inherited...
410
+ """
411
+ self._canvas.config(*args, **kwargs)
412
+
413
+ def bind(self, *args, **kwargs):
414
+ """ 'forward' method, which canvas itself has inherited...
415
+ """
416
+ self._canvas.bind(*args, **kwargs)
417
+
418
+ def unbind(self, *args, **kwargs):
419
+ """ 'forward' method, which canvas itself has inherited...
420
+ """
421
+ self._canvas.unbind(*args, **kwargs)
422
+
423
+ def focus_force(self):
424
+ """ 'forward' method, which canvas itself has inherited...
425
+ """
426
+ self._canvas.focus_force()
427
+
428
+ __forwardmethods(ScrolledCanvas, TK.Canvas, '_canvas')
429
+
430
+
431
+ class _Root(TK.Tk):
432
+ """Root class for Screen based on Tkinter."""
433
+ def __init__(self):
434
+ TK.Tk.__init__(self)
435
+
436
+ def setupcanvas(self, width, height, cwidth, cheight):
437
+ self._canvas = ScrolledCanvas(self, width, height, cwidth, cheight)
438
+ self._canvas.pack(expand=1, fill="both")
439
+
440
+ def _getcanvas(self):
441
+ return self._canvas
442
+
443
+ def set_geometry(self, width, height, startx, starty):
444
+ self.geometry("%dx%d%+d%+d"%(width, height, startx, starty))
445
+
446
+ def ondestroy(self, destroy):
447
+ self.wm_protocol("WM_DELETE_WINDOW", destroy)
448
+
449
+ def win_width(self):
450
+ return self.winfo_screenwidth()
451
+
452
+ def win_height(self):
453
+ return self.winfo_screenheight()
454
+
455
+ Canvas = TK.Canvas
456
+
457
+
458
+ class TurtleScreenBase(object):
459
+ """Provide the basic graphics functionality.
460
+ Interface between Tkinter and turtle.py.
461
+
462
+ To port turtle.py to some different graphics toolkit
463
+ a corresponding TurtleScreenBase class has to be implemented.
464
+ """
465
+
466
+ @staticmethod
467
+ def _blankimage():
468
+ """return a blank image object
469
+ """
470
+ img = TK.PhotoImage(width=1, height=1)
471
+ img.blank()
472
+ return img
473
+
474
+ @staticmethod
475
+ def _image(filename):
476
+ """return an image object containing the
477
+ imagedata from a gif-file named filename.
478
+ """
479
+ return TK.PhotoImage(file=filename)
480
+
481
+ def __init__(self, cv):
482
+ self.cv = cv
483
+ if isinstance(cv, ScrolledCanvas):
484
+ w = self.cv.canvwidth
485
+ h = self.cv.canvheight
486
+ else: # expected: ordinary TK.Canvas
487
+ w = int(self.cv.cget("width"))
488
+ h = int(self.cv.cget("height"))
489
+ self.cv.config(scrollregion = (-w//2, -h//2, w//2, h//2 ))
490
+ self.canvwidth = w
491
+ self.canvheight = h
492
+ self.xscale = self.yscale = 1.0
493
+
494
+ def _createpoly(self):
495
+ """Create an invisible polygon item on canvas self.cv)
496
+ """
497
+ return self.cv.create_polygon((0, 0, 0, 0, 0, 0), fill="", outline="")
498
+
499
+ def _drawpoly(self, polyitem, coordlist, fill=None,
500
+ outline=None, width=None, top=False):
501
+ """Configure polygonitem polyitem according to provided
502
+ arguments:
503
+ coordlist is sequence of coordinates
504
+ fill is filling color
505
+ outline is outline color
506
+ top is a boolean value, which specifies if polyitem
507
+ will be put on top of the canvas' displaylist so it
508
+ will not be covered by other items.
509
+ """
510
+ cl = []
511
+ for x, y in coordlist:
512
+ cl.append(x * self.xscale)
513
+ cl.append(-y * self.yscale)
514
+ self.cv.coords(polyitem, *cl)
515
+ if fill is not None:
516
+ self.cv.itemconfigure(polyitem, fill=fill)
517
+ if outline is not None:
518
+ self.cv.itemconfigure(polyitem, outline=outline)
519
+ if width is not None:
520
+ self.cv.itemconfigure(polyitem, width=width)
521
+ if top:
522
+ self.cv.tag_raise(polyitem)
523
+
524
+ def _createline(self):
525
+ """Create an invisible line item on canvas self.cv)
526
+ """
527
+ return self.cv.create_line(0, 0, 0, 0, fill="", width=2,
528
+ capstyle = TK.ROUND)
529
+
530
+ def _drawline(self, lineitem, coordlist=None,
531
+ fill=None, width=None, top=False):
532
+ """Configure lineitem according to provided arguments:
533
+ coordlist is sequence of coordinates
534
+ fill is drawing color
535
+ width is width of drawn line.
536
+ top is a boolean value, which specifies if polyitem
537
+ will be put on top of the canvas' displaylist so it
538
+ will not be covered by other items.
539
+ """
540
+ if coordlist is not None:
541
+ cl = []
542
+ for x, y in coordlist:
543
+ cl.append(x * self.xscale)
544
+ cl.append(-y * self.yscale)
545
+ self.cv.coords(lineitem, *cl)
546
+ if fill is not None:
547
+ self.cv.itemconfigure(lineitem, fill=fill)
548
+ if width is not None:
549
+ self.cv.itemconfigure(lineitem, width=width)
550
+ if top:
551
+ self.cv.tag_raise(lineitem)
552
+
553
+ def _delete(self, item):
554
+ """Delete graphics item from canvas.
555
+ If item is"all" delete all graphics items.
556
+ """
557
+ self.cv.delete(item)
558
+
559
+ def _update(self):
560
+ """Redraw graphics items on canvas
561
+ """
562
+ self.cv.update()
563
+
564
+ def _delay(self, delay):
565
+ """Delay subsequent canvas actions for delay ms."""
566
+ self.cv.after(delay)
567
+
568
+ def _iscolorstring(self, color):
569
+ """Check if the string color is a legal Tkinter color string.
570
+ """
571
+ try:
572
+ rgb = self.cv.winfo_rgb(color)
573
+ ok = True
574
+ except TK.TclError:
575
+ ok = False
576
+ return ok
577
+
578
+ def _bgcolor(self, color=None):
579
+ """Set canvas' backgroundcolor if color is not None,
580
+ else return backgroundcolor."""
581
+ if color is not None:
582
+ self.cv.config(bg = color)
583
+ self._update()
584
+ else:
585
+ return self.cv.cget("bg")
586
+
587
+ def _write(self, pos, txt, align, font, pencolor):
588
+ """Write txt at pos in canvas with specified font
589
+ and color.
590
+ Return text item and x-coord of right bottom corner
591
+ of text's bounding box."""
592
+ x, y = pos
593
+ x = x * self.xscale
594
+ y = y * self.yscale
595
+ anchor = {"left":"sw", "center":"s", "right":"se" }
596
+ item = self.cv.create_text(x-1, -y, text = txt, anchor = anchor[align],
597
+ fill = pencolor, font = font)
598
+ x0, y0, x1, y1 = self.cv.bbox(item)
599
+ self.cv.update()
600
+ return item, x1-1
601
+
602
+ ## def _dot(self, pos, size, color):
603
+ ## """may be implemented for some other graphics toolkit"""
604
+
605
+ def _onclick(self, item, fun, num=1, add=None):
606
+ """Bind fun to mouse-click event on turtle.
607
+ fun must be a function with two arguments, the coordinates
608
+ of the clicked point on the canvas.
609
+ num, the number of the mouse-button defaults to 1
610
+ """
611
+ if fun is None:
612
+ self.cv.tag_unbind(item, "<Button-%s>" % num)
613
+ else:
614
+ def eventfun(event):
615
+ x, y = (self.cv.canvasx(event.x)/self.xscale,
616
+ -self.cv.canvasy(event.y)/self.yscale)
617
+ fun(x, y)
618
+ self.cv.tag_bind(item, "<Button-%s>" % num, eventfun, add)
619
+
620
+ def _onrelease(self, item, fun, num=1, add=None):
621
+ """Bind fun to mouse-button-release event on turtle.
622
+ fun must be a function with two arguments, the coordinates
623
+ of the point on the canvas where mouse button is released.
624
+ num, the number of the mouse-button defaults to 1
625
+
626
+ If a turtle is clicked, first _onclick-event will be performed,
627
+ then _onscreensclick-event.
628
+ """
629
+ if fun is None:
630
+ self.cv.tag_unbind(item, "<Button%s-ButtonRelease>" % num)
631
+ else:
632
+ def eventfun(event):
633
+ x, y = (self.cv.canvasx(event.x)/self.xscale,
634
+ -self.cv.canvasy(event.y)/self.yscale)
635
+ fun(x, y)
636
+ self.cv.tag_bind(item, "<Button%s-ButtonRelease>" % num,
637
+ eventfun, add)
638
+
639
+ def _ondrag(self, item, fun, num=1, add=None):
640
+ """Bind fun to mouse-move-event (with pressed mouse button) on turtle.
641
+ fun must be a function with two arguments, the coordinates of the
642
+ actual mouse position on the canvas.
643
+ num, the number of the mouse-button defaults to 1
644
+
645
+ Every sequence of mouse-move-events on a turtle is preceded by a
646
+ mouse-click event on that turtle.
647
+ """
648
+ if fun is None:
649
+ self.cv.tag_unbind(item, "<Button%s-Motion>" % num)
650
+ else:
651
+ def eventfun(event):
652
+ try:
653
+ x, y = (self.cv.canvasx(event.x)/self.xscale,
654
+ -self.cv.canvasy(event.y)/self.yscale)
655
+ fun(x, y)
656
+ except:
657
+ pass
658
+ self.cv.tag_bind(item, "<Button%s-Motion>" % num, eventfun, add)
659
+
660
+ def _onscreenclick(self, fun, num=1, add=None):
661
+ """Bind fun to mouse-click event on canvas.
662
+ fun must be a function with two arguments, the coordinates
663
+ of the clicked point on the canvas.
664
+ num, the number of the mouse-button defaults to 1
665
+
666
+ If a turtle is clicked, first _onclick-event will be performed,
667
+ then _onscreensclick-event.
668
+ """
669
+ if fun is None:
670
+ self.cv.unbind("<Button-%s>" % num)
671
+ else:
672
+ def eventfun(event):
673
+ x, y = (self.cv.canvasx(event.x)/self.xscale,
674
+ -self.cv.canvasy(event.y)/self.yscale)
675
+ fun(x, y)
676
+ self.cv.bind("<Button-%s>" % num, eventfun, add)
677
+
678
+ def _onkeyrelease(self, fun, key):
679
+ """Bind fun to key-release event of key.
680
+ Canvas must have focus. See method listen
681
+ """
682
+ if fun is None:
683
+ self.cv.unbind("<KeyRelease-%s>" % key, None)
684
+ else:
685
+ def eventfun(event):
686
+ fun()
687
+ self.cv.bind("<KeyRelease-%s>" % key, eventfun)
688
+
689
+ def _onkeypress(self, fun, key=None):
690
+ """If key is given, bind fun to key-press event of key.
691
+ Otherwise bind fun to any key-press.
692
+ Canvas must have focus. See method listen.
693
+ """
694
+ if fun is None:
695
+ if key is None:
696
+ self.cv.unbind("<KeyPress>", None)
697
+ else:
698
+ self.cv.unbind("<KeyPress-%s>" % key, None)
699
+ else:
700
+ def eventfun(event):
701
+ fun()
702
+ if key is None:
703
+ self.cv.bind("<KeyPress>", eventfun)
704
+ else:
705
+ self.cv.bind("<KeyPress-%s>" % key, eventfun)
706
+
707
+ def _listen(self):
708
+ """Set focus on canvas (in order to collect key-events)
709
+ """
710
+ self.cv.focus_force()
711
+
712
+ def _ontimer(self, fun, t):
713
+ """Install a timer, which calls fun after t milliseconds.
714
+ """
715
+ if t == 0:
716
+ self.cv.after_idle(fun)
717
+ else:
718
+ self.cv.after(t, fun)
719
+
720
+ def _createimage(self, image):
721
+ """Create and return image item on canvas.
722
+ """
723
+ return self.cv.create_image(0, 0, image=image)
724
+
725
+ def _drawimage(self, item, pos, image):
726
+ """Configure image item as to draw image object
727
+ at position (x,y) on canvas)
728
+ """
729
+ x, y = pos
730
+ self.cv.coords(item, (x * self.xscale, -y * self.yscale))
731
+ self.cv.itemconfig(item, image=image)
732
+
733
+ def _setbgpic(self, item, image):
734
+ """Configure image item as to draw image object
735
+ at center of canvas. Set item to the first item
736
+ in the displaylist, so it will be drawn below
737
+ any other item ."""
738
+ self.cv.itemconfig(item, image=image)
739
+ self.cv.tag_lower(item)
740
+
741
+ def _type(self, item):
742
+ """Return 'line' or 'polygon' or 'image' depending on
743
+ type of item.
744
+ """
745
+ return self.cv.type(item)
746
+
747
+ def _pointlist(self, item):
748
+ """returns list of coordinate-pairs of points of item
749
+ Example (for insiders):
750
+ >>> from turtle import *
751
+ >>> getscreen()._pointlist(getturtle().turtle._item)
752
+ [(0.0, 9.9999999999999982), (0.0, -9.9999999999999982),
753
+ (9.9999999999999982, 0.0)]
754
+ >>> """
755
+ cl = self.cv.coords(item)
756
+ pl = [(cl[i], -cl[i+1]) for i in range(0, len(cl), 2)]
757
+ return pl
758
+
759
+ def _setscrollregion(self, srx1, sry1, srx2, sry2):
760
+ self.cv.config(scrollregion=(srx1, sry1, srx2, sry2))
761
+
762
+ def _rescale(self, xscalefactor, yscalefactor):
763
+ items = self.cv.find_all()
764
+ for item in items:
765
+ coordinates = list(self.cv.coords(item))
766
+ newcoordlist = []
767
+ while coordinates:
768
+ x, y = coordinates[:2]
769
+ newcoordlist.append(x * xscalefactor)
770
+ newcoordlist.append(y * yscalefactor)
771
+ coordinates = coordinates[2:]
772
+ self.cv.coords(item, *newcoordlist)
773
+
774
+ def _resize(self, canvwidth=None, canvheight=None, bg=None):
775
+ """Resize the canvas the turtles are drawing on. Does
776
+ not alter the drawing window.
777
+ """
778
+ # needs amendment
779
+ if not isinstance(self.cv, ScrolledCanvas):
780
+ return self.canvwidth, self.canvheight
781
+ if canvwidth is canvheight is bg is None:
782
+ return self.cv.canvwidth, self.cv.canvheight
783
+ if canvwidth is not None:
784
+ self.canvwidth = canvwidth
785
+ if canvheight is not None:
786
+ self.canvheight = canvheight
787
+ self.cv.reset(canvwidth, canvheight, bg)
788
+
789
+ def _window_size(self):
790
+ """ Return the width and height of the turtle window.
791
+ """
792
+ width = self.cv.winfo_width()
793
+ if width <= 1: # the window isn't managed by a geometry manager
794
+ width = self.cv['width']
795
+ height = self.cv.winfo_height()
796
+ if height <= 1: # the window isn't managed by a geometry manager
797
+ height = self.cv['height']
798
+ return width, height
799
+
800
+ def mainloop(self):
801
+ """Starts event loop - calling Tkinter's mainloop function.
802
+
803
+ No argument.
804
+
805
+ Must be last statement in a turtle graphics program.
806
+ Must NOT be used if a script is run from within IDLE in -n mode
807
+ (No subprocess) - for interactive use of turtle graphics.
808
+
809
+ Example (for a TurtleScreen instance named screen):
810
+ >>> screen.mainloop()
811
+
812
+ """
813
+ TK.mainloop()
814
+
815
+ def textinput(self, title, prompt):
816
+ """Pop up a dialog window for input of a string.
817
+
818
+ Arguments: title is the title of the dialog window,
819
+ prompt is a text mostly describing what information to input.
820
+
821
+ Return the string input
822
+ If the dialog is canceled, return None.
823
+
824
+ Example (for a TurtleScreen instance named screen):
825
+ >>> screen.textinput("NIM", "Name of first player:")
826
+
827
+ """
828
+ return simpledialog.askstring(title, prompt)
829
+
830
+ def numinput(self, title, prompt, default=None, minval=None, maxval=None):
831
+ """Pop up a dialog window for input of a number.
832
+
833
+ Arguments: title is the title of the dialog window,
834
+ prompt is a text mostly describing what numerical information to input.
835
+ default: default value
836
+ minval: minimum value for imput
837
+ maxval: maximum value for input
838
+
839
+ The number input must be in the range minval .. maxval if these are
840
+ given. If not, a hint is issued and the dialog remains open for
841
+ correction. Return the number input.
842
+ If the dialog is canceled, return None.
843
+
844
+ Example (for a TurtleScreen instance named screen):
845
+ >>> screen.numinput("Poker", "Your stakes:", 1000, minval=10, maxval=10000)
846
+
847
+ """
848
+ return simpledialog.askfloat(title, prompt, initialvalue=default,
849
+ minvalue=minval, maxvalue=maxval)
850
+
851
+
852
+ ##############################################################################
853
+ ### End of Tkinter - interface ###
854
+ ##############################################################################
855
+
856
+
857
+ class Terminator (Exception):
858
+ """Will be raised in TurtleScreen.update, if _RUNNING becomes False.
859
+
860
+ This stops execution of a turtle graphics script.
861
+ Main purpose: use in the Demo-Viewer turtle.Demo.py.
862
+ """
863
+ pass
864
+
865
+
866
+ class TurtleGraphicsError(Exception):
867
+ """Some TurtleGraphics Error
868
+ """
869
+
870
+
871
+ class Shape(object):
872
+ """Data structure modeling shapes.
873
+
874
+ attribute _type is one of "polygon", "image", "compound"
875
+ attribute _data is - depending on _type a poygon-tuple,
876
+ an image or a list constructed using the addcomponent method.
877
+ """
878
+ def __init__(self, type_, data=None):
879
+ self._type = type_
880
+ if type_ == "polygon":
881
+ if isinstance(data, list):
882
+ data = tuple(data)
883
+ elif type_ == "image":
884
+ if isinstance(data, str):
885
+ if data.lower().endswith(".gif") and isfile(data):
886
+ data = TurtleScreen._image(data)
887
+ # else data assumed to be Photoimage
888
+ elif type_ == "compound":
889
+ data = []
890
+ else:
891
+ raise TurtleGraphicsError("There is no shape type %s" % type_)
892
+ self._data = data
893
+
894
+ def addcomponent(self, poly, fill, outline=None):
895
+ """Add component to a shape of type compound.
896
+
897
+ Arguments: poly is a polygon, i. e. a tuple of number pairs.
898
+ fill is the fillcolor of the component,
899
+ outline is the outline color of the component.
900
+
901
+ call (for a Shapeobject namend s):
902
+ -- s.addcomponent(((0,0), (10,10), (-10,10)), "red", "blue")
903
+
904
+ Example:
905
+ >>> poly = ((0,0),(10,-5),(0,10),(-10,-5))
906
+ >>> s = Shape("compound")
907
+ >>> s.addcomponent(poly, "red", "blue")
908
+ >>> # .. add more components and then use register_shape()
909
+ """
910
+ if self._type != "compound":
911
+ raise TurtleGraphicsError("Cannot add component to %s Shape"
912
+ % self._type)
913
+ if outline is None:
914
+ outline = fill
915
+ self._data.append([poly, fill, outline])
916
+
917
+
918
+ class Tbuffer(object):
919
+ """Ring buffer used as undobuffer for RawTurtle objects."""
920
+ def __init__(self, bufsize=10):
921
+ self.bufsize = bufsize
922
+ self.buffer = [[None]] * bufsize
923
+ self.ptr = -1
924
+ self.cumulate = False
925
+ def reset(self, bufsize=None):
926
+ if bufsize is None:
927
+ for i in range(self.bufsize):
928
+ self.buffer[i] = [None]
929
+ else:
930
+ self.bufsize = bufsize
931
+ self.buffer = [[None]] * bufsize
932
+ self.ptr = -1
933
+ def push(self, item):
934
+ if self.bufsize > 0:
935
+ if not self.cumulate:
936
+ self.ptr = (self.ptr + 1) % self.bufsize
937
+ self.buffer[self.ptr] = item
938
+ else:
939
+ self.buffer[self.ptr].append(item)
940
+ def pop(self):
941
+ if self.bufsize > 0:
942
+ item = self.buffer[self.ptr]
943
+ if item is None:
944
+ return None
945
+ else:
946
+ self.buffer[self.ptr] = [None]
947
+ self.ptr = (self.ptr - 1) % self.bufsize
948
+ return (item)
949
+ def nr_of_items(self):
950
+ return self.bufsize - self.buffer.count([None])
951
+ def __repr__(self):
952
+ return str(self.buffer) + " " + str(self.ptr)
953
+
954
+
955
+
956
+ class TurtleScreen(TurtleScreenBase):
957
+ """Provides screen oriented methods like setbg etc.
958
+
959
+ Only relies upon the methods of TurtleScreenBase and NOT
960
+ upon components of the underlying graphics toolkit -
961
+ which is Tkinter in this case.
962
+ """
963
+ _RUNNING = True
964
+
965
+ def __init__(self, cv, mode=_CFG["mode"],
966
+ colormode=_CFG["colormode"], delay=_CFG["delay"]):
967
+ self._shapes = {
968
+ "arrow" : Shape("polygon", ((-10,0), (10,0), (0,10))),
969
+ "turtle" : Shape("polygon", ((0,16), (-2,14), (-1,10), (-4,7),
970
+ (-7,9), (-9,8), (-6,5), (-7,1), (-5,-3), (-8,-6),
971
+ (-6,-8), (-4,-5), (0,-7), (4,-5), (6,-8), (8,-6),
972
+ (5,-3), (7,1), (6,5), (9,8), (7,9), (4,7), (1,10),
973
+ (2,14))),
974
+ "circle" : Shape("polygon", ((10,0), (9.51,3.09), (8.09,5.88),
975
+ (5.88,8.09), (3.09,9.51), (0,10), (-3.09,9.51),
976
+ (-5.88,8.09), (-8.09,5.88), (-9.51,3.09), (-10,0),
977
+ (-9.51,-3.09), (-8.09,-5.88), (-5.88,-8.09),
978
+ (-3.09,-9.51), (-0.00,-10.00), (3.09,-9.51),
979
+ (5.88,-8.09), (8.09,-5.88), (9.51,-3.09))),
980
+ "square" : Shape("polygon", ((10,-10), (10,10), (-10,10),
981
+ (-10,-10))),
982
+ "triangle" : Shape("polygon", ((10,-5.77), (0,11.55),
983
+ (-10,-5.77))),
984
+ "classic": Shape("polygon", ((0,0),(-5,-9),(0,-7),(5,-9))),
985
+ "blank" : Shape("image", self._blankimage())
986
+ }
987
+
988
+ self._bgpics = {"nopic" : ""}
989
+
990
+ TurtleScreenBase.__init__(self, cv)
991
+ self._mode = mode
992
+ self._delayvalue = delay
993
+ self._colormode = _CFG["colormode"]
994
+ self._keys = []
995
+ self.clear()
996
+ if sys.platform == 'darwin':
997
+ # Force Turtle window to the front on OS X. This is needed because
998
+ # the Turtle window will show behind the Terminal window when you
999
+ # start the demo from the command line.
1000
+ rootwindow = cv.winfo_toplevel()
1001
+ rootwindow.call('wm', 'attributes', '.', '-topmost', '1')
1002
+ rootwindow.call('wm', 'attributes', '.', '-topmost', '0')
1003
+
1004
+ def clear(self):
1005
+ """Delete all drawings and all turtles from the TurtleScreen.
1006
+
1007
+ No argument.
1008
+
1009
+ Reset empty TurtleScreen to its initial state: white background,
1010
+ no backgroundimage, no eventbindings and tracing on.
1011
+
1012
+ Example (for a TurtleScreen instance named screen):
1013
+ >>> screen.clear()
1014
+
1015
+ Note: this method is not available as function.
1016
+ """
1017
+ self._delayvalue = _CFG["delay"]
1018
+ self._colormode = _CFG["colormode"]
1019
+ self._delete("all")
1020
+ self._bgpic = self._createimage("")
1021
+ self._bgpicname = "nopic"
1022
+ self._tracing = 1
1023
+ self._updatecounter = 0
1024
+ self._turtles = []
1025
+ self.bgcolor("white")
1026
+ for btn in 1, 2, 3:
1027
+ self.onclick(None, btn)
1028
+ self.onkeypress(None)
1029
+ for key in self._keys[:]:
1030
+ self.onkey(None, key)
1031
+ self.onkeypress(None, key)
1032
+ Turtle._pen = None
1033
+
1034
+ def mode(self, mode=None):
1035
+ """Set turtle-mode ('standard', 'logo' or 'world') and perform reset.
1036
+
1037
+ Optional argument:
1038
+ mode -- on of the strings 'standard', 'logo' or 'world'
1039
+
1040
+ Mode 'standard' is compatible with turtle.py.
1041
+ Mode 'logo' is compatible with most Logo-Turtle-Graphics.
1042
+ Mode 'world' uses userdefined 'worldcoordinates'. *Attention*: in
1043
+ this mode angles appear distorted if x/y unit-ratio doesn't equal 1.
1044
+ If mode is not given, return the current mode.
1045
+
1046
+ Mode Initial turtle heading positive angles
1047
+ ------------|-------------------------|-------------------
1048
+ 'standard' to the right (east) counterclockwise
1049
+ 'logo' upward (north) clockwise
1050
+
1051
+ Examples:
1052
+ >>> mode('logo') # resets turtle heading to north
1053
+ >>> mode()
1054
+ 'logo'
1055
+ """
1056
+ if mode is None:
1057
+ return self._mode
1058
+ mode = mode.lower()
1059
+ if mode not in ["standard", "logo", "world"]:
1060
+ raise TurtleGraphicsError("No turtle-graphics-mode %s" % mode)
1061
+ self._mode = mode
1062
+ if mode in ["standard", "logo"]:
1063
+ self._setscrollregion(-self.canvwidth//2, -self.canvheight//2,
1064
+ self.canvwidth//2, self.canvheight//2)
1065
+ self.xscale = self.yscale = 1.0
1066
+ self.reset()
1067
+
1068
+ def setworldcoordinates(self, llx, lly, urx, ury):
1069
+ """Set up a user defined coordinate-system.
1070
+
1071
+ Arguments:
1072
+ llx -- a number, x-coordinate of lower left corner of canvas
1073
+ lly -- a number, y-coordinate of lower left corner of canvas
1074
+ urx -- a number, x-coordinate of upper right corner of canvas
1075
+ ury -- a number, y-coordinate of upper right corner of canvas
1076
+
1077
+ Set up user coodinat-system and switch to mode 'world' if necessary.
1078
+ This performs a screen.reset. If mode 'world' is already active,
1079
+ all drawings are redrawn according to the new coordinates.
1080
+
1081
+ But ATTENTION: in user-defined coordinatesystems angles may appear
1082
+ distorted. (see Screen.mode())
1083
+
1084
+ Example (for a TurtleScreen instance named screen):
1085
+ >>> screen.setworldcoordinates(-10,-0.5,50,1.5)
1086
+ >>> for _ in range(36):
1087
+ ... left(10)
1088
+ ... forward(0.5)
1089
+ """
1090
+ if self.mode() != "world":
1091
+ self.mode("world")
1092
+ xspan = float(urx - llx)
1093
+ yspan = float(ury - lly)
1094
+ wx, wy = self._window_size()
1095
+ self.screensize(wx-20, wy-20)
1096
+ oldxscale, oldyscale = self.xscale, self.yscale
1097
+ self.xscale = self.canvwidth / xspan
1098
+ self.yscale = self.canvheight / yspan
1099
+ srx1 = llx * self.xscale
1100
+ sry1 = -ury * self.yscale
1101
+ srx2 = self.canvwidth + srx1
1102
+ sry2 = self.canvheight + sry1
1103
+ self._setscrollregion(srx1, sry1, srx2, sry2)
1104
+ self._rescale(self.xscale/oldxscale, self.yscale/oldyscale)
1105
+ self.update()
1106
+
1107
+ def register_shape(self, name, shape=None):
1108
+ """Adds a turtle shape to TurtleScreen's shapelist.
1109
+
1110
+ Arguments:
1111
+ (1) name is the name of a gif-file and shape is None.
1112
+ Installs the corresponding image shape.
1113
+ !! Image-shapes DO NOT rotate when turning the turtle,
1114
+ !! so they do not display the heading of the turtle!
1115
+ (2) name is an arbitrary string and shape is a tuple
1116
+ of pairs of coordinates. Installs the corresponding
1117
+ polygon shape
1118
+ (3) name is an arbitrary string and shape is a
1119
+ (compound) Shape object. Installs the corresponding
1120
+ compound shape.
1121
+ To use a shape, you have to issue the command shape(shapename).
1122
+
1123
+ call: register_shape("turtle.gif")
1124
+ --or: register_shape("tri", ((0,0), (10,10), (-10,10)))
1125
+
1126
+ Example (for a TurtleScreen instance named screen):
1127
+ >>> screen.register_shape("triangle", ((5,-3),(0,5),(-5,-3)))
1128
+
1129
+ """
1130
+ if shape is None:
1131
+ # image
1132
+ if name.lower().endswith(".gif"):
1133
+ shape = Shape("image", self._image(name))
1134
+ else:
1135
+ raise TurtleGraphicsError("Bad arguments for register_shape.\n"
1136
+ + "Use help(register_shape)" )
1137
+ elif isinstance(shape, tuple):
1138
+ shape = Shape("polygon", shape)
1139
+ ## else shape assumed to be Shape-instance
1140
+ self._shapes[name] = shape
1141
+
1142
+ def _colorstr(self, color):
1143
+ """Return color string corresponding to args.
1144
+
1145
+ Argument may be a string or a tuple of three
1146
+ numbers corresponding to actual colormode,
1147
+ i.e. in the range 0<=n<=colormode.
1148
+
1149
+ If the argument doesn't represent a color,
1150
+ an error is raised.
1151
+ """
1152
+ if len(color) == 1:
1153
+ color = color[0]
1154
+ if isinstance(color, str):
1155
+ if self._iscolorstring(color) or color == "":
1156
+ return color
1157
+ else:
1158
+ raise TurtleGraphicsError("bad color string: %s" % str(color))
1159
+ try:
1160
+ r, g, b = color
1161
+ except:
1162
+ raise TurtleGraphicsError("bad color arguments: %s" % str(color))
1163
+ if self._colormode == 1.0:
1164
+ r, g, b = [round(255.0*x) for x in (r, g, b)]
1165
+ if not ((0 <= r <= 255) and (0 <= g <= 255) and (0 <= b <= 255)):
1166
+ raise TurtleGraphicsError("bad color sequence: %s" % str(color))
1167
+ return "#%02x%02x%02x" % (r, g, b)
1168
+
1169
+ def _color(self, cstr):
1170
+ if not cstr.startswith("#"):
1171
+ return cstr
1172
+ if len(cstr) == 7:
1173
+ cl = [int(cstr[i:i+2], 16) for i in (1, 3, 5)]
1174
+ elif len(cstr) == 4:
1175
+ cl = [16*int(cstr[h], 16) for h in cstr[1:]]
1176
+ else:
1177
+ raise TurtleGraphicsError("bad colorstring: %s" % cstr)
1178
+ return tuple([c * self._colormode/255 for c in cl])
1179
+
1180
+ def colormode(self, cmode=None):
1181
+ """Return the colormode or set it to 1.0 or 255.
1182
+
1183
+ Optional argument:
1184
+ cmode -- one of the values 1.0 or 255
1185
+
1186
+ r, g, b values of colortriples have to be in range 0..cmode.
1187
+
1188
+ Example (for a TurtleScreen instance named screen):
1189
+ >>> screen.colormode()
1190
+ 1.0
1191
+ >>> screen.colormode(255)
1192
+ >>> pencolor(240,160,80)
1193
+ """
1194
+ if cmode is None:
1195
+ return self._colormode
1196
+ if cmode == 1.0:
1197
+ self._colormode = float(cmode)
1198
+ elif cmode == 255:
1199
+ self._colormode = int(cmode)
1200
+
1201
+ def reset(self):
1202
+ """Reset all Turtles on the Screen to their initial state.
1203
+
1204
+ No argument.
1205
+
1206
+ Example (for a TurtleScreen instance named screen):
1207
+ >>> screen.reset()
1208
+ """
1209
+ for turtle in self._turtles:
1210
+ turtle._setmode(self._mode)
1211
+ turtle.reset()
1212
+
1213
+ def turtles(self):
1214
+ """Return the list of turtles on the screen.
1215
+
1216
+ Example (for a TurtleScreen instance named screen):
1217
+ >>> screen.turtles()
1218
+ [<turtle.Turtle object at 0x00E11FB0>]
1219
+ """
1220
+ return self._turtles
1221
+
1222
+ def bgcolor(self, *args):
1223
+ """Set or return backgroundcolor of the TurtleScreen.
1224
+
1225
+ Arguments (if given): a color string or three numbers
1226
+ in the range 0..colormode or a 3-tuple of such numbers.
1227
+
1228
+ Example (for a TurtleScreen instance named screen):
1229
+ >>> screen.bgcolor("orange")
1230
+ >>> screen.bgcolor()
1231
+ 'orange'
1232
+ >>> screen.bgcolor(0.5,0,0.5)
1233
+ >>> screen.bgcolor()
1234
+ '#800080'
1235
+ """
1236
+ if args:
1237
+ color = self._colorstr(args)
1238
+ else:
1239
+ color = None
1240
+ color = self._bgcolor(color)
1241
+ if color is not None:
1242
+ color = self._color(color)
1243
+ return color
1244
+
1245
+ def tracer(self, n=None, delay=None):
1246
+ """Turns turtle animation on/off and set delay for update drawings.
1247
+
1248
+ Optional arguments:
1249
+ n -- nonnegative integer
1250
+ delay -- nonnegative integer
1251
+
1252
+ If n is given, only each n-th regular screen update is really performed.
1253
+ (Can be used to accelerate the drawing of complex graphics.)
1254
+ Second arguments sets delay value (see RawTurtle.delay())
1255
+
1256
+ Example (for a TurtleScreen instance named screen):
1257
+ >>> screen.tracer(8, 25)
1258
+ >>> dist = 2
1259
+ >>> for i in range(200):
1260
+ ... fd(dist)
1261
+ ... rt(90)
1262
+ ... dist += 2
1263
+ """
1264
+ if n is None:
1265
+ return self._tracing
1266
+ self._tracing = int(n)
1267
+ self._updatecounter = 0
1268
+ if delay is not None:
1269
+ self._delayvalue = int(delay)
1270
+ if self._tracing:
1271
+ self.update()
1272
+
1273
+ def delay(self, delay=None):
1274
+ """ Return or set the drawing delay in milliseconds.
1275
+
1276
+ Optional argument:
1277
+ delay -- positive integer
1278
+
1279
+ Example (for a TurtleScreen instance named screen):
1280
+ >>> screen.delay(15)
1281
+ >>> screen.delay()
1282
+ 15
1283
+ """
1284
+ if delay is None:
1285
+ return self._delayvalue
1286
+ self._delayvalue = int(delay)
1287
+
1288
+ def _incrementudc(self):
1289
+ """Increment update counter."""
1290
+ if not TurtleScreen._RUNNING:
1291
+ TurtleScreen._RUNNNING = True
1292
+ raise Terminator
1293
+ if self._tracing > 0:
1294
+ self._updatecounter += 1
1295
+ self._updatecounter %= self._tracing
1296
+
1297
+ def update(self):
1298
+ """Perform a TurtleScreen update.
1299
+ """
1300
+ tracing = self._tracing
1301
+ self._tracing = True
1302
+ for t in self.turtles():
1303
+ t._update_data()
1304
+ t._drawturtle()
1305
+ self._tracing = tracing
1306
+ self._update()
1307
+
1308
+ def window_width(self):
1309
+ """ Return the width of the turtle window.
1310
+
1311
+ Example (for a TurtleScreen instance named screen):
1312
+ >>> screen.window_width()
1313
+ 640
1314
+ """
1315
+ return self._window_size()[0]
1316
+
1317
+ def window_height(self):
1318
+ """ Return the height of the turtle window.
1319
+
1320
+ Example (for a TurtleScreen instance named screen):
1321
+ >>> screen.window_height()
1322
+ 480
1323
+ """
1324
+ return self._window_size()[1]
1325
+
1326
+ def getcanvas(self):
1327
+ """Return the Canvas of this TurtleScreen.
1328
+
1329
+ No argument.
1330
+
1331
+ Example (for a Screen instance named screen):
1332
+ >>> cv = screen.getcanvas()
1333
+ >>> cv
1334
+ <turtle.ScrolledCanvas instance at 0x010742D8>
1335
+ """
1336
+ return self.cv
1337
+
1338
+ def getshapes(self):
1339
+ """Return a list of names of all currently available turtle shapes.
1340
+
1341
+ No argument.
1342
+
1343
+ Example (for a TurtleScreen instance named screen):
1344
+ >>> screen.getshapes()
1345
+ ['arrow', 'blank', 'circle', ... , 'turtle']
1346
+ """
1347
+ return sorted(self._shapes.keys())
1348
+
1349
+ def onclick(self, fun, btn=1, add=None):
1350
+ """Bind fun to mouse-click event on canvas.
1351
+
1352
+ Arguments:
1353
+ fun -- a function with two arguments, the coordinates of the
1354
+ clicked point on the canvas.
1355
+ num -- the number of the mouse-button, defaults to 1
1356
+
1357
+ Example (for a TurtleScreen instance named screen)
1358
+
1359
+ >>> screen.onclick(goto)
1360
+ >>> # Subsequently clicking into the TurtleScreen will
1361
+ >>> # make the turtle move to the clicked point.
1362
+ >>> screen.onclick(None)
1363
+ """
1364
+ self._onscreenclick(fun, btn, add)
1365
+
1366
+ def onkey(self, fun, key):
1367
+ """Bind fun to key-release event of key.
1368
+
1369
+ Arguments:
1370
+ fun -- a function with no arguments
1371
+ key -- a string: key (e.g. "a") or key-symbol (e.g. "space")
1372
+
1373
+ In order to be able to register key-events, TurtleScreen
1374
+ must have focus. (See method listen.)
1375
+
1376
+ Example (for a TurtleScreen instance named screen):
1377
+
1378
+ >>> def f():
1379
+ ... fd(50)
1380
+ ... lt(60)
1381
+ ...
1382
+ >>> screen.onkey(f, "Up")
1383
+ >>> screen.listen()
1384
+
1385
+ Subsequently the turtle can be moved by repeatedly pressing
1386
+ the up-arrow key, consequently drawing a hexagon
1387
+
1388
+ """
1389
+ if fun is None:
1390
+ if key in self._keys:
1391
+ self._keys.remove(key)
1392
+ elif key not in self._keys:
1393
+ self._keys.append(key)
1394
+ self._onkeyrelease(fun, key)
1395
+
1396
+ def onkeypress(self, fun, key=None):
1397
+ """Bind fun to key-press event of key if key is given,
1398
+ or to any key-press-event if no key is given.
1399
+
1400
+ Arguments:
1401
+ fun -- a function with no arguments
1402
+ key -- a string: key (e.g. "a") or key-symbol (e.g. "space")
1403
+
1404
+ In order to be able to register key-events, TurtleScreen
1405
+ must have focus. (See method listen.)
1406
+
1407
+ Example (for a TurtleScreen instance named screen
1408
+ and a Turtle instance named turtle):
1409
+
1410
+ >>> def f():
1411
+ ... fd(50)
1412
+ ... lt(60)
1413
+ ...
1414
+ >>> screen.onkeypress(f, "Up")
1415
+ >>> screen.listen()
1416
+
1417
+ Subsequently the turtle can be moved by repeatedly pressing
1418
+ the up-arrow key, or by keeping pressed the up-arrow key.
1419
+ consequently drawing a hexagon.
1420
+ """
1421
+ if fun is None:
1422
+ if key in self._keys:
1423
+ self._keys.remove(key)
1424
+ elif key is not None and key not in self._keys:
1425
+ self._keys.append(key)
1426
+ self._onkeypress(fun, key)
1427
+
1428
+ def listen(self, xdummy=None, ydummy=None):
1429
+ """Set focus on TurtleScreen (in order to collect key-events)
1430
+
1431
+ No arguments.
1432
+ Dummy arguments are provided in order
1433
+ to be able to pass listen to the onclick method.
1434
+
1435
+ Example (for a TurtleScreen instance named screen):
1436
+ >>> screen.listen()
1437
+ """
1438
+ self._listen()
1439
+
1440
+ def ontimer(self, fun, t=0):
1441
+ """Install a timer, which calls fun after t milliseconds.
1442
+
1443
+ Arguments:
1444
+ fun -- a function with no arguments.
1445
+ t -- a number >= 0
1446
+
1447
+ Example (for a TurtleScreen instance named screen):
1448
+
1449
+ >>> running = True
1450
+ >>> def f():
1451
+ ... if running:
1452
+ ... fd(50)
1453
+ ... lt(60)
1454
+ ... screen.ontimer(f, 250)
1455
+ ...
1456
+ >>> f() # makes the turtle marching around
1457
+ >>> running = False
1458
+ """
1459
+ self._ontimer(fun, t)
1460
+
1461
+ def bgpic(self, picname=None):
1462
+ """Set background image or return name of current backgroundimage.
1463
+
1464
+ Optional argument:
1465
+ picname -- a string, name of a gif-file or "nopic".
1466
+
1467
+ If picname is a filename, set the corresponding image as background.
1468
+ If picname is "nopic", delete backgroundimage, if present.
1469
+ If picname is None, return the filename of the current backgroundimage.
1470
+
1471
+ Example (for a TurtleScreen instance named screen):
1472
+ >>> screen.bgpic()
1473
+ 'nopic'
1474
+ >>> screen.bgpic("landscape.gif")
1475
+ >>> screen.bgpic()
1476
+ 'landscape.gif'
1477
+ """
1478
+ if picname is None:
1479
+ return self._bgpicname
1480
+ if picname not in self._bgpics:
1481
+ self._bgpics[picname] = self._image(picname)
1482
+ self._setbgpic(self._bgpic, self._bgpics[picname])
1483
+ self._bgpicname = picname
1484
+
1485
+ def screensize(self, canvwidth=None, canvheight=None, bg=None):
1486
+ """Resize the canvas the turtles are drawing on.
1487
+
1488
+ Optional arguments:
1489
+ canvwidth -- positive integer, new width of canvas in pixels
1490
+ canvheight -- positive integer, new height of canvas in pixels
1491
+ bg -- colorstring or color-tuple, new backgroundcolor
1492
+ If no arguments are given, return current (canvaswidth, canvasheight)
1493
+
1494
+ Do not alter the drawing window. To observe hidden parts of
1495
+ the canvas use the scrollbars. (Can make visible those parts
1496
+ of a drawing, which were outside the canvas before!)
1497
+
1498
+ Example (for a Turtle instance named turtle):
1499
+ >>> turtle.screensize(2000,1500)
1500
+ >>> # e.g. to search for an erroneously escaped turtle ;-)
1501
+ """
1502
+ return self._resize(canvwidth, canvheight, bg)
1503
+
1504
+ onscreenclick = onclick
1505
+ resetscreen = reset
1506
+ clearscreen = clear
1507
+ addshape = register_shape
1508
+ onkeyrelease = onkey
1509
+
1510
+ class TNavigator(object):
1511
+ """Navigation part of the RawTurtle.
1512
+ Implements methods for turtle movement.
1513
+ """
1514
+ START_ORIENTATION = {
1515
+ "standard": Vec2D(1.0, 0.0),
1516
+ "world" : Vec2D(1.0, 0.0),
1517
+ "logo" : Vec2D(0.0, 1.0) }
1518
+ DEFAULT_MODE = "standard"
1519
+ DEFAULT_ANGLEOFFSET = 0
1520
+ DEFAULT_ANGLEORIENT = 1
1521
+
1522
+ def __init__(self, mode=DEFAULT_MODE):
1523
+ self._angleOffset = self.DEFAULT_ANGLEOFFSET
1524
+ self._angleOrient = self.DEFAULT_ANGLEORIENT
1525
+ self._mode = mode
1526
+ self.undobuffer = None
1527
+ self.degrees()
1528
+ self._mode = None
1529
+ self._setmode(mode)
1530
+ TNavigator.reset(self)
1531
+
1532
+ def reset(self):
1533
+ """reset turtle to its initial values
1534
+
1535
+ Will be overwritten by parent class
1536
+ """
1537
+ self._position = Vec2D(0.0, 0.0)
1538
+ self._orient = TNavigator.START_ORIENTATION[self._mode]
1539
+
1540
+ def _setmode(self, mode=None):
1541
+ """Set turtle-mode to 'standard', 'world' or 'logo'.
1542
+ """
1543
+ if mode is None:
1544
+ return self._mode
1545
+ if mode not in ["standard", "logo", "world"]:
1546
+ return
1547
+ self._mode = mode
1548
+ if mode in ["standard", "world"]:
1549
+ self._angleOffset = 0
1550
+ self._angleOrient = 1
1551
+ else: # mode == "logo":
1552
+ self._angleOffset = self._fullcircle/4.
1553
+ self._angleOrient = -1
1554
+
1555
+ def _setDegreesPerAU(self, fullcircle):
1556
+ """Helper function for degrees() and radians()"""
1557
+ self._fullcircle = fullcircle
1558
+ self._degreesPerAU = 360/fullcircle
1559
+ if self._mode == "standard":
1560
+ self._angleOffset = 0
1561
+ else:
1562
+ self._angleOffset = fullcircle/4.
1563
+
1564
+ def degrees(self, fullcircle=360.0):
1565
+ """ Set angle measurement units to degrees.
1566
+
1567
+ Optional argument:
1568
+ fullcircle - a number
1569
+
1570
+ Set angle measurement units, i. e. set number
1571
+ of 'degrees' for a full circle. Dafault value is
1572
+ 360 degrees.
1573
+
1574
+ Example (for a Turtle instance named turtle):
1575
+ >>> turtle.left(90)
1576
+ >>> turtle.heading()
1577
+ 90
1578
+
1579
+ Change angle measurement unit to grad (also known as gon,
1580
+ grade, or gradian and equals 1/100-th of the right angle.)
1581
+ >>> turtle.degrees(400.0)
1582
+ >>> turtle.heading()
1583
+ 100
1584
+
1585
+ """
1586
+ self._setDegreesPerAU(fullcircle)
1587
+
1588
+ def radians(self):
1589
+ """ Set the angle measurement units to radians.
1590
+
1591
+ No arguments.
1592
+
1593
+ Example (for a Turtle instance named turtle):
1594
+ >>> turtle.heading()
1595
+ 90
1596
+ >>> turtle.radians()
1597
+ >>> turtle.heading()
1598
+ 1.5707963267948966
1599
+ """
1600
+ self._setDegreesPerAU(2*math.pi)
1601
+
1602
+ def _go(self, distance):
1603
+ """move turtle forward by specified distance"""
1604
+ ende = self._position + self._orient * distance
1605
+ self._goto(ende)
1606
+
1607
+ def _rotate(self, angle):
1608
+ """Turn turtle counterclockwise by specified angle if angle > 0."""
1609
+ angle *= self._degreesPerAU
1610
+ self._orient = self._orient.rotate(angle)
1611
+
1612
+ def _goto(self, end):
1613
+ """move turtle to position end."""
1614
+ self._position = end
1615
+
1616
+ def forward(self, distance):
1617
+ """Move the turtle forward by the specified distance.
1618
+
1619
+ Aliases: forward | fd
1620
+
1621
+ Argument:
1622
+ distance -- a number (integer or float)
1623
+
1624
+ Move the turtle forward by the specified distance, in the direction
1625
+ the turtle is headed.
1626
+
1627
+ Example (for a Turtle instance named turtle):
1628
+ >>> turtle.position()
1629
+ (0.00, 0.00)
1630
+ >>> turtle.forward(25)
1631
+ >>> turtle.position()
1632
+ (25.00,0.00)
1633
+ >>> turtle.forward(-75)
1634
+ >>> turtle.position()
1635
+ (-50.00,0.00)
1636
+ """
1637
+ self._go(distance)
1638
+
1639
+ def back(self, distance):
1640
+ """Move the turtle backward by distance.
1641
+
1642
+ Aliases: back | backward | bk
1643
+
1644
+ Argument:
1645
+ distance -- a number
1646
+
1647
+ Move the turtle backward by distance ,opposite to the direction the
1648
+ turtle is headed. Do not change the turtle's heading.
1649
+
1650
+ Example (for a Turtle instance named turtle):
1651
+ >>> turtle.position()
1652
+ (0.00, 0.00)
1653
+ >>> turtle.backward(30)
1654
+ >>> turtle.position()
1655
+ (-30.00, 0.00)
1656
+ """
1657
+ self._go(-distance)
1658
+
1659
+ def right(self, angle):
1660
+ """Turn turtle right by angle units.
1661
+
1662
+ Aliases: right | rt
1663
+
1664
+ Argument:
1665
+ angle -- a number (integer or float)
1666
+
1667
+ Turn turtle right by angle units. (Units are by default degrees,
1668
+ but can be set via the degrees() and radians() functions.)
1669
+ Angle orientation depends on mode. (See this.)
1670
+
1671
+ Example (for a Turtle instance named turtle):
1672
+ >>> turtle.heading()
1673
+ 22.0
1674
+ >>> turtle.right(45)
1675
+ >>> turtle.heading()
1676
+ 337.0
1677
+ """
1678
+ self._rotate(-angle)
1679
+
1680
+ def left(self, angle):
1681
+ """Turn turtle left by angle units.
1682
+
1683
+ Aliases: left | lt
1684
+
1685
+ Argument:
1686
+ angle -- a number (integer or float)
1687
+
1688
+ Turn turtle left by angle units. (Units are by default degrees,
1689
+ but can be set via the degrees() and radians() functions.)
1690
+ Angle orientation depends on mode. (See this.)
1691
+
1692
+ Example (for a Turtle instance named turtle):
1693
+ >>> turtle.heading()
1694
+ 22.0
1695
+ >>> turtle.left(45)
1696
+ >>> turtle.heading()
1697
+ 67.0
1698
+ """
1699
+ self._rotate(angle)
1700
+
1701
+ def pos(self):
1702
+ """Return the turtle's current location (x,y), as a Vec2D-vector.
1703
+
1704
+ Aliases: pos | position
1705
+
1706
+ No arguments.
1707
+
1708
+ Example (for a Turtle instance named turtle):
1709
+ >>> turtle.pos()
1710
+ (0.00, 240.00)
1711
+ """
1712
+ return self._position
1713
+
1714
+ def xcor(self):
1715
+ """ Return the turtle's x coordinate.
1716
+
1717
+ No arguments.
1718
+
1719
+ Example (for a Turtle instance named turtle):
1720
+ >>> reset()
1721
+ >>> turtle.left(60)
1722
+ >>> turtle.forward(100)
1723
+ >>> print turtle.xcor()
1724
+ 50.0
1725
+ """
1726
+ return self._position[0]
1727
+
1728
+ def ycor(self):
1729
+ """ Return the turtle's y coordinate
1730
+ ---
1731
+ No arguments.
1732
+
1733
+ Example (for a Turtle instance named turtle):
1734
+ >>> reset()
1735
+ >>> turtle.left(60)
1736
+ >>> turtle.forward(100)
1737
+ >>> print turtle.ycor()
1738
+ 86.6025403784
1739
+ """
1740
+ return self._position[1]
1741
+
1742
+
1743
+ def goto(self, x, y=None):
1744
+ """Move turtle to an absolute position.
1745
+
1746
+ Aliases: setpos | setposition | goto:
1747
+
1748
+ Arguments:
1749
+ x -- a number or a pair/vector of numbers
1750
+ y -- a number None
1751
+
1752
+ call: goto(x, y) # two coordinates
1753
+ --or: goto((x, y)) # a pair (tuple) of coordinates
1754
+ --or: goto(vec) # e.g. as returned by pos()
1755
+
1756
+ Move turtle to an absolute position. If the pen is down,
1757
+ a line will be drawn. The turtle's orientation does not change.
1758
+
1759
+ Example (for a Turtle instance named turtle):
1760
+ >>> tp = turtle.pos()
1761
+ >>> tp
1762
+ (0.00, 0.00)
1763
+ >>> turtle.setpos(60,30)
1764
+ >>> turtle.pos()
1765
+ (60.00,30.00)
1766
+ >>> turtle.setpos((20,80))
1767
+ >>> turtle.pos()
1768
+ (20.00,80.00)
1769
+ >>> turtle.setpos(tp)
1770
+ >>> turtle.pos()
1771
+ (0.00,0.00)
1772
+ """
1773
+ if y is None:
1774
+ self._goto(Vec2D(*x))
1775
+ else:
1776
+ self._goto(Vec2D(x, y))
1777
+
1778
+ def home(self):
1779
+ """Move turtle to the origin - coordinates (0,0).
1780
+
1781
+ No arguments.
1782
+
1783
+ Move turtle to the origin - coordinates (0,0) and set its
1784
+ heading to its start-orientation (which depends on mode).
1785
+
1786
+ Example (for a Turtle instance named turtle):
1787
+ >>> turtle.home()
1788
+ """
1789
+ self.goto(0, 0)
1790
+ self.setheading(0)
1791
+
1792
+ def setx(self, x):
1793
+ """Set the turtle's first coordinate to x
1794
+
1795
+ Argument:
1796
+ x -- a number (integer or float)
1797
+
1798
+ Set the turtle's first coordinate to x, leave second coordinate
1799
+ unchanged.
1800
+
1801
+ Example (for a Turtle instance named turtle):
1802
+ >>> turtle.position()
1803
+ (0.00, 240.00)
1804
+ >>> turtle.setx(10)
1805
+ >>> turtle.position()
1806
+ (10.00, 240.00)
1807
+ """
1808
+ self._goto(Vec2D(x, self._position[1]))
1809
+
1810
+ def sety(self, y):
1811
+ """Set the turtle's second coordinate to y
1812
+
1813
+ Argument:
1814
+ y -- a number (integer or float)
1815
+
1816
+ Set the turtle's first coordinate to x, second coordinate remains
1817
+ unchanged.
1818
+
1819
+ Example (for a Turtle instance named turtle):
1820
+ >>> turtle.position()
1821
+ (0.00, 40.00)
1822
+ >>> turtle.sety(-10)
1823
+ >>> turtle.position()
1824
+ (0.00, -10.00)
1825
+ """
1826
+ self._goto(Vec2D(self._position[0], y))
1827
+
1828
+ def distance(self, x, y=None):
1829
+ """Return the distance from the turtle to (x,y) in turtle step units.
1830
+
1831
+ Arguments:
1832
+ x -- a number or a pair/vector of numbers or a turtle instance
1833
+ y -- a number None None
1834
+
1835
+ call: distance(x, y) # two coordinates
1836
+ --or: distance((x, y)) # a pair (tuple) of coordinates
1837
+ --or: distance(vec) # e.g. as returned by pos()
1838
+ --or: distance(mypen) # where mypen is another turtle
1839
+
1840
+ Example (for a Turtle instance named turtle):
1841
+ >>> turtle.pos()
1842
+ (0.00, 0.00)
1843
+ >>> turtle.distance(30,40)
1844
+ 50.0
1845
+ >>> pen = Turtle()
1846
+ >>> pen.forward(77)
1847
+ >>> turtle.distance(pen)
1848
+ 77.0
1849
+ """
1850
+ if y is not None:
1851
+ pos = Vec2D(x, y)
1852
+ if isinstance(x, Vec2D):
1853
+ pos = x
1854
+ elif isinstance(x, tuple):
1855
+ pos = Vec2D(*x)
1856
+ elif isinstance(x, TNavigator):
1857
+ pos = x._position
1858
+ return abs(pos - self._position)
1859
+
1860
+ def towards(self, x, y=None):
1861
+ """Return the angle of the line from the turtle's position to (x, y).
1862
+
1863
+ Arguments:
1864
+ x -- a number or a pair/vector of numbers or a turtle instance
1865
+ y -- a number None None
1866
+
1867
+ call: distance(x, y) # two coordinates
1868
+ --or: distance((x, y)) # a pair (tuple) of coordinates
1869
+ --or: distance(vec) # e.g. as returned by pos()
1870
+ --or: distance(mypen) # where mypen is another turtle
1871
+
1872
+ Return the angle, between the line from turtle-position to position
1873
+ specified by x, y and the turtle's start orientation. (Depends on
1874
+ modes - "standard" or "logo")
1875
+
1876
+ Example (for a Turtle instance named turtle):
1877
+ >>> turtle.pos()
1878
+ (10.00, 10.00)
1879
+ >>> turtle.towards(0,0)
1880
+ 225.0
1881
+ """
1882
+ if y is not None:
1883
+ pos = Vec2D(x, y)
1884
+ if isinstance(x, Vec2D):
1885
+ pos = x
1886
+ elif isinstance(x, tuple):
1887
+ pos = Vec2D(*x)
1888
+ elif isinstance(x, TNavigator):
1889
+ pos = x._position
1890
+ x, y = pos - self._position
1891
+ result = round(math.atan2(y, x)*180.0/math.pi, 10) % 360.0
1892
+ result /= self._degreesPerAU
1893
+ return (self._angleOffset + self._angleOrient*result) % self._fullcircle
1894
+
1895
+ def heading(self):
1896
+ """ Return the turtle's current heading.
1897
+
1898
+ No arguments.
1899
+
1900
+ Example (for a Turtle instance named turtle):
1901
+ >>> turtle.left(67)
1902
+ >>> turtle.heading()
1903
+ 67.0
1904
+ """
1905
+ x, y = self._orient
1906
+ result = round(math.atan2(y, x)*180.0/math.pi, 10) % 360.0
1907
+ result /= self._degreesPerAU
1908
+ return (self._angleOffset + self._angleOrient*result) % self._fullcircle
1909
+
1910
+ def setheading(self, to_angle):
1911
+ """Set the orientation of the turtle to to_angle.
1912
+
1913
+ Aliases: setheading | seth
1914
+
1915
+ Argument:
1916
+ to_angle -- a number (integer or float)
1917
+
1918
+ Set the orientation of the turtle to to_angle.
1919
+ Here are some common directions in degrees:
1920
+
1921
+ standard - mode: logo-mode:
1922
+ -------------------|--------------------
1923
+ 0 - east 0 - north
1924
+ 90 - north 90 - east
1925
+ 180 - west 180 - south
1926
+ 270 - south 270 - west
1927
+
1928
+ Example (for a Turtle instance named turtle):
1929
+ >>> turtle.setheading(90)
1930
+ >>> turtle.heading()
1931
+ 90
1932
+ """
1933
+ angle = (to_angle - self.heading())*self._angleOrient
1934
+ full = self._fullcircle
1935
+ angle = (angle+full/2.)%full - full/2.
1936
+ self._rotate(angle)
1937
+
1938
+ def circle(self, radius, extent = None, steps = None):
1939
+ """ Draw a circle with given radius.
1940
+
1941
+ Arguments:
1942
+ radius -- a number
1943
+ extent (optional) -- a number
1944
+ steps (optional) -- an integer
1945
+
1946
+ Draw a circle with given radius. The center is radius units left
1947
+ of the turtle; extent - an angle - determines which part of the
1948
+ circle is drawn. If extent is not given, draw the entire circle.
1949
+ If extent is not a full circle, one endpoint of the arc is the
1950
+ current pen position. Draw the arc in counterclockwise direction
1951
+ if radius is positive, otherwise in clockwise direction. Finally
1952
+ the direction of the turtle is changed by the amount of extent.
1953
+
1954
+ As the circle is approximated by an inscribed regular polygon,
1955
+ steps determines the number of steps to use. If not given,
1956
+ it will be calculated automatically. Maybe used to draw regular
1957
+ polygons.
1958
+
1959
+ call: circle(radius) # full circle
1960
+ --or: circle(radius, extent) # arc
1961
+ --or: circle(radius, extent, steps)
1962
+ --or: circle(radius, steps=6) # 6-sided polygon
1963
+
1964
+ Example (for a Turtle instance named turtle):
1965
+ >>> turtle.circle(50)
1966
+ >>> turtle.circle(120, 180) # semicircle
1967
+ """
1968
+ if self.undobuffer:
1969
+ self.undobuffer.push(["seq"])
1970
+ self.undobuffer.cumulate = True
1971
+ speed = self.speed()
1972
+ if extent is None:
1973
+ extent = self._fullcircle
1974
+ if steps is None:
1975
+ frac = abs(extent)/self._fullcircle
1976
+ steps = 1+int(min(11+abs(radius)/6.0, 59.0)*frac)
1977
+ w = 1.0 * extent / steps
1978
+ w2 = 0.5 * w
1979
+ l = 2.0 * radius * math.sin(w2*math.pi/180.0*self._degreesPerAU)
1980
+ if radius < 0:
1981
+ l, w, w2 = -l, -w, -w2
1982
+ tr = self._tracer()
1983
+ dl = self._delay()
1984
+ if speed == 0:
1985
+ self._tracer(0, 0)
1986
+ else:
1987
+ self.speed(0)
1988
+ self._rotate(w2)
1989
+ for i in range(steps):
1990
+ self.speed(speed)
1991
+ self._go(l)
1992
+ self.speed(0)
1993
+ self._rotate(w)
1994
+ self._rotate(-w2)
1995
+ if speed == 0:
1996
+ self._tracer(tr, dl)
1997
+ self.speed(speed)
1998
+ if self.undobuffer:
1999
+ self.undobuffer.cumulate = False
2000
+
2001
+ ## three dummy methods to be implemented by child class:
2002
+
2003
+ def speed(self, s=0):
2004
+ """dummy method - to be overwritten by child class"""
2005
+ def _tracer(self, a=None, b=None):
2006
+ """dummy method - to be overwritten by child class"""
2007
+ def _delay(self, n=None):
2008
+ """dummy method - to be overwritten by child class"""
2009
+
2010
+ fd = forward
2011
+ bk = back
2012
+ backward = back
2013
+ rt = right
2014
+ lt = left
2015
+ position = pos
2016
+ setpos = goto
2017
+ setposition = goto
2018
+ seth = setheading
2019
+
2020
+
2021
+ class TPen(object):
2022
+ """Drawing part of the RawTurtle.
2023
+ Implements drawing properties.
2024
+ """
2025
+ def __init__(self, resizemode=_CFG["resizemode"]):
2026
+ self._resizemode = resizemode # or "user" or "noresize"
2027
+ self.undobuffer = None
2028
+ TPen._reset(self)
2029
+
2030
+ def _reset(self, pencolor=_CFG["pencolor"],
2031
+ fillcolor=_CFG["fillcolor"]):
2032
+ self._pensize = 1
2033
+ self._shown = True
2034
+ self._pencolor = pencolor
2035
+ self._fillcolor = fillcolor
2036
+ self._drawing = True
2037
+ self._speed = 3
2038
+ self._stretchfactor = (1., 1.)
2039
+ self._shearfactor = 0.
2040
+ self._tilt = 0.
2041
+ self._shapetrafo = (1., 0., 0., 1.)
2042
+ self._outlinewidth = 1
2043
+
2044
+ def resizemode(self, rmode=None):
2045
+ """Set resizemode to one of the values: "auto", "user", "noresize".
2046
+
2047
+ (Optional) Argument:
2048
+ rmode -- one of the strings "auto", "user", "noresize"
2049
+
2050
+ Different resizemodes have the following effects:
2051
+ - "auto" adapts the appearance of the turtle
2052
+ corresponding to the value of pensize.
2053
+ - "user" adapts the appearance of the turtle according to the
2054
+ values of stretchfactor and outlinewidth (outline),
2055
+ which are set by shapesize()
2056
+ - "noresize" no adaption of the turtle's appearance takes place.
2057
+ If no argument is given, return current resizemode.
2058
+ resizemode("user") is called by a call of shapesize with arguments.
2059
+
2060
+
2061
+ Examples (for a Turtle instance named turtle):
2062
+ >>> turtle.resizemode("noresize")
2063
+ >>> turtle.resizemode()
2064
+ 'noresize'
2065
+ """
2066
+ if rmode is None:
2067
+ return self._resizemode
2068
+ rmode = rmode.lower()
2069
+ if rmode in ["auto", "user", "noresize"]:
2070
+ self.pen(resizemode=rmode)
2071
+
2072
+ def pensize(self, width=None):
2073
+ """Set or return the line thickness.
2074
+
2075
+ Aliases: pensize | width
2076
+
2077
+ Argument:
2078
+ width -- positive number
2079
+
2080
+ Set the line thickness to width or return it. If resizemode is set
2081
+ to "auto" and turtleshape is a polygon, that polygon is drawn with
2082
+ the same line thickness. If no argument is given, current pensize
2083
+ is returned.
2084
+
2085
+ Example (for a Turtle instance named turtle):
2086
+ >>> turtle.pensize()
2087
+ 1
2088
+ >>> turtle.pensize(10) # from here on lines of width 10 are drawn
2089
+ """
2090
+ if width is None:
2091
+ return self._pensize
2092
+ self.pen(pensize=width)
2093
+
2094
+
2095
+ def penup(self):
2096
+ """Pull the pen up -- no drawing when moving.
2097
+
2098
+ Aliases: penup | pu | up
2099
+
2100
+ No argument
2101
+
2102
+ Example (for a Turtle instance named turtle):
2103
+ >>> turtle.penup()
2104
+ """
2105
+ if not self._drawing:
2106
+ return
2107
+ self.pen(pendown=False)
2108
+
2109
+ def pendown(self):
2110
+ """Pull the pen down -- drawing when moving.
2111
+
2112
+ Aliases: pendown | pd | down
2113
+
2114
+ No argument.
2115
+
2116
+ Example (for a Turtle instance named turtle):
2117
+ >>> turtle.pendown()
2118
+ """
2119
+ if self._drawing:
2120
+ return
2121
+ self.pen(pendown=True)
2122
+
2123
+ def isdown(self):
2124
+ """Return True if pen is down, False if it's up.
2125
+
2126
+ No argument.
2127
+
2128
+ Example (for a Turtle instance named turtle):
2129
+ >>> turtle.penup()
2130
+ >>> turtle.isdown()
2131
+ False
2132
+ >>> turtle.pendown()
2133
+ >>> turtle.isdown()
2134
+ True
2135
+ """
2136
+ return self._drawing
2137
+
2138
+ def speed(self, speed=None):
2139
+ """ Return or set the turtle's speed.
2140
+
2141
+ Optional argument:
2142
+ speed -- an integer in the range 0..10 or a speedstring (see below)
2143
+
2144
+ Set the turtle's speed to an integer value in the range 0 .. 10.
2145
+ If no argument is given: return current speed.
2146
+
2147
+ If input is a number greater than 10 or smaller than 0.5,
2148
+ speed is set to 0.
2149
+ Speedstrings are mapped to speedvalues in the following way:
2150
+ 'fastest' : 0
2151
+ 'fast' : 10
2152
+ 'normal' : 6
2153
+ 'slow' : 3
2154
+ 'slowest' : 1
2155
+ speeds from 1 to 10 enforce increasingly faster animation of
2156
+ line drawing and turtle turning.
2157
+
2158
+ Attention:
2159
+ speed = 0 : *no* animation takes place. forward/back makes turtle jump
2160
+ and likewise left/right make the turtle turn instantly.
2161
+
2162
+ Example (for a Turtle instance named turtle):
2163
+ >>> turtle.speed(3)
2164
+ """
2165
+ speeds = {'fastest':0, 'fast':10, 'normal':6, 'slow':3, 'slowest':1 }
2166
+ if speed is None:
2167
+ return self._speed
2168
+ if speed in speeds:
2169
+ speed = speeds[speed]
2170
+ elif 0.5 < speed < 10.5:
2171
+ speed = int(round(speed))
2172
+ else:
2173
+ speed = 0
2174
+ self.pen(speed=speed)
2175
+
2176
+ def color(self, *args):
2177
+ """Return or set the pencolor and fillcolor.
2178
+
2179
+ Arguments:
2180
+ Several input formats are allowed.
2181
+ They use 0, 1, 2, or 3 arguments as follows:
2182
+
2183
+ color()
2184
+ Return the current pencolor and the current fillcolor
2185
+ as a pair of color specification strings as are returned
2186
+ by pencolor and fillcolor.
2187
+ color(colorstring), color((r,g,b)), color(r,g,b)
2188
+ inputs as in pencolor, set both, fillcolor and pencolor,
2189
+ to the given value.
2190
+ color(colorstring1, colorstring2),
2191
+ color((r1,g1,b1), (r2,g2,b2))
2192
+ equivalent to pencolor(colorstring1) and fillcolor(colorstring2)
2193
+ and analogously, if the other input format is used.
2194
+
2195
+ If turtleshape is a polygon, outline and interior of that polygon
2196
+ is drawn with the newly set colors.
2197
+ For mor info see: pencolor, fillcolor
2198
+
2199
+ Example (for a Turtle instance named turtle):
2200
+ >>> turtle.color('red', 'green')
2201
+ >>> turtle.color()
2202
+ ('red', 'green')
2203
+ >>> colormode(255)
2204
+ >>> color((40, 80, 120), (160, 200, 240))
2205
+ >>> color()
2206
+ ('#285078', '#a0c8f0')
2207
+ """
2208
+ if args:
2209
+ l = len(args)
2210
+ if l == 1:
2211
+ pcolor = fcolor = args[0]
2212
+ elif l == 2:
2213
+ pcolor, fcolor = args
2214
+ elif l == 3:
2215
+ pcolor = fcolor = args
2216
+ pcolor = self._colorstr(pcolor)
2217
+ fcolor = self._colorstr(fcolor)
2218
+ self.pen(pencolor=pcolor, fillcolor=fcolor)
2219
+ else:
2220
+ return self._color(self._pencolor), self._color(self._fillcolor)
2221
+
2222
+ def pencolor(self, *args):
2223
+ """ Return or set the pencolor.
2224
+
2225
+ Arguments:
2226
+ Four input formats are allowed:
2227
+ - pencolor()
2228
+ Return the current pencolor as color specification string,
2229
+ possibly in hex-number format (see example).
2230
+ May be used as input to another color/pencolor/fillcolor call.
2231
+ - pencolor(colorstring)
2232
+ s is a Tk color specification string, such as "red" or "yellow"
2233
+ - pencolor((r, g, b))
2234
+ *a tuple* of r, g, and b, which represent, an RGB color,
2235
+ and each of r, g, and b are in the range 0..colormode,
2236
+ where colormode is either 1.0 or 255
2237
+ - pencolor(r, g, b)
2238
+ r, g, and b represent an RGB color, and each of r, g, and b
2239
+ are in the range 0..colormode
2240
+
2241
+ If turtleshape is a polygon, the outline of that polygon is drawn
2242
+ with the newly set pencolor.
2243
+
2244
+ Example (for a Turtle instance named turtle):
2245
+ >>> turtle.pencolor('brown')
2246
+ >>> tup = (0.2, 0.8, 0.55)
2247
+ >>> turtle.pencolor(tup)
2248
+ >>> turtle.pencolor()
2249
+ '#33cc8c'
2250
+ """
2251
+ if args:
2252
+ color = self._colorstr(args)
2253
+ if color == self._pencolor:
2254
+ return
2255
+ self.pen(pencolor=color)
2256
+ else:
2257
+ return self._color(self._pencolor)
2258
+
2259
+ def fillcolor(self, *args):
2260
+ """ Return or set the fillcolor.
2261
+
2262
+ Arguments:
2263
+ Four input formats are allowed:
2264
+ - fillcolor()
2265
+ Return the current fillcolor as color specification string,
2266
+ possibly in hex-number format (see example).
2267
+ May be used as input to another color/pencolor/fillcolor call.
2268
+ - fillcolor(colorstring)
2269
+ s is a Tk color specification string, such as "red" or "yellow"
2270
+ - fillcolor((r, g, b))
2271
+ *a tuple* of r, g, and b, which represent, an RGB color,
2272
+ and each of r, g, and b are in the range 0..colormode,
2273
+ where colormode is either 1.0 or 255
2274
+ - fillcolor(r, g, b)
2275
+ r, g, and b represent an RGB color, and each of r, g, and b
2276
+ are in the range 0..colormode
2277
+
2278
+ If turtleshape is a polygon, the interior of that polygon is drawn
2279
+ with the newly set fillcolor.
2280
+
2281
+ Example (for a Turtle instance named turtle):
2282
+ >>> turtle.fillcolor('violet')
2283
+ >>> col = turtle.pencolor()
2284
+ >>> turtle.fillcolor(col)
2285
+ >>> turtle.fillcolor(0, .5, 0)
2286
+ """
2287
+ if args:
2288
+ color = self._colorstr(args)
2289
+ if color == self._fillcolor:
2290
+ return
2291
+ self.pen(fillcolor=color)
2292
+ else:
2293
+ return self._color(self._fillcolor)
2294
+
2295
+ def showturtle(self):
2296
+ """Makes the turtle visible.
2297
+
2298
+ Aliases: showturtle | st
2299
+
2300
+ No argument.
2301
+
2302
+ Example (for a Turtle instance named turtle):
2303
+ >>> turtle.hideturtle()
2304
+ >>> turtle.showturtle()
2305
+ """
2306
+ self.pen(shown=True)
2307
+
2308
+ def hideturtle(self):
2309
+ """Makes the turtle invisible.
2310
+
2311
+ Aliases: hideturtle | ht
2312
+
2313
+ No argument.
2314
+
2315
+ It's a good idea to do this while you're in the
2316
+ middle of a complicated drawing, because hiding
2317
+ the turtle speeds up the drawing observably.
2318
+
2319
+ Example (for a Turtle instance named turtle):
2320
+ >>> turtle.hideturtle()
2321
+ """
2322
+ self.pen(shown=False)
2323
+
2324
+ def isvisible(self):
2325
+ """Return True if the Turtle is shown, False if it's hidden.
2326
+
2327
+ No argument.
2328
+
2329
+ Example (for a Turtle instance named turtle):
2330
+ >>> turtle.hideturtle()
2331
+ >>> print turtle.isvisible():
2332
+ False
2333
+ """
2334
+ return self._shown
2335
+
2336
+ def pen(self, pen=None, **pendict):
2337
+ """Return or set the pen's attributes.
2338
+
2339
+ Arguments:
2340
+ pen -- a dictionary with some or all of the below listed keys.
2341
+ **pendict -- one or more keyword-arguments with the below
2342
+ listed keys as keywords.
2343
+
2344
+ Return or set the pen's attributes in a 'pen-dictionary'
2345
+ with the following key/value pairs:
2346
+ "shown" : True/False
2347
+ "pendown" : True/False
2348
+ "pencolor" : color-string or color-tuple
2349
+ "fillcolor" : color-string or color-tuple
2350
+ "pensize" : positive number
2351
+ "speed" : number in range 0..10
2352
+ "resizemode" : "auto" or "user" or "noresize"
2353
+ "stretchfactor": (positive number, positive number)
2354
+ "shearfactor": number
2355
+ "outline" : positive number
2356
+ "tilt" : number
2357
+
2358
+ This dictionary can be used as argument for a subsequent
2359
+ pen()-call to restore the former pen-state. Moreover one
2360
+ or more of these attributes can be provided as keyword-arguments.
2361
+ This can be used to set several pen attributes in one statement.
2362
+
2363
+
2364
+ Examples (for a Turtle instance named turtle):
2365
+ >>> turtle.pen(fillcolor="black", pencolor="red", pensize=10)
2366
+ >>> turtle.pen()
2367
+ {'pensize': 10, 'shown': True, 'resizemode': 'auto', 'outline': 1,
2368
+ 'pencolor': 'red', 'pendown': True, 'fillcolor': 'black',
2369
+ 'stretchfactor': (1,1), 'speed': 3, 'shearfactor': 0.0}
2370
+ >>> penstate=turtle.pen()
2371
+ >>> turtle.color("yellow","")
2372
+ >>> turtle.penup()
2373
+ >>> turtle.pen()
2374
+ {'pensize': 10, 'shown': True, 'resizemode': 'auto', 'outline': 1,
2375
+ 'pencolor': 'yellow', 'pendown': False, 'fillcolor': '',
2376
+ 'stretchfactor': (1,1), 'speed': 3, 'shearfactor': 0.0}
2377
+ >>> p.pen(penstate, fillcolor="green")
2378
+ >>> p.pen()
2379
+ {'pensize': 10, 'shown': True, 'resizemode': 'auto', 'outline': 1,
2380
+ 'pencolor': 'red', 'pendown': True, 'fillcolor': 'green',
2381
+ 'stretchfactor': (1,1), 'speed': 3, 'shearfactor': 0.0}
2382
+ """
2383
+ _pd = {"shown" : self._shown,
2384
+ "pendown" : self._drawing,
2385
+ "pencolor" : self._pencolor,
2386
+ "fillcolor" : self._fillcolor,
2387
+ "pensize" : self._pensize,
2388
+ "speed" : self._speed,
2389
+ "resizemode" : self._resizemode,
2390
+ "stretchfactor" : self._stretchfactor,
2391
+ "shearfactor" : self._shearfactor,
2392
+ "outline" : self._outlinewidth,
2393
+ "tilt" : self._tilt
2394
+ }
2395
+
2396
+ if not (pen or pendict):
2397
+ return _pd
2398
+
2399
+ if isinstance(pen, dict):
2400
+ p = pen
2401
+ else:
2402
+ p = {}
2403
+ p.update(pendict)
2404
+
2405
+ _p_buf = {}
2406
+ for key in p:
2407
+ _p_buf[key] = _pd[key]
2408
+
2409
+ if self.undobuffer:
2410
+ self.undobuffer.push(("pen", _p_buf))
2411
+
2412
+ newLine = False
2413
+ if "pendown" in p:
2414
+ if self._drawing != p["pendown"]:
2415
+ newLine = True
2416
+ if "pencolor" in p:
2417
+ if isinstance(p["pencolor"], tuple):
2418
+ p["pencolor"] = self._colorstr((p["pencolor"],))
2419
+ if self._pencolor != p["pencolor"]:
2420
+ newLine = True
2421
+ if "pensize" in p:
2422
+ if self._pensize != p["pensize"]:
2423
+ newLine = True
2424
+ if newLine:
2425
+ self._newLine()
2426
+ if "pendown" in p:
2427
+ self._drawing = p["pendown"]
2428
+ if "pencolor" in p:
2429
+ self._pencolor = p["pencolor"]
2430
+ if "pensize" in p:
2431
+ self._pensize = p["pensize"]
2432
+ if "fillcolor" in p:
2433
+ if isinstance(p["fillcolor"], tuple):
2434
+ p["fillcolor"] = self._colorstr((p["fillcolor"],))
2435
+ self._fillcolor = p["fillcolor"]
2436
+ if "speed" in p:
2437
+ self._speed = p["speed"]
2438
+ if "resizemode" in p:
2439
+ self._resizemode = p["resizemode"]
2440
+ if "stretchfactor" in p:
2441
+ sf = p["stretchfactor"]
2442
+ if isinstance(sf, (int, float)):
2443
+ sf = (sf, sf)
2444
+ self._stretchfactor = sf
2445
+ if "shearfactor" in p:
2446
+ self._shearfactor = p["shearfactor"]
2447
+ if "outline" in p:
2448
+ self._outlinewidth = p["outline"]
2449
+ if "shown" in p:
2450
+ self._shown = p["shown"]
2451
+ if "tilt" in p:
2452
+ self._tilt = p["tilt"]
2453
+ if "stretchfactor" in p or "tilt" in p or "shearfactor" in p:
2454
+ scx, scy = self._stretchfactor
2455
+ shf = self._shearfactor
2456
+ sa, ca = math.sin(self._tilt), math.cos(self._tilt)
2457
+ self._shapetrafo = ( scx*ca, scy*(shf*ca + sa),
2458
+ -scx*sa, scy*(ca - shf*sa))
2459
+ self._update()
2460
+
2461
+ ## three dummy methods to be implemented by child class:
2462
+
2463
+ def _newLine(self, usePos = True):
2464
+ """dummy method - to be overwritten by child class"""
2465
+ def _update(self, count=True, forced=False):
2466
+ """dummy method - to be overwritten by child class"""
2467
+ def _color(self, args):
2468
+ """dummy method - to be overwritten by child class"""
2469
+ def _colorstr(self, args):
2470
+ """dummy method - to be overwritten by child class"""
2471
+
2472
+ width = pensize
2473
+ up = penup
2474
+ pu = penup
2475
+ pd = pendown
2476
+ down = pendown
2477
+ st = showturtle
2478
+ ht = hideturtle
2479
+
2480
+
2481
+ class _TurtleImage(object):
2482
+ """Helper class: Datatype to store Turtle attributes
2483
+ """
2484
+
2485
+ def __init__(self, screen, shapeIndex):
2486
+ self.screen = screen
2487
+ self._type = None
2488
+ self._setshape(shapeIndex)
2489
+
2490
+ def _setshape(self, shapeIndex):
2491
+ screen = self.screen
2492
+ self.shapeIndex = shapeIndex
2493
+ if self._type == "polygon" == screen._shapes[shapeIndex]._type:
2494
+ return
2495
+ if self._type == "image" == screen._shapes[shapeIndex]._type:
2496
+ return
2497
+ if self._type in ["image", "polygon"]:
2498
+ screen._delete(self._item)
2499
+ elif self._type == "compound":
2500
+ for item in self._item:
2501
+ screen._delete(item)
2502
+ self._type = screen._shapes[shapeIndex]._type
2503
+ if self._type == "polygon":
2504
+ self._item = screen._createpoly()
2505
+ elif self._type == "image":
2506
+ self._item = screen._createimage(screen._shapes["blank"]._data)
2507
+ elif self._type == "compound":
2508
+ self._item = [screen._createpoly() for item in
2509
+ screen._shapes[shapeIndex]._data]
2510
+
2511
+
2512
+ class RawTurtle(TPen, TNavigator):
2513
+ """Animation part of the RawTurtle.
2514
+ Puts RawTurtle upon a TurtleScreen and provides tools for
2515
+ its animation.
2516
+ """
2517
+ screens = []
2518
+
2519
+ def __init__(self, canvas=None,
2520
+ shape=_CFG["shape"],
2521
+ undobuffersize=_CFG["undobuffersize"],
2522
+ visible=_CFG["visible"]):
2523
+ if isinstance(canvas, _Screen):
2524
+ self.screen = canvas
2525
+ elif isinstance(canvas, TurtleScreen):
2526
+ if canvas not in RawTurtle.screens:
2527
+ RawTurtle.screens.append(canvas)
2528
+ self.screen = canvas
2529
+ elif isinstance(canvas, (ScrolledCanvas, Canvas)):
2530
+ for screen in RawTurtle.screens:
2531
+ if screen.cv == canvas:
2532
+ self.screen = screen
2533
+ break
2534
+ else:
2535
+ self.screen = TurtleScreen(canvas)
2536
+ RawTurtle.screens.append(self.screen)
2537
+ else:
2538
+ raise TurtleGraphicsError("bad canvas argument %s" % canvas)
2539
+
2540
+ screen = self.screen
2541
+ TNavigator.__init__(self, screen.mode())
2542
+ TPen.__init__(self)
2543
+ screen._turtles.append(self)
2544
+ self.drawingLineItem = screen._createline()
2545
+ self.turtle = _TurtleImage(screen, shape)
2546
+ self._poly = None
2547
+ self._creatingPoly = False
2548
+ self._fillitem = self._fillpath = None
2549
+ self._shown = visible
2550
+ self._hidden_from_screen = False
2551
+ self.currentLineItem = screen._createline()
2552
+ self.currentLine = [self._position]
2553
+ self.items = [self.currentLineItem]
2554
+ self.stampItems = []
2555
+ self._undobuffersize = undobuffersize
2556
+ self.undobuffer = Tbuffer(undobuffersize)
2557
+ self._update()
2558
+
2559
+ def reset(self):
2560
+ """Delete the turtle's drawings and restore its default values.
2561
+
2562
+ No argument.
2563
+
2564
+ Delete the turtle's drawings from the screen, re-center the turtle
2565
+ and set variables to the default values.
2566
+
2567
+ Example (for a Turtle instance named turtle):
2568
+ >>> turtle.position()
2569
+ (0.00,-22.00)
2570
+ >>> turtle.heading()
2571
+ 100.0
2572
+ >>> turtle.reset()
2573
+ >>> turtle.position()
2574
+ (0.00,0.00)
2575
+ >>> turtle.heading()
2576
+ 0.0
2577
+ """
2578
+ TNavigator.reset(self)
2579
+ TPen._reset(self)
2580
+ self._clear()
2581
+ self._drawturtle()
2582
+ self._update()
2583
+
2584
+ def setundobuffer(self, size):
2585
+ """Set or disable undobuffer.
2586
+
2587
+ Argument:
2588
+ size -- an integer or None
2589
+
2590
+ If size is an integer an empty undobuffer of given size is installed.
2591
+ Size gives the maximum number of turtle-actions that can be undone
2592
+ by the undo() function.
2593
+ If size is None, no undobuffer is present.
2594
+
2595
+ Example (for a Turtle instance named turtle):
2596
+ >>> turtle.setundobuffer(42)
2597
+ """
2598
+ if size is None or size <= 0:
2599
+ self.undobuffer = None
2600
+ else:
2601
+ self.undobuffer = Tbuffer(size)
2602
+
2603
+ def undobufferentries(self):
2604
+ """Return count of entries in the undobuffer.
2605
+
2606
+ No argument.
2607
+
2608
+ Example (for a Turtle instance named turtle):
2609
+ >>> while undobufferentries():
2610
+ ... undo()
2611
+ """
2612
+ if self.undobuffer is None:
2613
+ return 0
2614
+ return self.undobuffer.nr_of_items()
2615
+
2616
+ def _clear(self):
2617
+ """Delete all of pen's drawings"""
2618
+ self._fillitem = self._fillpath = None
2619
+ for item in self.items:
2620
+ self.screen._delete(item)
2621
+ self.currentLineItem = self.screen._createline()
2622
+ self.currentLine = []
2623
+ if self._drawing:
2624
+ self.currentLine.append(self._position)
2625
+ self.items = [self.currentLineItem]
2626
+ self.clearstamps()
2627
+ self.setundobuffer(self._undobuffersize)
2628
+
2629
+
2630
+ def clear(self):
2631
+ """Delete the turtle's drawings from the screen. Do not move turtle.
2632
+
2633
+ No arguments.
2634
+
2635
+ Delete the turtle's drawings from the screen. Do not move turtle.
2636
+ State and position of the turtle as well as drawings of other
2637
+ turtles are not affected.
2638
+
2639
+ Examples (for a Turtle instance named turtle):
2640
+ >>> turtle.clear()
2641
+ """
2642
+ self._clear()
2643
+ self._update()
2644
+
2645
+ def _update_data(self):
2646
+ self.screen._incrementudc()
2647
+ if self.screen._updatecounter != 0:
2648
+ return
2649
+ if len(self.currentLine)>1:
2650
+ self.screen._drawline(self.currentLineItem, self.currentLine,
2651
+ self._pencolor, self._pensize)
2652
+
2653
+ def _update(self):
2654
+ """Perform a Turtle-data update.
2655
+ """
2656
+ screen = self.screen
2657
+ if screen._tracing == 0:
2658
+ return
2659
+ elif screen._tracing == 1:
2660
+ self._update_data()
2661
+ self._drawturtle()
2662
+ screen._update() # TurtleScreenBase
2663
+ screen._delay(screen._delayvalue) # TurtleScreenBase
2664
+ else:
2665
+ self._update_data()
2666
+ if screen._updatecounter == 0:
2667
+ for t in screen.turtles():
2668
+ t._drawturtle()
2669
+ screen._update()
2670
+
2671
+ def _tracer(self, flag=None, delay=None):
2672
+ """Turns turtle animation on/off and set delay for update drawings.
2673
+
2674
+ Optional arguments:
2675
+ n -- nonnegative integer
2676
+ delay -- nonnegative integer
2677
+
2678
+ If n is given, only each n-th regular screen update is really performed.
2679
+ (Can be used to accelerate the drawing of complex graphics.)
2680
+ Second arguments sets delay value (see RawTurtle.delay())
2681
+
2682
+ Example (for a Turtle instance named turtle):
2683
+ >>> turtle.tracer(8, 25)
2684
+ >>> dist = 2
2685
+ >>> for i in range(200):
2686
+ ... turtle.fd(dist)
2687
+ ... turtle.rt(90)
2688
+ ... dist += 2
2689
+ """
2690
+ return self.screen.tracer(flag, delay)
2691
+
2692
+ def _color(self, args):
2693
+ return self.screen._color(args)
2694
+
2695
+ def _colorstr(self, args):
2696
+ return self.screen._colorstr(args)
2697
+
2698
+ def _cc(self, args):
2699
+ """Convert colortriples to hexstrings.
2700
+ """
2701
+ if isinstance(args, str):
2702
+ return args
2703
+ try:
2704
+ r, g, b = args
2705
+ except:
2706
+ raise TurtleGraphicsError("bad color arguments: %s" % str(args))
2707
+ if self.screen._colormode == 1.0:
2708
+ r, g, b = [round(255.0*x) for x in (r, g, b)]
2709
+ if not ((0 <= r <= 255) and (0 <= g <= 255) and (0 <= b <= 255)):
2710
+ raise TurtleGraphicsError("bad color sequence: %s" % str(args))
2711
+ return "#%02x%02x%02x" % (r, g, b)
2712
+
2713
+ def clone(self):
2714
+ """Create and return a clone of the turtle.
2715
+
2716
+ No argument.
2717
+
2718
+ Create and return a clone of the turtle with same position, heading
2719
+ and turtle properties.
2720
+
2721
+ Example (for a Turtle instance named mick):
2722
+ mick = Turtle()
2723
+ joe = mick.clone()
2724
+ """
2725
+ screen = self.screen
2726
+ self._newLine(self._drawing)
2727
+
2728
+ turtle = self.turtle
2729
+ self.screen = None
2730
+ self.turtle = None # too make self deepcopy-able
2731
+
2732
+ q = deepcopy(self)
2733
+
2734
+ self.screen = screen
2735
+ self.turtle = turtle
2736
+
2737
+ q.screen = screen
2738
+ q.turtle = _TurtleImage(screen, self.turtle.shapeIndex)
2739
+
2740
+ screen._turtles.append(q)
2741
+ ttype = screen._shapes[self.turtle.shapeIndex]._type
2742
+ if ttype == "polygon":
2743
+ q.turtle._item = screen._createpoly()
2744
+ elif ttype == "image":
2745
+ q.turtle._item = screen._createimage(screen._shapes["blank"]._data)
2746
+ elif ttype == "compound":
2747
+ q.turtle._item = [screen._createpoly() for item in
2748
+ screen._shapes[self.turtle.shapeIndex]._data]
2749
+ q.currentLineItem = screen._createline()
2750
+ q._update()
2751
+ return q
2752
+
2753
+ def shape(self, name=None):
2754
+ """Set turtle shape to shape with given name / return current shapename.
2755
+
2756
+ Optional argument:
2757
+ name -- a string, which is a valid shapename
2758
+
2759
+ Set turtle shape to shape with given name or, if name is not given,
2760
+ return name of current shape.
2761
+ Shape with name must exist in the TurtleScreen's shape dictionary.
2762
+ Initially there are the following polygon shapes:
2763
+ 'arrow', 'turtle', 'circle', 'square', 'triangle', 'classic'.
2764
+ To learn about how to deal with shapes see Screen-method register_shape.
2765
+
2766
+ Example (for a Turtle instance named turtle):
2767
+ >>> turtle.shape()
2768
+ 'arrow'
2769
+ >>> turtle.shape("turtle")
2770
+ >>> turtle.shape()
2771
+ 'turtle'
2772
+ """
2773
+ if name is None:
2774
+ return self.turtle.shapeIndex
2775
+ if not name in self.screen.getshapes():
2776
+ raise TurtleGraphicsError("There is no shape named %s" % name)
2777
+ self.turtle._setshape(name)
2778
+ self._update()
2779
+
2780
+ def shapesize(self, stretch_wid=None, stretch_len=None, outline=None):
2781
+ """Set/return turtle's stretchfactors/outline. Set resizemode to "user".
2782
+
2783
+ Optional arguments:
2784
+ stretch_wid : positive number
2785
+ stretch_len : positive number
2786
+ outline : positive number
2787
+
2788
+ Return or set the pen's attributes x/y-stretchfactors and/or outline.
2789
+ Set resizemode to "user".
2790
+ If and only if resizemode is set to "user", the turtle will be displayed
2791
+ stretched according to its stretchfactors:
2792
+ stretch_wid is stretchfactor perpendicular to orientation
2793
+ stretch_len is stretchfactor in direction of turtles orientation.
2794
+ outline determines the width of the shapes's outline.
2795
+
2796
+ Examples (for a Turtle instance named turtle):
2797
+ >>> turtle.resizemode("user")
2798
+ >>> turtle.shapesize(5, 5, 12)
2799
+ >>> turtle.shapesize(outline=8)
2800
+ """
2801
+ if stretch_wid is stretch_len is outline is None:
2802
+ stretch_wid, stretch_len = self._stretchfactor
2803
+ return stretch_wid, stretch_len, self._outlinewidth
2804
+ if stretch_wid == 0 or stretch_len == 0:
2805
+ raise TurtleGraphicsError("stretch_wid/stretch_len must not be zero")
2806
+ if stretch_wid is not None:
2807
+ if stretch_len is None:
2808
+ stretchfactor = stretch_wid, stretch_wid
2809
+ else:
2810
+ stretchfactor = stretch_wid, stretch_len
2811
+ elif stretch_len is not None:
2812
+ stretchfactor = self._stretchfactor[0], stretch_len
2813
+ else:
2814
+ stretchfactor = self._stretchfactor
2815
+ if outline is None:
2816
+ outline = self._outlinewidth
2817
+ self.pen(resizemode="user",
2818
+ stretchfactor=stretchfactor, outline=outline)
2819
+
2820
+ def shearfactor(self, shear=None):
2821
+ """Set or return the current shearfactor.
2822
+
2823
+ Optional argument: shear -- number, tangent of the shear angle
2824
+
2825
+ Shear the turtleshape according to the given shearfactor shear,
2826
+ which is the tangent of the shear angle. DO NOT change the
2827
+ turtle's heading (direction of movement).
2828
+ If shear is not given: return the current shearfactor, i. e. the
2829
+ tangent of the shear angle, by which lines parallel to the
2830
+ heading of the turtle are sheared.
2831
+
2832
+ Examples (for a Turtle instance named turtle):
2833
+ >>> turtle.shape("circle")
2834
+ >>> turtle.shapesize(5,2)
2835
+ >>> turtle.shearfactor(0.5)
2836
+ >>> turtle.shearfactor()
2837
+ >>> 0.5
2838
+ """
2839
+ if shear is None:
2840
+ return self._shearfactor
2841
+ self.pen(resizemode="user", shearfactor=shear)
2842
+
2843
+ def settiltangle(self, angle):
2844
+ """Rotate the turtleshape to point in the specified direction
2845
+
2846
+ Argument: angle -- number
2847
+
2848
+ Rotate the turtleshape to point in the direction specified by angle,
2849
+ regardless of its current tilt-angle. DO NOT change the turtle's
2850
+ heading (direction of movement).
2851
+
2852
+
2853
+ Examples (for a Turtle instance named turtle):
2854
+ >>> turtle.shape("circle")
2855
+ >>> turtle.shapesize(5,2)
2856
+ >>> turtle.settiltangle(45)
2857
+ >>> stamp()
2858
+ >>> turtle.fd(50)
2859
+ >>> turtle.settiltangle(-45)
2860
+ >>> stamp()
2861
+ >>> turtle.fd(50)
2862
+ """
2863
+ tilt = -angle * self._degreesPerAU * self._angleOrient
2864
+ tilt = (tilt * math.pi / 180.0) % (2*math.pi)
2865
+ self.pen(resizemode="user", tilt=tilt)
2866
+
2867
+ def tiltangle(self, angle=None):
2868
+ """Set or return the current tilt-angle.
2869
+
2870
+ Optional argument: angle -- number
2871
+
2872
+ Rotate the turtleshape to point in the direction specified by angle,
2873
+ regardless of its current tilt-angle. DO NOT change the turtle's
2874
+ heading (direction of movement).
2875
+ If angle is not given: return the current tilt-angle, i. e. the angle
2876
+ between the orientation of the turtleshape and the heading of the
2877
+ turtle (its direction of movement).
2878
+
2879
+ Deprecated since Python 3.1
2880
+
2881
+ Examples (for a Turtle instance named turtle):
2882
+ >>> turtle.shape("circle")
2883
+ >>> turtle.shapesize(5,2)
2884
+ >>> turtle.tilt(45)
2885
+ >>> turtle.tiltangle()
2886
+ """
2887
+ if angle is None:
2888
+ tilt = -self._tilt * (180.0/math.pi) * self._angleOrient
2889
+ return (tilt / self._degreesPerAU) % self._fullcircle
2890
+ else:
2891
+ self.settiltangle(angle)
2892
+
2893
+ def tilt(self, angle):
2894
+ """Rotate the turtleshape by angle.
2895
+
2896
+ Argument:
2897
+ angle - a number
2898
+
2899
+ Rotate the turtleshape by angle from its current tilt-angle,
2900
+ but do NOT change the turtle's heading (direction of movement).
2901
+
2902
+ Examples (for a Turtle instance named turtle):
2903
+ >>> turtle.shape("circle")
2904
+ >>> turtle.shapesize(5,2)
2905
+ >>> turtle.tilt(30)
2906
+ >>> turtle.fd(50)
2907
+ >>> turtle.tilt(30)
2908
+ >>> turtle.fd(50)
2909
+ """
2910
+ self.settiltangle(angle + self.tiltangle())
2911
+
2912
+ def shapetransform(self, t11=None, t12=None, t21=None, t22=None):
2913
+ """Set or return the current transformation matrix of the turtle shape.
2914
+
2915
+ Optional arguments: t11, t12, t21, t22 -- numbers.
2916
+
2917
+ If none of the matrix elements are given, return the transformation
2918
+ matrix.
2919
+ Otherwise set the given elements and transform the turtleshape
2920
+ according to the matrix consisting of first row t11, t12 and
2921
+ second row t21, 22.
2922
+ Modify stretchfactor, shearfactor and tiltangle according to the
2923
+ given matrix.
2924
+
2925
+ Examples (for a Turtle instance named turtle):
2926
+ >>> turtle.shape("square")
2927
+ >>> turtle.shapesize(4,2)
2928
+ >>> turtle.shearfactor(-0.5)
2929
+ >>> turtle.shapetransform()
2930
+ (4.0, -1.0, -0.0, 2.0)
2931
+ """
2932
+ if t11 is t12 is t21 is t22 is None:
2933
+ return self._shapetrafo
2934
+ m11, m12, m21, m22 = self._shapetrafo
2935
+ if t11 is not None: m11 = t11
2936
+ if t12 is not None: m12 = t12
2937
+ if t21 is not None: m21 = t21
2938
+ if t22 is not None: m22 = t22
2939
+ if t11 * t22 - t12 * t21 == 0:
2940
+ raise TurtleGraphicsError("Bad shape transform matrix: must not be singular")
2941
+ self._shapetrafo = (m11, m12, m21, m22)
2942
+ alfa = math.atan2(-m21, m11) % (2 * math.pi)
2943
+ sa, ca = math.sin(alfa), math.cos(alfa)
2944
+ a11, a12, a21, a22 = (ca*m11 - sa*m21, ca*m12 - sa*m22,
2945
+ sa*m11 + ca*m21, sa*m12 + ca*m22)
2946
+ self._stretchfactor = a11, a22
2947
+ self._shearfactor = a12/a22
2948
+ self._tilt = alfa
2949
+ self.pen(resizemode="user")
2950
+
2951
+
2952
+ def _polytrafo(self, poly):
2953
+ """Computes transformed polygon shapes from a shape
2954
+ according to current position and heading.
2955
+ """
2956
+ screen = self.screen
2957
+ p0, p1 = self._position
2958
+ e0, e1 = self._orient
2959
+ e = Vec2D(e0, e1 * screen.yscale / screen.xscale)
2960
+ e0, e1 = (1.0 / abs(e)) * e
2961
+ return [(p0+(e1*x+e0*y)/screen.xscale, p1+(-e0*x+e1*y)/screen.yscale)
2962
+ for (x, y) in poly]
2963
+
2964
+ def get_shapepoly(self):
2965
+ """Return the current shape polygon as tuple of coordinate pairs.
2966
+
2967
+ No argument.
2968
+
2969
+ Examples (for a Turtle instance named turtle):
2970
+ >>> turtle.shape("square")
2971
+ >>> turtle.shapetransform(4, -1, 0, 2)
2972
+ >>> turtle.get_shapepoly()
2973
+ ((50, -20), (30, 20), (-50, 20), (-30, -20))
2974
+
2975
+ """
2976
+ shape = self.screen._shapes[self.turtle.shapeIndex]
2977
+ if shape._type == "polygon":
2978
+ return self._getshapepoly(shape._data, shape._type == "compound")
2979
+ # else return None
2980
+
2981
+ def _getshapepoly(self, polygon, compound=False):
2982
+ """Calculate transformed shape polygon according to resizemode
2983
+ and shapetransform.
2984
+ """
2985
+ if self._resizemode == "user" or compound:
2986
+ t11, t12, t21, t22 = self._shapetrafo
2987
+ elif self._resizemode == "auto":
2988
+ l = max(1, self._pensize/5.0)
2989
+ t11, t12, t21, t22 = l, 0, 0, l
2990
+ elif self._resizemode == "noresize":
2991
+ return polygon
2992
+ return tuple([(t11*x + t12*y, t21*x + t22*y) for (x, y) in polygon])
2993
+
2994
+ def _drawturtle(self):
2995
+ """Manages the correct rendering of the turtle with respect to
2996
+ its shape, resizemode, stretch and tilt etc."""
2997
+ screen = self.screen
2998
+ shape = screen._shapes[self.turtle.shapeIndex]
2999
+ ttype = shape._type
3000
+ titem = self.turtle._item
3001
+ if self._shown and screen._updatecounter == 0 and screen._tracing > 0:
3002
+ self._hidden_from_screen = False
3003
+ tshape = shape._data
3004
+ if ttype == "polygon":
3005
+ if self._resizemode == "noresize": w = 1
3006
+ elif self._resizemode == "auto": w = self._pensize
3007
+ else: w =self._outlinewidth
3008
+ shape = self._polytrafo(self._getshapepoly(tshape))
3009
+ fc, oc = self._fillcolor, self._pencolor
3010
+ screen._drawpoly(titem, shape, fill=fc, outline=oc,
3011
+ width=w, top=True)
3012
+ elif ttype == "image":
3013
+ screen._drawimage(titem, self._position, tshape)
3014
+ elif ttype == "compound":
3015
+ for item, (poly, fc, oc) in zip(titem, tshape):
3016
+ poly = self._polytrafo(self._getshapepoly(poly, True))
3017
+ screen._drawpoly(item, poly, fill=self._cc(fc),
3018
+ outline=self._cc(oc), width=self._outlinewidth, top=True)
3019
+ else:
3020
+ if self._hidden_from_screen:
3021
+ return
3022
+ if ttype == "polygon":
3023
+ screen._drawpoly(titem, ((0, 0), (0, 0), (0, 0)), "", "")
3024
+ elif ttype == "image":
3025
+ screen._drawimage(titem, self._position,
3026
+ screen._shapes["blank"]._data)
3027
+ elif ttype == "compound":
3028
+ for item in titem:
3029
+ screen._drawpoly(item, ((0, 0), (0, 0), (0, 0)), "", "")
3030
+ self._hidden_from_screen = True
3031
+
3032
+ ############################## stamp stuff ###############################
3033
+
3034
+ def stamp(self):
3035
+ """Stamp a copy of the turtleshape onto the canvas and return its id.
3036
+
3037
+ No argument.
3038
+
3039
+ Stamp a copy of the turtle shape onto the canvas at the current
3040
+ turtle position. Return a stamp_id for that stamp, which can be
3041
+ used to delete it by calling clearstamp(stamp_id).
3042
+
3043
+ Example (for a Turtle instance named turtle):
3044
+ >>> turtle.color("blue")
3045
+ >>> turtle.stamp()
3046
+ 13
3047
+ >>> turtle.fd(50)
3048
+ """
3049
+ screen = self.screen
3050
+ shape = screen._shapes[self.turtle.shapeIndex]
3051
+ ttype = shape._type
3052
+ tshape = shape._data
3053
+ if ttype == "polygon":
3054
+ stitem = screen._createpoly()
3055
+ if self._resizemode == "noresize": w = 1
3056
+ elif self._resizemode == "auto": w = self._pensize
3057
+ else: w =self._outlinewidth
3058
+ shape = self._polytrafo(self._getshapepoly(tshape))
3059
+ fc, oc = self._fillcolor, self._pencolor
3060
+ screen._drawpoly(stitem, shape, fill=fc, outline=oc,
3061
+ width=w, top=True)
3062
+ elif ttype == "image":
3063
+ stitem = screen._createimage("")
3064
+ screen._drawimage(stitem, self._position, tshape)
3065
+ elif ttype == "compound":
3066
+ stitem = []
3067
+ for element in tshape:
3068
+ item = screen._createpoly()
3069
+ stitem.append(item)
3070
+ stitem = tuple(stitem)
3071
+ for item, (poly, fc, oc) in zip(stitem, tshape):
3072
+ poly = self._polytrafo(self._getshapepoly(poly, True))
3073
+ screen._drawpoly(item, poly, fill=self._cc(fc),
3074
+ outline=self._cc(oc), width=self._outlinewidth, top=True)
3075
+ self.stampItems.append(stitem)
3076
+ self.undobuffer.push(("stamp", stitem))
3077
+ return stitem
3078
+
3079
+ def _clearstamp(self, stampid):
3080
+ """does the work for clearstamp() and clearstamps()
3081
+ """
3082
+ if stampid in self.stampItems:
3083
+ if isinstance(stampid, tuple):
3084
+ for subitem in stampid:
3085
+ self.screen._delete(subitem)
3086
+ else:
3087
+ self.screen._delete(stampid)
3088
+ self.stampItems.remove(stampid)
3089
+ # Delete stampitem from undobuffer if necessary
3090
+ # if clearstamp is called directly.
3091
+ item = ("stamp", stampid)
3092
+ buf = self.undobuffer
3093
+ if item not in buf.buffer:
3094
+ return
3095
+ index = buf.buffer.index(item)
3096
+ buf.buffer.remove(item)
3097
+ if index <= buf.ptr:
3098
+ buf.ptr = (buf.ptr - 1) % buf.bufsize
3099
+ buf.buffer.insert((buf.ptr+1)%buf.bufsize, [None])
3100
+
3101
+ def clearstamp(self, stampid):
3102
+ """Delete stamp with given stampid
3103
+
3104
+ Argument:
3105
+ stampid - an integer, must be return value of previous stamp() call.
3106
+
3107
+ Example (for a Turtle instance named turtle):
3108
+ >>> turtle.color("blue")
3109
+ >>> astamp = turtle.stamp()
3110
+ >>> turtle.fd(50)
3111
+ >>> turtle.clearstamp(astamp)
3112
+ """
3113
+ self._clearstamp(stampid)
3114
+ self._update()
3115
+
3116
+ def clearstamps(self, n=None):
3117
+ """Delete all or first/last n of turtle's stamps.
3118
+
3119
+ Optional argument:
3120
+ n -- an integer
3121
+
3122
+ If n is None, delete all of pen's stamps,
3123
+ else if n > 0 delete first n stamps
3124
+ else if n < 0 delete last n stamps.
3125
+
3126
+ Example (for a Turtle instance named turtle):
3127
+ >>> for i in range(8):
3128
+ ... turtle.stamp(); turtle.fd(30)
3129
+ ...
3130
+ >>> turtle.clearstamps(2)
3131
+ >>> turtle.clearstamps(-2)
3132
+ >>> turtle.clearstamps()
3133
+ """
3134
+ if n is None:
3135
+ toDelete = self.stampItems[:]
3136
+ elif n >= 0:
3137
+ toDelete = self.stampItems[:n]
3138
+ else:
3139
+ toDelete = self.stampItems[n:]
3140
+ for item in toDelete:
3141
+ self._clearstamp(item)
3142
+ self._update()
3143
+
3144
+ def _goto(self, end):
3145
+ """Move the pen to the point end, thereby drawing a line
3146
+ if pen is down. All other methods for turtle movement depend
3147
+ on this one.
3148
+ """
3149
+ ## Version with undo-stuff
3150
+ go_modes = ( self._drawing,
3151
+ self._pencolor,
3152
+ self._pensize,
3153
+ isinstance(self._fillpath, list))
3154
+ screen = self.screen
3155
+ undo_entry = ("go", self._position, end, go_modes,
3156
+ (self.currentLineItem,
3157
+ self.currentLine[:],
3158
+ screen._pointlist(self.currentLineItem),
3159
+ self.items[:])
3160
+ )
3161
+ if self.undobuffer:
3162
+ self.undobuffer.push(undo_entry)
3163
+ start = self._position
3164
+ if self._speed and screen._tracing == 1:
3165
+ diff = (end-start)
3166
+ diffsq = (diff[0]*screen.xscale)**2 + (diff[1]*screen.yscale)**2
3167
+ nhops = 1+int((diffsq**0.5)/(3*(1.1**self._speed)*self._speed))
3168
+ delta = diff * (1.0/nhops)
3169
+ for n in range(1, nhops):
3170
+ if n == 1:
3171
+ top = True
3172
+ else:
3173
+ top = False
3174
+ self._position = start + delta * n
3175
+ if self._drawing:
3176
+ screen._drawline(self.drawingLineItem,
3177
+ (start, self._position),
3178
+ self._pencolor, self._pensize, top)
3179
+ self._update()
3180
+ if self._drawing:
3181
+ screen._drawline(self.drawingLineItem, ((0, 0), (0, 0)),
3182
+ fill="", width=self._pensize)
3183
+ # Turtle now at end,
3184
+ if self._drawing: # now update currentLine
3185
+ self.currentLine.append(end)
3186
+ if isinstance(self._fillpath, list):
3187
+ self._fillpath.append(end)
3188
+ ###### vererbung!!!!!!!!!!!!!!!!!!!!!!
3189
+ self._position = end
3190
+ if self._creatingPoly:
3191
+ self._poly.append(end)
3192
+ if len(self.currentLine) > 42: # 42! answer to the ultimate question
3193
+ # of life, the universe and everything
3194
+ self._newLine()
3195
+ self._update() #count=True)
3196
+
3197
+ def _undogoto(self, entry):
3198
+ """Reverse a _goto. Used for undo()
3199
+ """
3200
+ old, new, go_modes, coodata = entry
3201
+ drawing, pc, ps, filling = go_modes
3202
+ cLI, cL, pl, items = coodata
3203
+ screen = self.screen
3204
+ if abs(self._position - new) > 0.5:
3205
+ print ("undogoto: HALLO-DA-STIMMT-WAS-NICHT!")
3206
+ # restore former situation
3207
+ self.currentLineItem = cLI
3208
+ self.currentLine = cL
3209
+
3210
+ if pl == [(0, 0), (0, 0)]:
3211
+ usepc = ""
3212
+ else:
3213
+ usepc = pc
3214
+ screen._drawline(cLI, pl, fill=usepc, width=ps)
3215
+
3216
+ todelete = [i for i in self.items if (i not in items) and
3217
+ (screen._type(i) == "line")]
3218
+ for i in todelete:
3219
+ screen._delete(i)
3220
+ self.items.remove(i)
3221
+
3222
+ start = old
3223
+ if self._speed and screen._tracing == 1:
3224
+ diff = old - new
3225
+ diffsq = (diff[0]*screen.xscale)**2 + (diff[1]*screen.yscale)**2
3226
+ nhops = 1+int((diffsq**0.5)/(3*(1.1**self._speed)*self._speed))
3227
+ delta = diff * (1.0/nhops)
3228
+ for n in range(1, nhops):
3229
+ if n == 1:
3230
+ top = True
3231
+ else:
3232
+ top = False
3233
+ self._position = new + delta * n
3234
+ if drawing:
3235
+ screen._drawline(self.drawingLineItem,
3236
+ (start, self._position),
3237
+ pc, ps, top)
3238
+ self._update()
3239
+ if drawing:
3240
+ screen._drawline(self.drawingLineItem, ((0, 0), (0, 0)),
3241
+ fill="", width=ps)
3242
+ # Turtle now at position old,
3243
+ self._position = old
3244
+ ## if undo is done during creating a polygon, the last vertex
3245
+ ## will be deleted. if the polygon is entirely deleted,
3246
+ ## creatingPoly will be set to False.
3247
+ ## Polygons created before the last one will not be affected by undo()
3248
+ if self._creatingPoly:
3249
+ if len(self._poly) > 0:
3250
+ self._poly.pop()
3251
+ if self._poly == []:
3252
+ self._creatingPoly = False
3253
+ self._poly = None
3254
+ if filling:
3255
+ if self._fillpath == []:
3256
+ self._fillpath = None
3257
+ print("Unwahrscheinlich in _undogoto!")
3258
+ elif self._fillpath is not None:
3259
+ self._fillpath.pop()
3260
+ self._update() #count=True)
3261
+
3262
+ def _rotate(self, angle):
3263
+ """Turns pen clockwise by angle.
3264
+ """
3265
+ if self.undobuffer:
3266
+ self.undobuffer.push(("rot", angle, self._degreesPerAU))
3267
+ angle *= self._degreesPerAU
3268
+ neworient = self._orient.rotate(angle)
3269
+ tracing = self.screen._tracing
3270
+ if tracing == 1 and self._speed > 0:
3271
+ anglevel = 3.0 * self._speed
3272
+ steps = 1 + int(abs(angle)/anglevel)
3273
+ delta = 1.0*angle/steps
3274
+ for _ in range(steps):
3275
+ self._orient = self._orient.rotate(delta)
3276
+ self._update()
3277
+ self._orient = neworient
3278
+ self._update()
3279
+
3280
+ def _newLine(self, usePos=True):
3281
+ """Closes current line item and starts a new one.
3282
+ Remark: if current line became too long, animation
3283
+ performance (via _drawline) slowed down considerably.
3284
+ """
3285
+ if len(self.currentLine) > 1:
3286
+ self.screen._drawline(self.currentLineItem, self.currentLine,
3287
+ self._pencolor, self._pensize)
3288
+ self.currentLineItem = self.screen._createline()
3289
+ self.items.append(self.currentLineItem)
3290
+ else:
3291
+ self.screen._drawline(self.currentLineItem, top=True)
3292
+ self.currentLine = []
3293
+ if usePos:
3294
+ self.currentLine = [self._position]
3295
+
3296
+ def filling(self):
3297
+ """Return fillstate (True if filling, False else).
3298
+
3299
+ No argument.
3300
+
3301
+ Example (for a Turtle instance named turtle):
3302
+ >>> turtle.begin_fill()
3303
+ >>> if turtle.filling():
3304
+ ... turtle.pensize(5)
3305
+ ... else:
3306
+ ... turtle.pensize(3)
3307
+ """
3308
+ return isinstance(self._fillpath, list)
3309
+
3310
+ def begin_fill(self):
3311
+ """Called just before drawing a shape to be filled.
3312
+
3313
+ No argument.
3314
+
3315
+ Example (for a Turtle instance named turtle):
3316
+ >>> turtle.color("black", "red")
3317
+ >>> turtle.begin_fill()
3318
+ >>> turtle.circle(60)
3319
+ >>> turtle.end_fill()
3320
+ """
3321
+ if not self.filling():
3322
+ self._fillitem = self.screen._createpoly()
3323
+ self.items.append(self._fillitem)
3324
+ self._fillpath = [self._position]
3325
+ self._newLine()
3326
+ if self.undobuffer:
3327
+ self.undobuffer.push(("beginfill", self._fillitem))
3328
+ self._update()
3329
+
3330
+
3331
+ def end_fill(self):
3332
+ """Fill the shape drawn after the call begin_fill().
3333
+
3334
+ No argument.
3335
+
3336
+ Example (for a Turtle instance named turtle):
3337
+ >>> turtle.color("black", "red")
3338
+ >>> turtle.begin_fill()
3339
+ >>> turtle.circle(60)
3340
+ >>> turtle.end_fill()
3341
+ """
3342
+ if self.filling():
3343
+ if len(self._fillpath) > 2:
3344
+ self.screen._drawpoly(self._fillitem, self._fillpath,
3345
+ fill=self._fillcolor)
3346
+ if self.undobuffer:
3347
+ self.undobuffer.push(("dofill", self._fillitem))
3348
+ self._fillitem = self._fillpath = None
3349
+ self._update()
3350
+
3351
+ def dot(self, size=None, *color):
3352
+ """Draw a dot with diameter size, using color.
3353
+
3354
+ Optional arguments:
3355
+ size -- an integer >= 1 (if given)
3356
+ color -- a colorstring or a numeric color tuple
3357
+
3358
+ Draw a circular dot with diameter size, using color.
3359
+ If size is not given, the maximum of pensize+4 and 2*pensize is used.
3360
+
3361
+ Example (for a Turtle instance named turtle):
3362
+ >>> turtle.dot()
3363
+ >>> turtle.fd(50); turtle.dot(20, "blue"); turtle.fd(50)
3364
+ """
3365
+ if not color:
3366
+ if isinstance(size, (str, tuple)):
3367
+ color = self._colorstr(size)
3368
+ size = self._pensize + max(self._pensize, 4)
3369
+ else:
3370
+ color = self._pencolor
3371
+ if not size:
3372
+ size = self._pensize + max(self._pensize, 4)
3373
+ else:
3374
+ if size is None:
3375
+ size = self._pensize + max(self._pensize, 4)
3376
+ color = self._colorstr(color)
3377
+ if hasattr(self.screen, "_dot"):
3378
+ item = self.screen._dot(self._position, size, color)
3379
+ self.items.append(item)
3380
+ if self.undobuffer:
3381
+ self.undobuffer.push(("dot", item))
3382
+ else:
3383
+ pen = self.pen()
3384
+ if self.undobuffer:
3385
+ self.undobuffer.push(["seq"])
3386
+ self.undobuffer.cumulate = True
3387
+ try:
3388
+ if self.resizemode() == 'auto':
3389
+ self.ht()
3390
+ self.pendown()
3391
+ self.pensize(size)
3392
+ self.pencolor(color)
3393
+ self.forward(0)
3394
+ finally:
3395
+ self.pen(pen)
3396
+ if self.undobuffer:
3397
+ self.undobuffer.cumulate = False
3398
+
3399
+ def _write(self, txt, align, font):
3400
+ """Performs the writing for write()
3401
+ """
3402
+ item, end = self.screen._write(self._position, txt, align, font,
3403
+ self._pencolor)
3404
+ self.items.append(item)
3405
+ if self.undobuffer:
3406
+ self.undobuffer.push(("wri", item))
3407
+ return end
3408
+
3409
+ def write(self, arg, move=False, align="left", font=("Arial", 8, "normal")):
3410
+ """Write text at the current turtle position.
3411
+
3412
+ Arguments:
3413
+ arg -- info, which is to be written to the TurtleScreen
3414
+ move (optional) -- True/False
3415
+ align (optional) -- one of the strings "left", "center" or right"
3416
+ font (optional) -- a triple (fontname, fontsize, fonttype)
3417
+
3418
+ Write text - the string representation of arg - at the current
3419
+ turtle position according to align ("left", "center" or right")
3420
+ and with the given font.
3421
+ If move is True, the pen is moved to the bottom-right corner
3422
+ of the text. By default, move is False.
3423
+
3424
+ Example (for a Turtle instance named turtle):
3425
+ >>> turtle.write('Home = ', True, align="center")
3426
+ >>> turtle.write((0,0), True)
3427
+ """
3428
+ if self.undobuffer:
3429
+ self.undobuffer.push(["seq"])
3430
+ self.undobuffer.cumulate = True
3431
+ end = self._write(str(arg), align.lower(), font)
3432
+ if move:
3433
+ x, y = self.pos()
3434
+ self.setpos(end, y)
3435
+ if self.undobuffer:
3436
+ self.undobuffer.cumulate = False
3437
+
3438
+ def begin_poly(self):
3439
+ """Start recording the vertices of a polygon.
3440
+
3441
+ No argument.
3442
+
3443
+ Start recording the vertices of a polygon. Current turtle position
3444
+ is first point of polygon.
3445
+
3446
+ Example (for a Turtle instance named turtle):
3447
+ >>> turtle.begin_poly()
3448
+ """
3449
+ self._poly = [self._position]
3450
+ self._creatingPoly = True
3451
+
3452
+ def end_poly(self):
3453
+ """Stop recording the vertices of a polygon.
3454
+
3455
+ No argument.
3456
+
3457
+ Stop recording the vertices of a polygon. Current turtle position is
3458
+ last point of polygon. This will be connected with the first point.
3459
+
3460
+ Example (for a Turtle instance named turtle):
3461
+ >>> turtle.end_poly()
3462
+ """
3463
+ self._creatingPoly = False
3464
+
3465
+ def get_poly(self):
3466
+ """Return the lastly recorded polygon.
3467
+
3468
+ No argument.
3469
+
3470
+ Example (for a Turtle instance named turtle):
3471
+ >>> p = turtle.get_poly()
3472
+ >>> turtle.register_shape("myFavouriteShape", p)
3473
+ """
3474
+ ## check if there is any poly?
3475
+ if self._poly is not None:
3476
+ return tuple(self._poly)
3477
+
3478
+ def getscreen(self):
3479
+ """Return the TurtleScreen object, the turtle is drawing on.
3480
+
3481
+ No argument.
3482
+
3483
+ Return the TurtleScreen object, the turtle is drawing on.
3484
+ So TurtleScreen-methods can be called for that object.
3485
+
3486
+ Example (for a Turtle instance named turtle):
3487
+ >>> ts = turtle.getscreen()
3488
+ >>> ts
3489
+ <turtle.TurtleScreen object at 0x0106B770>
3490
+ >>> ts.bgcolor("pink")
3491
+ """
3492
+ return self.screen
3493
+
3494
+ def getturtle(self):
3495
+ """Return the Turtleobject itself.
3496
+
3497
+ No argument.
3498
+
3499
+ Only reasonable use: as a function to return the 'anonymous turtle':
3500
+
3501
+ Example:
3502
+ >>> pet = getturtle()
3503
+ >>> pet.fd(50)
3504
+ >>> pet
3505
+ <turtle.Turtle object at 0x0187D810>
3506
+ >>> turtles()
3507
+ [<turtle.Turtle object at 0x0187D810>]
3508
+ """
3509
+ return self
3510
+
3511
+ getpen = getturtle
3512
+
3513
+
3514
+ ################################################################
3515
+ ### screen oriented methods recurring to methods of TurtleScreen
3516
+ ################################################################
3517
+
3518
+ def _delay(self, delay=None):
3519
+ """Set delay value which determines speed of turtle animation.
3520
+ """
3521
+ return self.screen.delay(delay)
3522
+
3523
+ def onclick(self, fun, btn=1, add=None):
3524
+ """Bind fun to mouse-click event on this turtle on canvas.
3525
+
3526
+ Arguments:
3527
+ fun -- a function with two arguments, to which will be assigned
3528
+ the coordinates of the clicked point on the canvas.
3529
+ num -- number of the mouse-button defaults to 1 (left mouse button).
3530
+ add -- True or False. If True, new binding will be added, otherwise
3531
+ it will replace a former binding.
3532
+
3533
+ Example for the anonymous turtle, i. e. the procedural way:
3534
+
3535
+ >>> def turn(x, y):
3536
+ ... left(360)
3537
+ ...
3538
+ >>> onclick(turn) # Now clicking into the turtle will turn it.
3539
+ >>> onclick(None) # event-binding will be removed
3540
+ """
3541
+ self.screen._onclick(self.turtle._item, fun, btn, add)
3542
+ self._update()
3543
+
3544
+ def onrelease(self, fun, btn=1, add=None):
3545
+ """Bind fun to mouse-button-release event on this turtle on canvas.
3546
+
3547
+ Arguments:
3548
+ fun -- a function with two arguments, to which will be assigned
3549
+ the coordinates of the clicked point on the canvas.
3550
+ num -- number of the mouse-button defaults to 1 (left mouse button).
3551
+
3552
+ Example (for a MyTurtle instance named joe):
3553
+ >>> class MyTurtle(Turtle):
3554
+ ... def glow(self,x,y):
3555
+ ... self.fillcolor("red")
3556
+ ... def unglow(self,x,y):
3557
+ ... self.fillcolor("")
3558
+ ...
3559
+ >>> joe = MyTurtle()
3560
+ >>> joe.onclick(joe.glow)
3561
+ >>> joe.onrelease(joe.unglow)
3562
+
3563
+ Clicking on joe turns fillcolor red, unclicking turns it to
3564
+ transparent.
3565
+ """
3566
+ self.screen._onrelease(self.turtle._item, fun, btn, add)
3567
+ self._update()
3568
+
3569
+ def ondrag(self, fun, btn=1, add=None):
3570
+ """Bind fun to mouse-move event on this turtle on canvas.
3571
+
3572
+ Arguments:
3573
+ fun -- a function with two arguments, to which will be assigned
3574
+ the coordinates of the clicked point on the canvas.
3575
+ num -- number of the mouse-button defaults to 1 (left mouse button).
3576
+
3577
+ Every sequence of mouse-move-events on a turtle is preceded by a
3578
+ mouse-click event on that turtle.
3579
+
3580
+ Example (for a Turtle instance named turtle):
3581
+ >>> turtle.ondrag(turtle.goto)
3582
+
3583
+ Subsequently clicking and dragging a Turtle will move it
3584
+ across the screen thereby producing handdrawings (if pen is
3585
+ down).
3586
+ """
3587
+ self.screen._ondrag(self.turtle._item, fun, btn, add)
3588
+
3589
+
3590
+ def _undo(self, action, data):
3591
+ """Does the main part of the work for undo()
3592
+ """
3593
+ if self.undobuffer is None:
3594
+ return
3595
+ if action == "rot":
3596
+ angle, degPAU = data
3597
+ self._rotate(-angle*degPAU/self._degreesPerAU)
3598
+ dummy = self.undobuffer.pop()
3599
+ elif action == "stamp":
3600
+ stitem = data[0]
3601
+ self.clearstamp(stitem)
3602
+ elif action == "go":
3603
+ self._undogoto(data)
3604
+ elif action in ["wri", "dot"]:
3605
+ item = data[0]
3606
+ self.screen._delete(item)
3607
+ self.items.remove(item)
3608
+ elif action == "dofill":
3609
+ item = data[0]
3610
+ self.screen._drawpoly(item, ((0, 0),(0, 0),(0, 0)),
3611
+ fill="", outline="")
3612
+ elif action == "beginfill":
3613
+ item = data[0]
3614
+ self._fillitem = self._fillpath = None
3615
+ if item in self.items:
3616
+ self.screen._delete(item)
3617
+ self.items.remove(item)
3618
+ elif action == "pen":
3619
+ TPen.pen(self, data[0])
3620
+ self.undobuffer.pop()
3621
+
3622
+ def undo(self):
3623
+ """undo (repeatedly) the last turtle action.
3624
+
3625
+ No argument.
3626
+
3627
+ undo (repeatedly) the last turtle action.
3628
+ Number of available undo actions is determined by the size of
3629
+ the undobuffer.
3630
+
3631
+ Example (for a Turtle instance named turtle):
3632
+ >>> for i in range(4):
3633
+ ... turtle.fd(50); turtle.lt(80)
3634
+ ...
3635
+ >>> for i in range(8):
3636
+ ... turtle.undo()
3637
+ ...
3638
+ """
3639
+ if self.undobuffer is None:
3640
+ return
3641
+ item = self.undobuffer.pop()
3642
+ action = item[0]
3643
+ data = item[1:]
3644
+ if action == "seq":
3645
+ while data:
3646
+ item = data.pop()
3647
+ self._undo(item[0], item[1:])
3648
+ else:
3649
+ self._undo(action, data)
3650
+
3651
+ turtlesize = shapesize
3652
+
3653
+ RawPen = RawTurtle
3654
+
3655
+ ### Screen - Singleton ########################
3656
+
3657
+ def Screen():
3658
+ """Return the singleton screen object.
3659
+ If none exists at the moment, create a new one and return it,
3660
+ else return the existing one."""
3661
+ if Turtle._screen is None:
3662
+ Turtle._screen = _Screen()
3663
+ return Turtle._screen
3664
+
3665
+ class _Screen(TurtleScreen):
3666
+
3667
+ _root = None
3668
+ _canvas = None
3669
+ _title = _CFG["title"]
3670
+
3671
+ def __init__(self):
3672
+ # XXX there is no need for this code to be conditional,
3673
+ # as there will be only a single _Screen instance, anyway
3674
+ # XXX actually, the turtle demo is injecting root window,
3675
+ # so perhaps the conditional creation of a root should be
3676
+ # preserved (perhaps by passing it as an optional parameter)
3677
+ if _Screen._root is None:
3678
+ _Screen._root = self._root = _Root()
3679
+ self._root.title(_Screen._title)
3680
+ self._root.ondestroy(self._destroy)
3681
+ if _Screen._canvas is None:
3682
+ width = _CFG["width"]
3683
+ height = _CFG["height"]
3684
+ canvwidth = _CFG["canvwidth"]
3685
+ canvheight = _CFG["canvheight"]
3686
+ leftright = _CFG["leftright"]
3687
+ topbottom = _CFG["topbottom"]
3688
+ self._root.setupcanvas(width, height, canvwidth, canvheight)
3689
+ _Screen._canvas = self._root._getcanvas()
3690
+ TurtleScreen.__init__(self, _Screen._canvas)
3691
+ self.setup(width, height, leftright, topbottom)
3692
+
3693
+ def setup(self, width=_CFG["width"], height=_CFG["height"],
3694
+ startx=_CFG["leftright"], starty=_CFG["topbottom"]):
3695
+ """ Set the size and position of the main window.
3696
+
3697
+ Arguments:
3698
+ width: as integer a size in pixels, as float a fraction of the screen.
3699
+ Default is 50% of screen.
3700
+ height: as integer the height in pixels, as float a fraction of the
3701
+ screen. Default is 75% of screen.
3702
+ startx: if positive, starting position in pixels from the left
3703
+ edge of the screen, if negative from the right edge
3704
+ Default, startx=None is to center window horizontally.
3705
+ starty: if positive, starting position in pixels from the top
3706
+ edge of the screen, if negative from the bottom edge
3707
+ Default, starty=None is to center window vertically.
3708
+
3709
+ Examples (for a Screen instance named screen):
3710
+ >>> screen.setup (width=200, height=200, startx=0, starty=0)
3711
+
3712
+ sets window to 200x200 pixels, in upper left of screen
3713
+
3714
+ >>> screen.setup(width=.75, height=0.5, startx=None, starty=None)
3715
+
3716
+ sets window to 75% of screen by 50% of screen and centers
3717
+ """
3718
+ if not hasattr(self._root, "set_geometry"):
3719
+ return
3720
+ sw = self._root.win_width()
3721
+ sh = self._root.win_height()
3722
+ if isinstance(width, float) and 0 <= width <= 1:
3723
+ width = sw*width
3724
+ if startx is None:
3725
+ startx = (sw - width) / 2
3726
+ if isinstance(height, float) and 0 <= height <= 1:
3727
+ height = sh*height
3728
+ if starty is None:
3729
+ starty = (sh - height) / 2
3730
+ self._root.set_geometry(width, height, startx, starty)
3731
+ self.update()
3732
+
3733
+ def title(self, titlestring):
3734
+ """Set title of turtle-window
3735
+
3736
+ Argument:
3737
+ titlestring -- a string, to appear in the titlebar of the
3738
+ turtle graphics window.
3739
+
3740
+ This is a method of Screen-class. Not available for TurtleScreen-
3741
+ objects.
3742
+
3743
+ Example (for a Screen instance named screen):
3744
+ >>> screen.title("Welcome to the turtle-zoo!")
3745
+ """
3746
+ if _Screen._root is not None:
3747
+ _Screen._root.title(titlestring)
3748
+ _Screen._title = titlestring
3749
+
3750
+ def _destroy(self):
3751
+ root = self._root
3752
+ if root is _Screen._root:
3753
+ Turtle._pen = None
3754
+ Turtle._screen = None
3755
+ _Screen._root = None
3756
+ _Screen._canvas = None
3757
+ TurtleScreen._RUNNING = True
3758
+ root.destroy()
3759
+
3760
+ def bye(self):
3761
+ """Shut the turtlegraphics window.
3762
+
3763
+ Example (for a TurtleScreen instance named screen):
3764
+ >>> screen.bye()
3765
+ """
3766
+ self._destroy()
3767
+
3768
+ def exitonclick(self):
3769
+ """Go into mainloop until the mouse is clicked.
3770
+
3771
+ No arguments.
3772
+
3773
+ Bind bye() method to mouseclick on TurtleScreen.
3774
+ If "using_IDLE" - value in configuration dictionary is False
3775
+ (default value), enter mainloop.
3776
+ If IDLE with -n switch (no subprocess) is used, this value should be
3777
+ set to True in turtle.cfg. In this case IDLE's mainloop
3778
+ is active also for the client script.
3779
+
3780
+ This is a method of the Screen-class and not available for
3781
+ TurtleScreen instances.
3782
+
3783
+ Example (for a Screen instance named screen):
3784
+ >>> screen.exitonclick()
3785
+
3786
+ """
3787
+ def exitGracefully(x, y):
3788
+ """Screen.bye() with two dummy-parameters"""
3789
+ self.bye()
3790
+ self.onclick(exitGracefully)
3791
+ if _CFG["using_IDLE"]:
3792
+ return
3793
+ try:
3794
+ mainloop()
3795
+ except AttributeError:
3796
+ exit(0)
3797
+
3798
+
3799
+ class Turtle(RawTurtle):
3800
+ """RawTurtle auto-creating (scrolled) canvas.
3801
+
3802
+ When a Turtle object is created or a function derived from some
3803
+ Turtle method is called a TurtleScreen object is automatically created.
3804
+ """
3805
+ _pen = None
3806
+ _screen = None
3807
+
3808
+ def __init__(self,
3809
+ shape=_CFG["shape"],
3810
+ undobuffersize=_CFG["undobuffersize"],
3811
+ visible=_CFG["visible"]):
3812
+ if Turtle._screen is None:
3813
+ Turtle._screen = Screen()
3814
+ RawTurtle.__init__(self, Turtle._screen,
3815
+ shape=shape,
3816
+ undobuffersize=undobuffersize,
3817
+ visible=visible)
3818
+
3819
+ Pen = Turtle
3820
+
3821
+ def _getpen():
3822
+ """Create the 'anonymous' turtle if not already present."""
3823
+ if Turtle._pen is None:
3824
+ Turtle._pen = Turtle()
3825
+ return Turtle._pen
3826
+
3827
+ def _getscreen():
3828
+ """Create a TurtleScreen if not already present."""
3829
+ if Turtle._screen is None:
3830
+ Turtle._screen = Screen()
3831
+ return Turtle._screen
3832
+
3833
+ def write_docstringdict(filename="turtle_docstringdict"):
3834
+ """Create and write docstring-dictionary to file.
3835
+
3836
+ Optional argument:
3837
+ filename -- a string, used as filename
3838
+ default value is turtle_docstringdict
3839
+
3840
+ Has to be called explicitly, (not used by the turtle-graphics classes)
3841
+ The docstring dictionary will be written to the Python script <filname>.py
3842
+ It is intended to serve as a template for translation of the docstrings
3843
+ into different languages.
3844
+ """
3845
+ docsdict = {}
3846
+
3847
+ for methodname in _tg_screen_functions:
3848
+ key = "_Screen."+methodname
3849
+ docsdict[key] = eval(key).__doc__
3850
+ for methodname in _tg_turtle_functions:
3851
+ key = "Turtle."+methodname
3852
+ docsdict[key] = eval(key).__doc__
3853
+
3854
+ with open("%s.py" % filename,"w") as f:
3855
+ keys = sorted([x for x in docsdict.keys()
3856
+ if x.split('.')[1] not in _alias_list])
3857
+ f.write('docsdict = {\n\n')
3858
+ for key in keys[:-1]:
3859
+ f.write('%s :\n' % repr(key))
3860
+ f.write(' """%s\n""",\n\n' % docsdict[key])
3861
+ key = keys[-1]
3862
+ f.write('%s :\n' % repr(key))
3863
+ f.write(' """%s\n"""\n\n' % docsdict[key])
3864
+ f.write("}\n")
3865
+ f.close()
3866
+
3867
+ def read_docstrings(lang):
3868
+ """Read in docstrings from lang-specific docstring dictionary.
3869
+
3870
+ Transfer docstrings, translated to lang, from a dictionary-file
3871
+ to the methods of classes Screen and Turtle and - in revised form -
3872
+ to the corresponding functions.
3873
+ """
3874
+ modname = "turtle_docstringdict_%(language)s" % {'language':lang.lower()}
3875
+ module = __import__(modname)
3876
+ docsdict = module.docsdict
3877
+ for key in docsdict:
3878
+ try:
3879
+ # eval(key).im_func.__doc__ = docsdict[key]
3880
+ eval(key).__doc__ = docsdict[key]
3881
+ except:
3882
+ print("Bad docstring-entry: %s" % key)
3883
+
3884
+ _LANGUAGE = _CFG["language"]
3885
+
3886
+ try:
3887
+ if _LANGUAGE != "english":
3888
+ read_docstrings(_LANGUAGE)
3889
+ except ImportError:
3890
+ print("Cannot find docsdict for", _LANGUAGE)
3891
+ except:
3892
+ print ("Unknown Error when trying to import %s-docstring-dictionary" %
3893
+ _LANGUAGE)
3894
+
3895
+
3896
+ def getmethparlist(ob):
3897
+ """Get strings describing the arguments for the given object
3898
+
3899
+ Returns a pair of strings representing function parameter lists
3900
+ including parenthesis. The first string is suitable for use in
3901
+ function definition and the second is suitable for use in function
3902
+ call. The "self" parameter is not included.
3903
+ """
3904
+ defText = callText = ""
3905
+ # bit of a hack for methods - turn it into a function
3906
+ # but we drop the "self" param.
3907
+ # Try and build one for Python defined functions
3908
+ args, varargs, varkw = inspect.getargs(ob.__code__)
3909
+ items2 = args[1:]
3910
+ realArgs = args[1:]
3911
+ defaults = ob.__defaults__ or []
3912
+ defaults = ["=%r" % (value,) for value in defaults]
3913
+ defaults = [""] * (len(realArgs)-len(defaults)) + defaults
3914
+ items1 = [arg + dflt for arg, dflt in zip(realArgs, defaults)]
3915
+ if varargs is not None:
3916
+ items1.append("*" + varargs)
3917
+ items2.append("*" + varargs)
3918
+ if varkw is not None:
3919
+ items1.append("**" + varkw)
3920
+ items2.append("**" + varkw)
3921
+ defText = ", ".join(items1)
3922
+ defText = "(%s)" % defText
3923
+ callText = ", ".join(items2)
3924
+ callText = "(%s)" % callText
3925
+ return defText, callText
3926
+
3927
+ def _turtle_docrevise(docstr):
3928
+ """To reduce docstrings from RawTurtle class for functions
3929
+ """
3930
+ import re
3931
+ if docstr is None:
3932
+ return None
3933
+ turtlename = _CFG["exampleturtle"]
3934
+ newdocstr = docstr.replace("%s." % turtlename,"")
3935
+ parexp = re.compile(r' \(.+ %s\):' % turtlename)
3936
+ newdocstr = parexp.sub(":", newdocstr)
3937
+ return newdocstr
3938
+
3939
+ def _screen_docrevise(docstr):
3940
+ """To reduce docstrings from TurtleScreen class for functions
3941
+ """
3942
+ import re
3943
+ if docstr is None:
3944
+ return None
3945
+ screenname = _CFG["examplescreen"]
3946
+ newdocstr = docstr.replace("%s." % screenname,"")
3947
+ parexp = re.compile(r' \(.+ %s\):' % screenname)
3948
+ newdocstr = parexp.sub(":", newdocstr)
3949
+ return newdocstr
3950
+
3951
+ ## The following mechanism makes all methods of RawTurtle and Turtle available
3952
+ ## as functions. So we can enhance, change, add, delete methods to these
3953
+ ## classes and do not need to change anything here.
3954
+
3955
+
3956
+ for methodname in _tg_screen_functions:
3957
+ pl1, pl2 = getmethparlist(eval('_Screen.' + methodname))
3958
+ if pl1 == "":
3959
+ print(">>>>>>", pl1, pl2)
3960
+ continue
3961
+ defstr = ("def %(key)s%(pl1)s: return _getscreen().%(key)s%(pl2)s" %
3962
+ {'key':methodname, 'pl1':pl1, 'pl2':pl2})
3963
+ exec(defstr)
3964
+ eval(methodname).__doc__ = _screen_docrevise(eval('_Screen.'+methodname).__doc__)
3965
+
3966
+ for methodname in _tg_turtle_functions:
3967
+ pl1, pl2 = getmethparlist(eval('Turtle.' + methodname))
3968
+ if pl1 == "":
3969
+ print(">>>>>>", pl1, pl2)
3970
+ continue
3971
+ defstr = ("def %(key)s%(pl1)s: return _getpen().%(key)s%(pl2)s" %
3972
+ {'key':methodname, 'pl1':pl1, 'pl2':pl2})
3973
+ exec(defstr)
3974
+ eval(methodname).__doc__ = _turtle_docrevise(eval('Turtle.'+methodname).__doc__)
3975
+
3976
+
3977
+ done = mainloop
3978
+
3979
+ if __name__ == "__main__":
3980
+ def switchpen():
3981
+ if isdown():
3982
+ pu()
3983
+ else:
3984
+ pd()
3985
+
3986
+ def demo1():
3987
+ """Demo of old turtle.py - module"""
3988
+ reset()
3989
+ tracer(True)
3990
+ up()
3991
+ backward(100)
3992
+ down()
3993
+ # draw 3 squares; the last filled
3994
+ width(3)
3995
+ for i in range(3):
3996
+ if i == 2:
3997
+ begin_fill()
3998
+ for _ in range(4):
3999
+ forward(20)
4000
+ left(90)
4001
+ if i == 2:
4002
+ color("maroon")
4003
+ end_fill()
4004
+ up()
4005
+ forward(30)
4006
+ down()
4007
+ width(1)
4008
+ color("black")
4009
+ # move out of the way
4010
+ tracer(False)
4011
+ up()
4012
+ right(90)
4013
+ forward(100)
4014
+ right(90)
4015
+ forward(100)
4016
+ right(180)
4017
+ down()
4018
+ # some text
4019
+ write("startstart", 1)
4020
+ write("start", 1)
4021
+ color("red")
4022
+ # staircase
4023
+ for i in range(5):
4024
+ forward(20)
4025
+ left(90)
4026
+ forward(20)
4027
+ right(90)
4028
+ # filled staircase
4029
+ tracer(True)
4030
+ begin_fill()
4031
+ for i in range(5):
4032
+ forward(20)
4033
+ left(90)
4034
+ forward(20)
4035
+ right(90)
4036
+ end_fill()
4037
+ # more text
4038
+
4039
+ def demo2():
4040
+ """Demo of some new features."""
4041
+ speed(1)
4042
+ st()
4043
+ pensize(3)
4044
+ setheading(towards(0, 0))
4045
+ radius = distance(0, 0)/2.0
4046
+ rt(90)
4047
+ for _ in range(18):
4048
+ switchpen()
4049
+ circle(radius, 10)
4050
+ write("wait a moment...")
4051
+ while undobufferentries():
4052
+ undo()
4053
+ reset()
4054
+ lt(90)
4055
+ colormode(255)
4056
+ laenge = 10
4057
+ pencolor("green")
4058
+ pensize(3)
4059
+ lt(180)
4060
+ for i in range(-2, 16):
4061
+ if i > 0:
4062
+ begin_fill()
4063
+ fillcolor(255-15*i, 0, 15*i)
4064
+ for _ in range(3):
4065
+ fd(laenge)
4066
+ lt(120)
4067
+ end_fill()
4068
+ laenge += 10
4069
+ lt(15)
4070
+ speed((speed()+1)%12)
4071
+ #end_fill()
4072
+
4073
+ lt(120)
4074
+ pu()
4075
+ fd(70)
4076
+ rt(30)
4077
+ pd()
4078
+ color("red","yellow")
4079
+ speed(0)
4080
+ begin_fill()
4081
+ for _ in range(4):
4082
+ circle(50, 90)
4083
+ rt(90)
4084
+ fd(30)
4085
+ rt(90)
4086
+ end_fill()
4087
+ lt(90)
4088
+ pu()
4089
+ fd(30)
4090
+ pd()
4091
+ shape("turtle")
4092
+
4093
+ tri = getturtle()
4094
+ tri.resizemode("auto")
4095
+ turtle = Turtle()
4096
+ turtle.resizemode("auto")
4097
+ turtle.shape("turtle")
4098
+ turtle.reset()
4099
+ turtle.left(90)
4100
+ turtle.speed(0)
4101
+ turtle.up()
4102
+ turtle.goto(280, 40)
4103
+ turtle.lt(30)
4104
+ turtle.down()
4105
+ turtle.speed(6)
4106
+ turtle.color("blue","orange")
4107
+ turtle.pensize(2)
4108
+ tri.speed(6)
4109
+ setheading(towards(turtle))
4110
+ count = 1
4111
+ while tri.distance(turtle) > 4:
4112
+ turtle.fd(3.5)
4113
+ turtle.lt(0.6)
4114
+ tri.setheading(tri.towards(turtle))
4115
+ tri.fd(4)
4116
+ if count % 20 == 0:
4117
+ turtle.stamp()
4118
+ tri.stamp()
4119
+ switchpen()
4120
+ count += 1
4121
+ tri.write("CAUGHT! ", font=("Arial", 16, "bold"), align="right")
4122
+ tri.pencolor("black")
4123
+ tri.pencolor("red")
4124
+
4125
+ def baba(xdummy, ydummy):
4126
+ clearscreen()
4127
+ bye()
4128
+
4129
+ time.sleep(2)
4130
+
4131
+ while undobufferentries():
4132
+ tri.undo()
4133
+ turtle.undo()
4134
+ tri.fd(50)
4135
+ tri.write(" Click me!", font = ("Courier", 12, "bold") )
4136
+ tri.onclick(baba, 1)
4137
+
4138
+ demo1()
4139
+ demo2()
4140
+ exitonclick()