@pairling/runtime-darwin-x64 0.0.0 → 0.2.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 (1238) hide show
  1. package/bin/pairling-connectd +0 -0
  2. package/manifest.json +18 -0
  3. package/package.json +2 -2
  4. package/python/bin/2to3-3.12 +7 -0
  5. package/python/bin/idle3.12 +7 -0
  6. package/python/bin/pip +8 -0
  7. package/python/bin/pip3 +8 -0
  8. package/python/bin/pip3.12 +8 -0
  9. package/python/bin/pydoc3.12 +7 -0
  10. package/python/bin/python3 +0 -0
  11. package/python/bin/python3.12 +0 -0
  12. package/python/bin/python3.12-config +76 -0
  13. package/python/include/python3.12/Python.h +109 -0
  14. package/python/include/python3.12/abstract.h +899 -0
  15. package/python/include/python3.12/bltinmodule.h +14 -0
  16. package/python/include/python3.12/boolobject.h +42 -0
  17. package/python/include/python3.12/bytearrayobject.h +44 -0
  18. package/python/include/python3.12/bytesobject.h +69 -0
  19. package/python/include/python3.12/ceval.h +168 -0
  20. package/python/include/python3.12/codecs.h +248 -0
  21. package/python/include/python3.12/compile.h +22 -0
  22. package/python/include/python3.12/complexobject.h +30 -0
  23. package/python/include/python3.12/cpython/abstract.h +206 -0
  24. package/python/include/python3.12/cpython/bytearrayobject.h +34 -0
  25. package/python/include/python3.12/cpython/bytesobject.h +133 -0
  26. package/python/include/python3.12/cpython/cellobject.h +44 -0
  27. package/python/include/python3.12/cpython/ceval.h +35 -0
  28. package/python/include/python3.12/cpython/classobject.h +71 -0
  29. package/python/include/python3.12/cpython/code.h +389 -0
  30. package/python/include/python3.12/cpython/compile.h +69 -0
  31. package/python/include/python3.12/cpython/complexobject.h +44 -0
  32. package/python/include/python3.12/cpython/context.h +78 -0
  33. package/python/include/python3.12/cpython/descrobject.h +64 -0
  34. package/python/include/python3.12/cpython/dictobject.h +118 -0
  35. package/python/include/python3.12/cpython/fileobject.h +19 -0
  36. package/python/include/python3.12/cpython/fileutils.h +8 -0
  37. package/python/include/python3.12/cpython/floatobject.h +27 -0
  38. package/python/include/python3.12/cpython/frameobject.h +29 -0
  39. package/python/include/python3.12/cpython/funcobject.h +190 -0
  40. package/python/include/python3.12/cpython/genobject.h +89 -0
  41. package/python/include/python3.12/cpython/import.h +46 -0
  42. package/python/include/python3.12/cpython/initconfig.h +256 -0
  43. package/python/include/python3.12/cpython/interpreteridobject.h +11 -0
  44. package/python/include/python3.12/cpython/listobject.h +47 -0
  45. package/python/include/python3.12/cpython/longintrepr.h +133 -0
  46. package/python/include/python3.12/cpython/longobject.h +100 -0
  47. package/python/include/python3.12/cpython/memoryobject.h +52 -0
  48. package/python/include/python3.12/cpython/methodobject.h +66 -0
  49. package/python/include/python3.12/cpython/modsupport.h +109 -0
  50. package/python/include/python3.12/cpython/object.h +575 -0
  51. package/python/include/python3.12/cpython/objimpl.h +95 -0
  52. package/python/include/python3.12/cpython/odictobject.h +43 -0
  53. package/python/include/python3.12/cpython/picklebufobject.h +31 -0
  54. package/python/include/python3.12/cpython/pthread_stubs.h +88 -0
  55. package/python/include/python3.12/cpython/pyctype.h +39 -0
  56. package/python/include/python3.12/cpython/pydebug.h +38 -0
  57. package/python/include/python3.12/cpython/pyerrors.h +178 -0
  58. package/python/include/python3.12/cpython/pyfpe.h +15 -0
  59. package/python/include/python3.12/cpython/pyframe.h +35 -0
  60. package/python/include/python3.12/cpython/pylifecycle.h +111 -0
  61. package/python/include/python3.12/cpython/pymem.h +98 -0
  62. package/python/include/python3.12/cpython/pystate.h +456 -0
  63. package/python/include/python3.12/cpython/pythonrun.h +121 -0
  64. package/python/include/python3.12/cpython/pythread.h +42 -0
  65. package/python/include/python3.12/cpython/pytime.h +331 -0
  66. package/python/include/python3.12/cpython/setobject.h +72 -0
  67. package/python/include/python3.12/cpython/sysmodule.h +16 -0
  68. package/python/include/python3.12/cpython/traceback.h +16 -0
  69. package/python/include/python3.12/cpython/tupleobject.h +39 -0
  70. package/python/include/python3.12/cpython/unicodeobject.h +976 -0
  71. package/python/include/python3.12/cpython/warnings.h +20 -0
  72. package/python/include/python3.12/cpython/weakrefobject.h +56 -0
  73. package/python/include/python3.12/datetime.h +267 -0
  74. package/python/include/python3.12/descrobject.h +100 -0
  75. package/python/include/python3.12/dictobject.h +97 -0
  76. package/python/include/python3.12/dynamic_annotations.h +499 -0
  77. package/python/include/python3.12/enumobject.h +17 -0
  78. package/python/include/python3.12/errcode.h +38 -0
  79. package/python/include/python3.12/exports.h +36 -0
  80. package/python/include/python3.12/fileobject.h +49 -0
  81. package/python/include/python3.12/fileutils.h +26 -0
  82. package/python/include/python3.12/floatobject.h +54 -0
  83. package/python/include/python3.12/frameobject.h +20 -0
  84. package/python/include/python3.12/genericaliasobject.h +14 -0
  85. package/python/include/python3.12/import.h +98 -0
  86. package/python/include/python3.12/internal/pycore_abstract.h +25 -0
  87. package/python/include/python3.12/internal/pycore_asdl.h +112 -0
  88. package/python/include/python3.12/internal/pycore_ast.h +922 -0
  89. package/python/include/python3.12/internal/pycore_ast_state.h +265 -0
  90. package/python/include/python3.12/internal/pycore_atexit.h +57 -0
  91. package/python/include/python3.12/internal/pycore_atomic.h +557 -0
  92. package/python/include/python3.12/internal/pycore_atomic_funcs.h +94 -0
  93. package/python/include/python3.12/internal/pycore_bitutils.h +186 -0
  94. package/python/include/python3.12/internal/pycore_blocks_output_buffer.h +317 -0
  95. package/python/include/python3.12/internal/pycore_bytes_methods.h +73 -0
  96. package/python/include/python3.12/internal/pycore_bytesobject.h +47 -0
  97. package/python/include/python3.12/internal/pycore_call.h +133 -0
  98. package/python/include/python3.12/internal/pycore_ceval.h +164 -0
  99. package/python/include/python3.12/internal/pycore_ceval_state.h +103 -0
  100. package/python/include/python3.12/internal/pycore_code.h +496 -0
  101. package/python/include/python3.12/internal/pycore_compile.h +118 -0
  102. package/python/include/python3.12/internal/pycore_condvar.h +99 -0
  103. package/python/include/python3.12/internal/pycore_context.h +71 -0
  104. package/python/include/python3.12/internal/pycore_descrobject.h +26 -0
  105. package/python/include/python3.12/internal/pycore_dict.h +199 -0
  106. package/python/include/python3.12/internal/pycore_dict_state.h +50 -0
  107. package/python/include/python3.12/internal/pycore_dtoa.h +69 -0
  108. package/python/include/python3.12/internal/pycore_emscripten_signal.h +25 -0
  109. package/python/include/python3.12/internal/pycore_exceptions.h +37 -0
  110. package/python/include/python3.12/internal/pycore_faulthandler.h +99 -0
  111. package/python/include/python3.12/internal/pycore_fileutils.h +292 -0
  112. package/python/include/python3.12/internal/pycore_fileutils_windows.h +98 -0
  113. package/python/include/python3.12/internal/pycore_floatobject.h +71 -0
  114. package/python/include/python3.12/internal/pycore_flowgraph.h +120 -0
  115. package/python/include/python3.12/internal/pycore_format.h +27 -0
  116. package/python/include/python3.12/internal/pycore_frame.h +283 -0
  117. package/python/include/python3.12/internal/pycore_function.h +26 -0
  118. package/python/include/python3.12/internal/pycore_gc.h +211 -0
  119. package/python/include/python3.12/internal/pycore_genobject.h +49 -0
  120. package/python/include/python3.12/internal/pycore_getopt.h +22 -0
  121. package/python/include/python3.12/internal/pycore_gil.h +50 -0
  122. package/python/include/python3.12/internal/pycore_global_objects.h +105 -0
  123. package/python/include/python3.12/internal/pycore_global_objects_fini_generated.h +1517 -0
  124. package/python/include/python3.12/internal/pycore_global_strings.h +777 -0
  125. package/python/include/python3.12/internal/pycore_hamt.h +134 -0
  126. package/python/include/python3.12/internal/pycore_hashtable.h +149 -0
  127. package/python/include/python3.12/internal/pycore_import.h +183 -0
  128. package/python/include/python3.12/internal/pycore_initconfig.h +179 -0
  129. package/python/include/python3.12/internal/pycore_instruments.h +106 -0
  130. package/python/include/python3.12/internal/pycore_interp.h +275 -0
  131. package/python/include/python3.12/internal/pycore_intrinsics.h +32 -0
  132. package/python/include/python3.12/internal/pycore_list.h +83 -0
  133. package/python/include/python3.12/internal/pycore_long.h +258 -0
  134. package/python/include/python3.12/internal/pycore_memoryobject.h +18 -0
  135. package/python/include/python3.12/internal/pycore_moduleobject.h +45 -0
  136. package/python/include/python3.12/internal/pycore_namespace.h +20 -0
  137. package/python/include/python3.12/internal/pycore_object.h +455 -0
  138. package/python/include/python3.12/internal/pycore_object_state.h +42 -0
  139. package/python/include/python3.12/internal/pycore_obmalloc.h +700 -0
  140. package/python/include/python3.12/internal/pycore_obmalloc_init.h +73 -0
  141. package/python/include/python3.12/internal/pycore_opcode.h +587 -0
  142. package/python/include/python3.12/internal/pycore_opcode_utils.h +92 -0
  143. package/python/include/python3.12/internal/pycore_parser.h +66 -0
  144. package/python/include/python3.12/internal/pycore_pathconfig.h +24 -0
  145. package/python/include/python3.12/internal/pycore_pyarena.h +64 -0
  146. package/python/include/python3.12/internal/pycore_pyerrors.h +129 -0
  147. package/python/include/python3.12/internal/pycore_pyhash.h +40 -0
  148. package/python/include/python3.12/internal/pycore_pylifecycle.h +99 -0
  149. package/python/include/python3.12/internal/pycore_pymath.h +205 -0
  150. package/python/include/python3.12/internal/pycore_pymem.h +98 -0
  151. package/python/include/python3.12/internal/pycore_pymem_init.h +85 -0
  152. package/python/include/python3.12/internal/pycore_pystate.h +180 -0
  153. package/python/include/python3.12/internal/pycore_pythread.h +81 -0
  154. package/python/include/python3.12/internal/pycore_range.h +21 -0
  155. package/python/include/python3.12/internal/pycore_runtime.h +235 -0
  156. package/python/include/python3.12/internal/pycore_runtime_init.h +188 -0
  157. package/python/include/python3.12/internal/pycore_runtime_init_generated.h +1511 -0
  158. package/python/include/python3.12/internal/pycore_signal.h +98 -0
  159. package/python/include/python3.12/internal/pycore_sliceobject.h +22 -0
  160. package/python/include/python3.12/internal/pycore_strhex.h +36 -0
  161. package/python/include/python3.12/internal/pycore_structseq.h +39 -0
  162. package/python/include/python3.12/internal/pycore_symtable.h +160 -0
  163. package/python/include/python3.12/internal/pycore_sysmodule.h +34 -0
  164. package/python/include/python3.12/internal/pycore_time.h +25 -0
  165. package/python/include/python3.12/internal/pycore_token.h +108 -0
  166. package/python/include/python3.12/internal/pycore_traceback.h +101 -0
  167. package/python/include/python3.12/internal/pycore_tracemalloc.h +123 -0
  168. package/python/include/python3.12/internal/pycore_tuple.h +79 -0
  169. package/python/include/python3.12/internal/pycore_typeobject.h +151 -0
  170. package/python/include/python3.12/internal/pycore_typevarobject.h +24 -0
  171. package/python/include/python3.12/internal/pycore_ucnhash.h +34 -0
  172. package/python/include/python3.12/internal/pycore_unicodeobject.h +86 -0
  173. package/python/include/python3.12/internal/pycore_unicodeobject_generated.h +2832 -0
  174. package/python/include/python3.12/internal/pycore_unionobject.h +23 -0
  175. package/python/include/python3.12/internal/pycore_warnings.h +29 -0
  176. package/python/include/python3.12/interpreteridobject.h +17 -0
  177. package/python/include/python3.12/intrcheck.h +30 -0
  178. package/python/include/python3.12/iterobject.h +27 -0
  179. package/python/include/python3.12/listobject.h +52 -0
  180. package/python/include/python3.12/longobject.h +108 -0
  181. package/python/include/python3.12/marshal.h +31 -0
  182. package/python/include/python3.12/memoryobject.h +34 -0
  183. package/python/include/python3.12/methodobject.h +132 -0
  184. package/python/include/python3.12/modsupport.h +168 -0
  185. package/python/include/python3.12/moduleobject.h +119 -0
  186. package/python/include/python3.12/object.h +993 -0
  187. package/python/include/python3.12/objimpl.h +234 -0
  188. package/python/include/python3.12/opcode.h +271 -0
  189. package/python/include/python3.12/osdefs.h +51 -0
  190. package/python/include/python3.12/osmodule.h +17 -0
  191. package/python/include/python3.12/patchlevel.h +35 -0
  192. package/python/include/python3.12/py_curses.h +99 -0
  193. package/python/include/python3.12/pybuffer.h +145 -0
  194. package/python/include/python3.12/pycapsule.h +59 -0
  195. package/python/include/python3.12/pyconfig.h +1943 -0
  196. package/python/include/python3.12/pydtrace.h +59 -0
  197. package/python/include/python3.12/pyerrors.h +337 -0
  198. package/python/include/python3.12/pyexpat.h +62 -0
  199. package/python/include/python3.12/pyframe.h +26 -0
  200. package/python/include/python3.12/pyhash.h +144 -0
  201. package/python/include/python3.12/pylifecycle.h +78 -0
  202. package/python/include/python3.12/pymacconfig.h +99 -0
  203. package/python/include/python3.12/pymacro.h +172 -0
  204. package/python/include/python3.12/pymath.h +62 -0
  205. package/python/include/python3.12/pymem.h +104 -0
  206. package/python/include/python3.12/pyport.h +782 -0
  207. package/python/include/python3.12/pystate.h +132 -0
  208. package/python/include/python3.12/pystats.h +110 -0
  209. package/python/include/python3.12/pystrcmp.h +23 -0
  210. package/python/include/python3.12/pystrtod.h +46 -0
  211. package/python/include/python3.12/pythonrun.h +49 -0
  212. package/python/include/python3.12/pythread.h +135 -0
  213. package/python/include/python3.12/pytypedefs.h +30 -0
  214. package/python/include/python3.12/rangeobject.h +27 -0
  215. package/python/include/python3.12/setobject.h +49 -0
  216. package/python/include/python3.12/sliceobject.h +65 -0
  217. package/python/include/python3.12/structmember.h +56 -0
  218. package/python/include/python3.12/structseq.h +49 -0
  219. package/python/include/python3.12/sysmodule.h +54 -0
  220. package/python/include/python3.12/traceback.h +26 -0
  221. package/python/include/python3.12/tracemalloc.h +77 -0
  222. package/python/include/python3.12/tupleobject.h +46 -0
  223. package/python/include/python3.12/typeslots.h +88 -0
  224. package/python/include/python3.12/unicodeobject.h +1020 -0
  225. package/python/include/python3.12/warnings.h +45 -0
  226. package/python/include/python3.12/weakrefobject.h +42 -0
  227. package/python/lib/libpython3.12.dylib +0 -0
  228. package/python/lib/python3.12/LICENSE.txt +279 -0
  229. package/python/lib/python3.12/__future__.py +147 -0
  230. package/python/lib/python3.12/__hello__.py +16 -0
  231. package/python/lib/python3.12/__phello__/__init__.py +7 -0
  232. package/python/lib/python3.12/__phello__/spam.py +7 -0
  233. package/python/lib/python3.12/_aix_support.py +108 -0
  234. package/python/lib/python3.12/_collections_abc.py +1173 -0
  235. package/python/lib/python3.12/_compat_pickle.py +252 -0
  236. package/python/lib/python3.12/_compression.py +162 -0
  237. package/python/lib/python3.12/_markupbase.py +396 -0
  238. package/python/lib/python3.12/_osx_support.py +579 -0
  239. package/python/lib/python3.12/_py_abc.py +147 -0
  240. package/python/lib/python3.12/_pydatetime.py +2643 -0
  241. package/python/lib/python3.12/_pydecimal.py +6339 -0
  242. package/python/lib/python3.12/_pyio.py +2698 -0
  243. package/python/lib/python3.12/_pylong.py +329 -0
  244. package/python/lib/python3.12/_sitebuiltins.py +103 -0
  245. package/python/lib/python3.12/_strptime.py +664 -0
  246. package/python/lib/python3.12/_sysconfigdata__darwin_darwin.py +984 -0
  247. package/python/lib/python3.12/_threading_local.py +242 -0
  248. package/python/lib/python3.12/_weakrefset.py +205 -0
  249. package/python/lib/python3.12/abc.py +188 -0
  250. package/python/lib/python3.12/aifc.py +984 -0
  251. package/python/lib/python3.12/antigravity.py +17 -0
  252. package/python/lib/python3.12/argparse.py +2650 -0
  253. package/python/lib/python3.12/ast.py +1840 -0
  254. package/python/lib/python3.12/asyncio/__init__.py +47 -0
  255. package/python/lib/python3.12/asyncio/__main__.py +128 -0
  256. package/python/lib/python3.12/asyncio/base_events.py +2024 -0
  257. package/python/lib/python3.12/asyncio/base_futures.py +67 -0
  258. package/python/lib/python3.12/asyncio/base_subprocess.py +285 -0
  259. package/python/lib/python3.12/asyncio/base_tasks.py +94 -0
  260. package/python/lib/python3.12/asyncio/constants.py +41 -0
  261. package/python/lib/python3.12/asyncio/coroutines.py +109 -0
  262. package/python/lib/python3.12/asyncio/events.py +868 -0
  263. package/python/lib/python3.12/asyncio/exceptions.py +62 -0
  264. package/python/lib/python3.12/asyncio/format_helpers.py +76 -0
  265. package/python/lib/python3.12/asyncio/futures.py +430 -0
  266. package/python/lib/python3.12/asyncio/locks.py +586 -0
  267. package/python/lib/python3.12/asyncio/log.py +7 -0
  268. package/python/lib/python3.12/asyncio/mixins.py +21 -0
  269. package/python/lib/python3.12/asyncio/proactor_events.py +897 -0
  270. package/python/lib/python3.12/asyncio/protocols.py +216 -0
  271. package/python/lib/python3.12/asyncio/queues.py +244 -0
  272. package/python/lib/python3.12/asyncio/runners.py +216 -0
  273. package/python/lib/python3.12/asyncio/selector_events.py +1324 -0
  274. package/python/lib/python3.12/asyncio/sslproto.py +929 -0
  275. package/python/lib/python3.12/asyncio/staggered.py +174 -0
  276. package/python/lib/python3.12/asyncio/streams.py +770 -0
  277. package/python/lib/python3.12/asyncio/subprocess.py +229 -0
  278. package/python/lib/python3.12/asyncio/taskgroups.py +268 -0
  279. package/python/lib/python3.12/asyncio/tasks.py +1065 -0
  280. package/python/lib/python3.12/asyncio/threads.py +25 -0
  281. package/python/lib/python3.12/asyncio/timeouts.py +168 -0
  282. package/python/lib/python3.12/asyncio/transports.py +335 -0
  283. package/python/lib/python3.12/asyncio/trsock.py +98 -0
  284. package/python/lib/python3.12/asyncio/unix_events.py +1500 -0
  285. package/python/lib/python3.12/asyncio/windows_events.py +901 -0
  286. package/python/lib/python3.12/asyncio/windows_utils.py +173 -0
  287. package/python/lib/python3.12/base64.py +586 -0
  288. package/python/lib/python3.12/bdb.py +920 -0
  289. package/python/lib/python3.12/bisect.py +118 -0
  290. package/python/lib/python3.12/bz2.py +344 -0
  291. package/python/lib/python3.12/cProfile.py +195 -0
  292. package/python/lib/python3.12/calendar.py +808 -0
  293. package/python/lib/python3.12/cgi.py +1014 -0
  294. package/python/lib/python3.12/cgitb.py +332 -0
  295. package/python/lib/python3.12/chunk.py +173 -0
  296. package/python/lib/python3.12/cmd.py +401 -0
  297. package/python/lib/python3.12/code.py +324 -0
  298. package/python/lib/python3.12/codecs.py +1129 -0
  299. package/python/lib/python3.12/codeop.py +161 -0
  300. package/python/lib/python3.12/collections/__init__.py +1592 -0
  301. package/python/lib/python3.12/collections/abc.py +3 -0
  302. package/python/lib/python3.12/colorsys.py +166 -0
  303. package/python/lib/python3.12/compileall.py +469 -0
  304. package/python/lib/python3.12/concurrent/__init__.py +1 -0
  305. package/python/lib/python3.12/concurrent/futures/__init__.py +54 -0
  306. package/python/lib/python3.12/concurrent/futures/_base.py +654 -0
  307. package/python/lib/python3.12/concurrent/futures/process.py +876 -0
  308. package/python/lib/python3.12/concurrent/futures/thread.py +240 -0
  309. package/python/lib/python3.12/config-3.12-darwin/Makefile +3224 -0
  310. package/python/lib/python3.12/config-3.12-darwin/Setup +303 -0
  311. package/python/lib/python3.12/config-3.12-darwin/Setup.bootstrap +36 -0
  312. package/python/lib/python3.12/config-3.12-darwin/Setup.local +90 -0
  313. package/python/lib/python3.12/config-3.12-darwin/Setup.stdlib +183 -0
  314. package/python/lib/python3.12/config-3.12-darwin/config.c +246 -0
  315. package/python/lib/python3.12/config-3.12-darwin/config.c.in +71 -0
  316. package/python/lib/python3.12/config-3.12-darwin/install-sh +541 -0
  317. package/python/lib/python3.12/config-3.12-darwin/makesetup +353 -0
  318. package/python/lib/python3.12/config-3.12-darwin/python-config.py +76 -0
  319. package/python/lib/python3.12/config-3.12-darwin/python.o +0 -0
  320. package/python/lib/python3.12/configparser.py +1333 -0
  321. package/python/lib/python3.12/contextlib.py +800 -0
  322. package/python/lib/python3.12/contextvars.py +4 -0
  323. package/python/lib/python3.12/copy.py +292 -0
  324. package/python/lib/python3.12/copyreg.py +217 -0
  325. package/python/lib/python3.12/crypt.py +124 -0
  326. package/python/lib/python3.12/csv.py +451 -0
  327. package/python/lib/python3.12/ctypes/__init__.py +582 -0
  328. package/python/lib/python3.12/ctypes/_aix.py +327 -0
  329. package/python/lib/python3.12/ctypes/_endian.py +78 -0
  330. package/python/lib/python3.12/ctypes/macholib/README.ctypes +7 -0
  331. package/python/lib/python3.12/ctypes/macholib/__init__.py +9 -0
  332. package/python/lib/python3.12/ctypes/macholib/dyld.py +165 -0
  333. package/python/lib/python3.12/ctypes/macholib/dylib.py +42 -0
  334. package/python/lib/python3.12/ctypes/macholib/fetch_macholib +2 -0
  335. package/python/lib/python3.12/ctypes/macholib/fetch_macholib.bat +1 -0
  336. package/python/lib/python3.12/ctypes/macholib/framework.py +42 -0
  337. package/python/lib/python3.12/ctypes/util.py +379 -0
  338. package/python/lib/python3.12/ctypes/wintypes.py +202 -0
  339. package/python/lib/python3.12/curses/__init__.py +101 -0
  340. package/python/lib/python3.12/curses/ascii.py +99 -0
  341. package/python/lib/python3.12/curses/has_key.py +192 -0
  342. package/python/lib/python3.12/curses/panel.py +6 -0
  343. package/python/lib/python3.12/curses/textpad.py +204 -0
  344. package/python/lib/python3.12/dataclasses.py +1588 -0
  345. package/python/lib/python3.12/datetime.py +9 -0
  346. package/python/lib/python3.12/dbm/__init__.py +190 -0
  347. package/python/lib/python3.12/dbm/dumb.py +317 -0
  348. package/python/lib/python3.12/dbm/gnu.py +3 -0
  349. package/python/lib/python3.12/dbm/ndbm.py +3 -0
  350. package/python/lib/python3.12/decimal.py +108 -0
  351. package/python/lib/python3.12/difflib.py +2056 -0
  352. package/python/lib/python3.12/dis.py +805 -0
  353. package/python/lib/python3.12/doctest.py +2845 -0
  354. package/python/lib/python3.12/email/__init__.py +61 -0
  355. package/python/lib/python3.12/email/_encoded_words.py +233 -0
  356. package/python/lib/python3.12/email/_header_value_parser.py +3108 -0
  357. package/python/lib/python3.12/email/_parseaddr.py +557 -0
  358. package/python/lib/python3.12/email/_policybase.py +382 -0
  359. package/python/lib/python3.12/email/architecture.rst +216 -0
  360. package/python/lib/python3.12/email/base64mime.py +115 -0
  361. package/python/lib/python3.12/email/charset.py +398 -0
  362. package/python/lib/python3.12/email/contentmanager.py +251 -0
  363. package/python/lib/python3.12/email/encoders.py +65 -0
  364. package/python/lib/python3.12/email/errors.py +117 -0
  365. package/python/lib/python3.12/email/feedparser.py +534 -0
  366. package/python/lib/python3.12/email/generator.py +530 -0
  367. package/python/lib/python3.12/email/header.py +573 -0
  368. package/python/lib/python3.12/email/headerregistry.py +604 -0
  369. package/python/lib/python3.12/email/iterators.py +68 -0
  370. package/python/lib/python3.12/email/message.py +1215 -0
  371. package/python/lib/python3.12/email/mime/__init__.py +0 -0
  372. package/python/lib/python3.12/email/mime/application.py +37 -0
  373. package/python/lib/python3.12/email/mime/audio.py +100 -0
  374. package/python/lib/python3.12/email/mime/base.py +29 -0
  375. package/python/lib/python3.12/email/mime/image.py +152 -0
  376. package/python/lib/python3.12/email/mime/message.py +33 -0
  377. package/python/lib/python3.12/email/mime/multipart.py +47 -0
  378. package/python/lib/python3.12/email/mime/nonmultipart.py +21 -0
  379. package/python/lib/python3.12/email/mime/text.py +40 -0
  380. package/python/lib/python3.12/email/parser.py +127 -0
  381. package/python/lib/python3.12/email/policy.py +232 -0
  382. package/python/lib/python3.12/email/quoprimime.py +300 -0
  383. package/python/lib/python3.12/email/utils.py +486 -0
  384. package/python/lib/python3.12/encodings/__init__.py +174 -0
  385. package/python/lib/python3.12/encodings/aliases.py +551 -0
  386. package/python/lib/python3.12/encodings/ascii.py +50 -0
  387. package/python/lib/python3.12/encodings/base64_codec.py +55 -0
  388. package/python/lib/python3.12/encodings/big5.py +39 -0
  389. package/python/lib/python3.12/encodings/big5hkscs.py +39 -0
  390. package/python/lib/python3.12/encodings/bz2_codec.py +78 -0
  391. package/python/lib/python3.12/encodings/charmap.py +69 -0
  392. package/python/lib/python3.12/encodings/cp037.py +307 -0
  393. package/python/lib/python3.12/encodings/cp1006.py +307 -0
  394. package/python/lib/python3.12/encodings/cp1026.py +307 -0
  395. package/python/lib/python3.12/encodings/cp1125.py +698 -0
  396. package/python/lib/python3.12/encodings/cp1140.py +307 -0
  397. package/python/lib/python3.12/encodings/cp1250.py +307 -0
  398. package/python/lib/python3.12/encodings/cp1251.py +307 -0
  399. package/python/lib/python3.12/encodings/cp1252.py +307 -0
  400. package/python/lib/python3.12/encodings/cp1253.py +307 -0
  401. package/python/lib/python3.12/encodings/cp1254.py +307 -0
  402. package/python/lib/python3.12/encodings/cp1255.py +307 -0
  403. package/python/lib/python3.12/encodings/cp1256.py +307 -0
  404. package/python/lib/python3.12/encodings/cp1257.py +307 -0
  405. package/python/lib/python3.12/encodings/cp1258.py +307 -0
  406. package/python/lib/python3.12/encodings/cp273.py +307 -0
  407. package/python/lib/python3.12/encodings/cp424.py +307 -0
  408. package/python/lib/python3.12/encodings/cp437.py +698 -0
  409. package/python/lib/python3.12/encodings/cp500.py +307 -0
  410. package/python/lib/python3.12/encodings/cp720.py +309 -0
  411. package/python/lib/python3.12/encodings/cp737.py +698 -0
  412. package/python/lib/python3.12/encodings/cp775.py +697 -0
  413. package/python/lib/python3.12/encodings/cp850.py +698 -0
  414. package/python/lib/python3.12/encodings/cp852.py +698 -0
  415. package/python/lib/python3.12/encodings/cp855.py +698 -0
  416. package/python/lib/python3.12/encodings/cp856.py +307 -0
  417. package/python/lib/python3.12/encodings/cp857.py +694 -0
  418. package/python/lib/python3.12/encodings/cp858.py +698 -0
  419. package/python/lib/python3.12/encodings/cp860.py +698 -0
  420. package/python/lib/python3.12/encodings/cp861.py +698 -0
  421. package/python/lib/python3.12/encodings/cp862.py +698 -0
  422. package/python/lib/python3.12/encodings/cp863.py +698 -0
  423. package/python/lib/python3.12/encodings/cp864.py +690 -0
  424. package/python/lib/python3.12/encodings/cp865.py +698 -0
  425. package/python/lib/python3.12/encodings/cp866.py +698 -0
  426. package/python/lib/python3.12/encodings/cp869.py +689 -0
  427. package/python/lib/python3.12/encodings/cp874.py +307 -0
  428. package/python/lib/python3.12/encodings/cp875.py +307 -0
  429. package/python/lib/python3.12/encodings/cp932.py +39 -0
  430. package/python/lib/python3.12/encodings/cp949.py +39 -0
  431. package/python/lib/python3.12/encodings/cp950.py +39 -0
  432. package/python/lib/python3.12/encodings/euc_jis_2004.py +39 -0
  433. package/python/lib/python3.12/encodings/euc_jisx0213.py +39 -0
  434. package/python/lib/python3.12/encodings/euc_jp.py +39 -0
  435. package/python/lib/python3.12/encodings/euc_kr.py +39 -0
  436. package/python/lib/python3.12/encodings/gb18030.py +39 -0
  437. package/python/lib/python3.12/encodings/gb2312.py +39 -0
  438. package/python/lib/python3.12/encodings/gbk.py +39 -0
  439. package/python/lib/python3.12/encodings/hex_codec.py +55 -0
  440. package/python/lib/python3.12/encodings/hp_roman8.py +314 -0
  441. package/python/lib/python3.12/encodings/hz.py +39 -0
  442. package/python/lib/python3.12/encodings/idna.py +317 -0
  443. package/python/lib/python3.12/encodings/iso2022_jp.py +39 -0
  444. package/python/lib/python3.12/encodings/iso2022_jp_1.py +39 -0
  445. package/python/lib/python3.12/encodings/iso2022_jp_2.py +39 -0
  446. package/python/lib/python3.12/encodings/iso2022_jp_2004.py +39 -0
  447. package/python/lib/python3.12/encodings/iso2022_jp_3.py +39 -0
  448. package/python/lib/python3.12/encodings/iso2022_jp_ext.py +39 -0
  449. package/python/lib/python3.12/encodings/iso2022_kr.py +39 -0
  450. package/python/lib/python3.12/encodings/iso8859_1.py +307 -0
  451. package/python/lib/python3.12/encodings/iso8859_10.py +307 -0
  452. package/python/lib/python3.12/encodings/iso8859_11.py +307 -0
  453. package/python/lib/python3.12/encodings/iso8859_13.py +307 -0
  454. package/python/lib/python3.12/encodings/iso8859_14.py +307 -0
  455. package/python/lib/python3.12/encodings/iso8859_15.py +307 -0
  456. package/python/lib/python3.12/encodings/iso8859_16.py +307 -0
  457. package/python/lib/python3.12/encodings/iso8859_2.py +307 -0
  458. package/python/lib/python3.12/encodings/iso8859_3.py +307 -0
  459. package/python/lib/python3.12/encodings/iso8859_4.py +307 -0
  460. package/python/lib/python3.12/encodings/iso8859_5.py +307 -0
  461. package/python/lib/python3.12/encodings/iso8859_6.py +307 -0
  462. package/python/lib/python3.12/encodings/iso8859_7.py +307 -0
  463. package/python/lib/python3.12/encodings/iso8859_8.py +307 -0
  464. package/python/lib/python3.12/encodings/iso8859_9.py +307 -0
  465. package/python/lib/python3.12/encodings/johab.py +39 -0
  466. package/python/lib/python3.12/encodings/koi8_r.py +307 -0
  467. package/python/lib/python3.12/encodings/koi8_t.py +308 -0
  468. package/python/lib/python3.12/encodings/koi8_u.py +307 -0
  469. package/python/lib/python3.12/encodings/kz1048.py +307 -0
  470. package/python/lib/python3.12/encodings/latin_1.py +50 -0
  471. package/python/lib/python3.12/encodings/mac_arabic.py +698 -0
  472. package/python/lib/python3.12/encodings/mac_croatian.py +307 -0
  473. package/python/lib/python3.12/encodings/mac_cyrillic.py +307 -0
  474. package/python/lib/python3.12/encodings/mac_farsi.py +307 -0
  475. package/python/lib/python3.12/encodings/mac_greek.py +307 -0
  476. package/python/lib/python3.12/encodings/mac_iceland.py +307 -0
  477. package/python/lib/python3.12/encodings/mac_latin2.py +312 -0
  478. package/python/lib/python3.12/encodings/mac_roman.py +307 -0
  479. package/python/lib/python3.12/encodings/mac_romanian.py +307 -0
  480. package/python/lib/python3.12/encodings/mac_turkish.py +307 -0
  481. package/python/lib/python3.12/encodings/mbcs.py +47 -0
  482. package/python/lib/python3.12/encodings/oem.py +41 -0
  483. package/python/lib/python3.12/encodings/palmos.py +308 -0
  484. package/python/lib/python3.12/encodings/ptcp154.py +312 -0
  485. package/python/lib/python3.12/encodings/punycode.py +237 -0
  486. package/python/lib/python3.12/encodings/quopri_codec.py +56 -0
  487. package/python/lib/python3.12/encodings/raw_unicode_escape.py +46 -0
  488. package/python/lib/python3.12/encodings/rot_13.py +113 -0
  489. package/python/lib/python3.12/encodings/shift_jis.py +39 -0
  490. package/python/lib/python3.12/encodings/shift_jis_2004.py +39 -0
  491. package/python/lib/python3.12/encodings/shift_jisx0213.py +39 -0
  492. package/python/lib/python3.12/encodings/tis_620.py +307 -0
  493. package/python/lib/python3.12/encodings/undefined.py +49 -0
  494. package/python/lib/python3.12/encodings/unicode_escape.py +46 -0
  495. package/python/lib/python3.12/encodings/utf_16.py +155 -0
  496. package/python/lib/python3.12/encodings/utf_16_be.py +42 -0
  497. package/python/lib/python3.12/encodings/utf_16_le.py +42 -0
  498. package/python/lib/python3.12/encodings/utf_32.py +150 -0
  499. package/python/lib/python3.12/encodings/utf_32_be.py +37 -0
  500. package/python/lib/python3.12/encodings/utf_32_le.py +37 -0
  501. package/python/lib/python3.12/encodings/utf_7.py +38 -0
  502. package/python/lib/python3.12/encodings/utf_8.py +42 -0
  503. package/python/lib/python3.12/encodings/utf_8_sig.py +130 -0
  504. package/python/lib/python3.12/encodings/uu_codec.py +103 -0
  505. package/python/lib/python3.12/encodings/zlib_codec.py +77 -0
  506. package/python/lib/python3.12/ensurepip/__init__.py +291 -0
  507. package/python/lib/python3.12/ensurepip/__main__.py +5 -0
  508. package/python/lib/python3.12/ensurepip/_bundled/pip-25.0.1-py3-none-any.whl +0 -0
  509. package/python/lib/python3.12/ensurepip/_uninstall.py +31 -0
  510. package/python/lib/python3.12/enum.py +2108 -0
  511. package/python/lib/python3.12/filecmp.py +315 -0
  512. package/python/lib/python3.12/fileinput.py +442 -0
  513. package/python/lib/python3.12/fnmatch.py +185 -0
  514. package/python/lib/python3.12/fractions.py +990 -0
  515. package/python/lib/python3.12/ftplib.py +966 -0
  516. package/python/lib/python3.12/functools.py +1009 -0
  517. package/python/lib/python3.12/genericpath.py +176 -0
  518. package/python/lib/python3.12/getopt.py +215 -0
  519. package/python/lib/python3.12/getpass.py +185 -0
  520. package/python/lib/python3.12/gettext.py +646 -0
  521. package/python/lib/python3.12/glob.py +252 -0
  522. package/python/lib/python3.12/graphlib.py +250 -0
  523. package/python/lib/python3.12/gzip.py +711 -0
  524. package/python/lib/python3.12/hashlib.py +253 -0
  525. package/python/lib/python3.12/heapq.py +603 -0
  526. package/python/lib/python3.12/hmac.py +219 -0
  527. package/python/lib/python3.12/html/__init__.py +132 -0
  528. package/python/lib/python3.12/html/entities.py +2513 -0
  529. package/python/lib/python3.12/html/parser.py +535 -0
  530. package/python/lib/python3.12/http/__init__.py +200 -0
  531. package/python/lib/python3.12/http/client.py +1570 -0
  532. package/python/lib/python3.12/http/cookiejar.py +2121 -0
  533. package/python/lib/python3.12/http/cookies.py +615 -0
  534. package/python/lib/python3.12/http/server.py +1335 -0
  535. package/python/lib/python3.12/imaplib.py +1641 -0
  536. package/python/lib/python3.12/imghdr.py +180 -0
  537. package/python/lib/python3.12/importlib/__init__.py +138 -0
  538. package/python/lib/python3.12/importlib/_abc.py +39 -0
  539. package/python/lib/python3.12/importlib/_bootstrap.py +1551 -0
  540. package/python/lib/python3.12/importlib/_bootstrap_external.py +1749 -0
  541. package/python/lib/python3.12/importlib/abc.py +239 -0
  542. package/python/lib/python3.12/importlib/machinery.py +20 -0
  543. package/python/lib/python3.12/importlib/metadata/__init__.py +966 -0
  544. package/python/lib/python3.12/importlib/metadata/_adapters.py +89 -0
  545. package/python/lib/python3.12/importlib/metadata/_collections.py +30 -0
  546. package/python/lib/python3.12/importlib/metadata/_functools.py +104 -0
  547. package/python/lib/python3.12/importlib/metadata/_itertools.py +73 -0
  548. package/python/lib/python3.12/importlib/metadata/_meta.py +63 -0
  549. package/python/lib/python3.12/importlib/metadata/_text.py +99 -0
  550. package/python/lib/python3.12/importlib/readers.py +12 -0
  551. package/python/lib/python3.12/importlib/resources/__init__.py +38 -0
  552. package/python/lib/python3.12/importlib/resources/_adapters.py +168 -0
  553. package/python/lib/python3.12/importlib/resources/_common.py +208 -0
  554. package/python/lib/python3.12/importlib/resources/_itertools.py +38 -0
  555. package/python/lib/python3.12/importlib/resources/_legacy.py +98 -0
  556. package/python/lib/python3.12/importlib/resources/abc.py +173 -0
  557. package/python/lib/python3.12/importlib/resources/readers.py +146 -0
  558. package/python/lib/python3.12/importlib/resources/simple.py +106 -0
  559. package/python/lib/python3.12/importlib/simple.py +14 -0
  560. package/python/lib/python3.12/importlib/util.py +270 -0
  561. package/python/lib/python3.12/inspect.py +3433 -0
  562. package/python/lib/python3.12/io.py +99 -0
  563. package/python/lib/python3.12/ipaddress.py +2430 -0
  564. package/python/lib/python3.12/json/__init__.py +359 -0
  565. package/python/lib/python3.12/json/decoder.py +357 -0
  566. package/python/lib/python3.12/json/encoder.py +443 -0
  567. package/python/lib/python3.12/json/scanner.py +73 -0
  568. package/python/lib/python3.12/json/tool.py +85 -0
  569. package/python/lib/python3.12/keyword.py +64 -0
  570. package/python/lib/python3.12/lib-dynload/.empty +0 -0
  571. package/python/lib/python3.12/lib-dynload/_crypt.cpython-312-darwin.so +0 -0
  572. package/python/lib/python3.12/lib-dynload/_dbm.cpython-312-darwin.so +0 -0
  573. package/python/lib/python3.12/linecache.py +185 -0
  574. package/python/lib/python3.12/locale.py +1779 -0
  575. package/python/lib/python3.12/logging/__init__.py +2345 -0
  576. package/python/lib/python3.12/logging/config.py +1078 -0
  577. package/python/lib/python3.12/logging/handlers.py +1624 -0
  578. package/python/lib/python3.12/lzma.py +356 -0
  579. package/python/lib/python3.12/mailbox.py +2153 -0
  580. package/python/lib/python3.12/mailcap.py +302 -0
  581. package/python/lib/python3.12/mimetypes.py +656 -0
  582. package/python/lib/python3.12/modulefinder.py +666 -0
  583. package/python/lib/python3.12/multiprocessing/__init__.py +37 -0
  584. package/python/lib/python3.12/multiprocessing/connection.py +1178 -0
  585. package/python/lib/python3.12/multiprocessing/context.py +377 -0
  586. package/python/lib/python3.12/multiprocessing/dummy/__init__.py +126 -0
  587. package/python/lib/python3.12/multiprocessing/dummy/connection.py +75 -0
  588. package/python/lib/python3.12/multiprocessing/forkserver.py +350 -0
  589. package/python/lib/python3.12/multiprocessing/heap.py +337 -0
  590. package/python/lib/python3.12/multiprocessing/managers.py +1387 -0
  591. package/python/lib/python3.12/multiprocessing/pool.py +957 -0
  592. package/python/lib/python3.12/multiprocessing/popen_fork.py +83 -0
  593. package/python/lib/python3.12/multiprocessing/popen_forkserver.py +74 -0
  594. package/python/lib/python3.12/multiprocessing/popen_spawn_posix.py +72 -0
  595. package/python/lib/python3.12/multiprocessing/popen_spawn_win32.py +145 -0
  596. package/python/lib/python3.12/multiprocessing/process.py +439 -0
  597. package/python/lib/python3.12/multiprocessing/queues.py +401 -0
  598. package/python/lib/python3.12/multiprocessing/reduction.py +281 -0
  599. package/python/lib/python3.12/multiprocessing/resource_sharer.py +154 -0
  600. package/python/lib/python3.12/multiprocessing/resource_tracker.py +294 -0
  601. package/python/lib/python3.12/multiprocessing/shared_memory.py +534 -0
  602. package/python/lib/python3.12/multiprocessing/sharedctypes.py +240 -0
  603. package/python/lib/python3.12/multiprocessing/spawn.py +307 -0
  604. package/python/lib/python3.12/multiprocessing/synchronize.py +404 -0
  605. package/python/lib/python3.12/multiprocessing/util.py +494 -0
  606. package/python/lib/python3.12/netrc.py +192 -0
  607. package/python/lib/python3.12/nntplib.py +1093 -0
  608. package/python/lib/python3.12/ntpath.py +869 -0
  609. package/python/lib/python3.12/nturl2path.py +69 -0
  610. package/python/lib/python3.12/numbers.py +418 -0
  611. package/python/lib/python3.12/opcode.py +493 -0
  612. package/python/lib/python3.12/operator.py +467 -0
  613. package/python/lib/python3.12/optparse.py +1681 -0
  614. package/python/lib/python3.12/os.py +1159 -0
  615. package/python/lib/python3.12/pathlib.py +1435 -0
  616. package/python/lib/python3.12/pdb.py +1987 -0
  617. package/python/lib/python3.12/pickle.py +1866 -0
  618. package/python/lib/python3.12/pickletools.py +2904 -0
  619. package/python/lib/python3.12/pipes.py +250 -0
  620. package/python/lib/python3.12/pkgutil.py +529 -0
  621. package/python/lib/python3.12/platform.py +1359 -0
  622. package/python/lib/python3.12/plistlib.py +920 -0
  623. package/python/lib/python3.12/poplib.py +478 -0
  624. package/python/lib/python3.12/posixpath.py +577 -0
  625. package/python/lib/python3.12/pprint.py +658 -0
  626. package/python/lib/python3.12/profile.py +615 -0
  627. package/python/lib/python3.12/pstats.py +778 -0
  628. package/python/lib/python3.12/pty.py +211 -0
  629. package/python/lib/python3.12/py_compile.py +212 -0
  630. package/python/lib/python3.12/pyclbr.py +314 -0
  631. package/python/lib/python3.12/pydoc.py +2950 -0
  632. package/python/lib/python3.12/pydoc_data/__init__.py +0 -0
  633. package/python/lib/python3.12/pydoc_data/_pydoc.css +112 -0
  634. package/python/lib/python3.12/pydoc_data/topics.py +12500 -0
  635. package/python/lib/python3.12/queue.py +326 -0
  636. package/python/lib/python3.12/quopri.py +237 -0
  637. package/python/lib/python3.12/random.py +996 -0
  638. package/python/lib/python3.12/re/__init__.py +385 -0
  639. package/python/lib/python3.12/re/_casefix.py +106 -0
  640. package/python/lib/python3.12/re/_compiler.py +770 -0
  641. package/python/lib/python3.12/re/_constants.py +220 -0
  642. package/python/lib/python3.12/re/_parser.py +1080 -0
  643. package/python/lib/python3.12/reprlib.py +214 -0
  644. package/python/lib/python3.12/rlcompleter.py +219 -0
  645. package/python/lib/python3.12/runpy.py +319 -0
  646. package/python/lib/python3.12/sched.py +167 -0
  647. package/python/lib/python3.12/secrets.py +71 -0
  648. package/python/lib/python3.12/selectors.py +623 -0
  649. package/python/lib/python3.12/shelve.py +243 -0
  650. package/python/lib/python3.12/shlex.py +345 -0
  651. package/python/lib/python3.12/shutil.py +1566 -0
  652. package/python/lib/python3.12/signal.py +94 -0
  653. package/python/lib/python3.12/site-packages/README.txt +2 -0
  654. package/python/lib/python3.12/site-packages/pip/__init__.py +13 -0
  655. package/python/lib/python3.12/site-packages/pip/__main__.py +24 -0
  656. package/python/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
  657. package/python/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
  658. package/python/lib/python3.12/site-packages/pip/_internal/build_env.py +606 -0
  659. package/python/lib/python3.12/site-packages/pip/_internal/cache.py +291 -0
  660. package/python/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +3 -0
  661. package/python/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +184 -0
  662. package/python/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +264 -0
  663. package/python/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1298 -0
  664. package/python/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +28 -0
  665. package/python/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +212 -0
  666. package/python/lib/python3.12/site-packages/pip/_internal/cli/main.py +85 -0
  667. package/python/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +136 -0
  668. package/python/lib/python3.12/site-packages/pip/_internal/cli/parser.py +358 -0
  669. package/python/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +153 -0
  670. package/python/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +472 -0
  671. package/python/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +235 -0
  672. package/python/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
  673. package/python/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +139 -0
  674. package/python/lib/python3.12/site-packages/pip/_internal/commands/cache.py +255 -0
  675. package/python/lib/python3.12/site-packages/pip/_internal/commands/check.py +66 -0
  676. package/python/lib/python3.12/site-packages/pip/_internal/commands/completion.py +136 -0
  677. package/python/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +288 -0
  678. package/python/lib/python3.12/site-packages/pip/_internal/commands/debug.py +196 -0
  679. package/python/lib/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
  680. package/python/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +107 -0
  681. package/python/lib/python3.12/site-packages/pip/_internal/commands/hash.py +58 -0
  682. package/python/lib/python3.12/site-packages/pip/_internal/commands/help.py +40 -0
  683. package/python/lib/python3.12/site-packages/pip/_internal/commands/index.py +166 -0
  684. package/python/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
  685. package/python/lib/python3.12/site-packages/pip/_internal/commands/install.py +904 -0
  686. package/python/lib/python3.12/site-packages/pip/_internal/commands/list.py +403 -0
  687. package/python/lib/python3.12/site-packages/pip/_internal/commands/lock.py +175 -0
  688. package/python/lib/python3.12/site-packages/pip/_internal/commands/search.py +178 -0
  689. package/python/lib/python3.12/site-packages/pip/_internal/commands/show.py +231 -0
  690. package/python/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +113 -0
  691. package/python/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +171 -0
  692. package/python/lib/python3.12/site-packages/pip/_internal/configuration.py +396 -0
  693. package/python/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
  694. package/python/lib/python3.12/site-packages/pip/_internal/distributions/base.py +55 -0
  695. package/python/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +33 -0
  696. package/python/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +164 -0
  697. package/python/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +44 -0
  698. package/python/lib/python3.12/site-packages/pip/_internal/exceptions.py +971 -0
  699. package/python/lib/python3.12/site-packages/pip/_internal/index/__init__.py +1 -0
  700. package/python/lib/python3.12/site-packages/pip/_internal/index/collector.py +488 -0
  701. package/python/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1113 -0
  702. package/python/lib/python3.12/site-packages/pip/_internal/index/sources.py +287 -0
  703. package/python/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +438 -0
  704. package/python/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +173 -0
  705. package/python/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
  706. package/python/lib/python3.12/site-packages/pip/_internal/locations/base.py +82 -0
  707. package/python/lib/python3.12/site-packages/pip/_internal/main.py +12 -0
  708. package/python/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +169 -0
  709. package/python/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +87 -0
  710. package/python/lib/python3.12/site-packages/pip/_internal/metadata/base.py +685 -0
  711. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
  712. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
  713. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +235 -0
  714. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
  715. package/python/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
  716. package/python/lib/python3.12/site-packages/pip/_internal/models/__init__.py +1 -0
  717. package/python/lib/python3.12/site-packages/pip/_internal/models/candidate.py +23 -0
  718. package/python/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +42 -0
  719. package/python/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
  720. package/python/lib/python3.12/site-packages/pip/_internal/models/index.py +28 -0
  721. package/python/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +57 -0
  722. package/python/lib/python3.12/site-packages/pip/_internal/models/link.py +617 -0
  723. package/python/lib/python3.12/site-packages/pip/_internal/models/release_control.py +91 -0
  724. package/python/lib/python3.12/site-packages/pip/_internal/models/scheme.py +23 -0
  725. package/python/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +124 -0
  726. package/python/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +36 -0
  727. package/python/lib/python3.12/site-packages/pip/_internal/models/target_python.py +122 -0
  728. package/python/lib/python3.12/site-packages/pip/_internal/models/wheel.py +80 -0
  729. package/python/lib/python3.12/site-packages/pip/_internal/network/__init__.py +1 -0
  730. package/python/lib/python3.12/site-packages/pip/_internal/network/auth.py +570 -0
  731. package/python/lib/python3.12/site-packages/pip/_internal/network/cache.py +128 -0
  732. package/python/lib/python3.12/site-packages/pip/_internal/network/download.py +340 -0
  733. package/python/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
  734. package/python/lib/python3.12/site-packages/pip/_internal/network/session.py +537 -0
  735. package/python/lib/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
  736. package/python/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +61 -0
  737. package/python/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
  738. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  739. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
  740. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +38 -0
  741. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
  742. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +38 -0
  743. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
  744. package/python/lib/python3.12/site-packages/pip/_internal/operations/check.py +175 -0
  745. package/python/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +259 -0
  746. package/python/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +1 -0
  747. package/python/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +759 -0
  748. package/python/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +751 -0
  749. package/python/lib/python3.12/site-packages/pip/_internal/pyproject.py +123 -0
  750. package/python/lib/python3.12/site-packages/pip/_internal/req/__init__.py +103 -0
  751. package/python/lib/python3.12/site-packages/pip/_internal/req/constructors.py +677 -0
  752. package/python/lib/python3.12/site-packages/pip/_internal/req/pep723.py +41 -0
  753. package/python/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py +86 -0
  754. package/python/lib/python3.12/site-packages/pip/_internal/req/req_file.py +622 -0
  755. package/python/lib/python3.12/site-packages/pip/_internal/req/req_install.py +838 -0
  756. package/python/lib/python3.12/site-packages/pip/_internal/req/req_set.py +81 -0
  757. package/python/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +639 -0
  758. package/python/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
  759. package/python/lib/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
  760. package/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  761. package/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
  762. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  763. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +164 -0
  764. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +599 -0
  765. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +914 -0
  766. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
  767. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +306 -0
  768. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
  769. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
  770. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
  771. package/python/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +246 -0
  772. package/python/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
  773. package/python/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
  774. package/python/lib/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
  775. package/python/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
  776. package/python/lib/python3.12/site-packages/pip/_internal/utils/compat.py +85 -0
  777. package/python/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
  778. package/python/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +28 -0
  779. package/python/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +139 -0
  780. package/python/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +92 -0
  781. package/python/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +81 -0
  782. package/python/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +88 -0
  783. package/python/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +201 -0
  784. package/python/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +24 -0
  785. package/python/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +102 -0
  786. package/python/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +150 -0
  787. package/python/lib/python3.12/site-packages/pip/_internal/utils/logging.py +396 -0
  788. package/python/lib/python3.12/site-packages/pip/_internal/utils/misc.py +771 -0
  789. package/python/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +44 -0
  790. package/python/lib/python3.12/site-packages/pip/_internal/utils/pylock.py +283 -0
  791. package/python/lib/python3.12/site-packages/pip/_internal/utils/retry.py +45 -0
  792. package/python/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +248 -0
  793. package/python/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +294 -0
  794. package/python/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +381 -0
  795. package/python/lib/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
  796. package/python/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +105 -0
  797. package/python/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +132 -0
  798. package/python/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
  799. package/python/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +130 -0
  800. package/python/lib/python3.12/site-packages/pip/_internal/vcs/git.py +571 -0
  801. package/python/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +186 -0
  802. package/python/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +335 -0
  803. package/python/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
  804. package/python/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +261 -0
  805. package/python/lib/python3.12/site-packages/pip/_vendor/README.rst +178 -0
  806. package/python/lib/python3.12/site-packages/pip/_vendor/__init__.py +117 -0
  807. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  808. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
  809. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
  810. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
  811. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
  812. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  813. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
  814. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  815. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
  816. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
  817. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
  818. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
  819. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
  820. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
  821. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE +20 -0
  822. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  823. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
  824. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4494 -0
  825. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +83 -0
  826. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
  827. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
  828. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
  829. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
  830. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
  831. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
  832. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  833. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
  834. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  835. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
  836. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  837. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
  838. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  839. package/python/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE +202 -0
  840. package/python/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
  841. package/python/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
  842. package/python/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
  843. package/python/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
  844. package/python/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
  845. package/python/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +45 -0
  846. package/python/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +122 -0
  847. package/python/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +15 -0
  848. package/python/lib/python3.12/site-packages/pip/_vendor/idna/core.py +437 -0
  849. package/python/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
  850. package/python/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +57 -0
  851. package/python/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +1 -0
  852. package/python/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
  853. package/python/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
  854. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING +14 -0
  855. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
  856. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
  857. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +170 -0
  858. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
  859. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE +3 -0
  860. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  861. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
  862. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
  863. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
  864. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
  865. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
  866. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +393 -0
  867. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +33 -0
  868. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
  869. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/dependency_groups.py +302 -0
  870. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/direct_url.py +325 -0
  871. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/errors.py +94 -0
  872. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +186 -0
  873. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
  874. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +492 -0
  875. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +964 -0
  876. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
  877. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/pylock.py +905 -0
  878. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +129 -0
  879. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1943 -0
  880. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +932 -0
  881. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +296 -0
  882. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +1231 -0
  883. package/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
  884. package/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
  885. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
  886. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
  887. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
  888. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
  889. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +299 -0
  890. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
  891. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  892. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
  893. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +34 -0
  894. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
  895. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE +25 -0
  896. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  897. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  898. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
  899. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
  900. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
  901. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
  902. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
  903. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  904. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
  905. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
  906. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
  907. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
  908. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  909. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
  910. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
  911. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  912. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
  913. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
  914. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
  915. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
  916. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
  917. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  918. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
  919. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  920. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  921. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  922. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  923. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  924. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  925. package/python/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE +175 -0
  926. package/python/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +178 -0
  927. package/python/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
  928. package/python/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +51 -0
  929. package/python/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +697 -0
  930. package/python/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
  931. package/python/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
  932. package/python/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +18 -0
  933. package/python/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +90 -0
  934. package/python/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
  935. package/python/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +152 -0
  936. package/python/lib/python3.12/site-packages/pip/_vendor/requests/help.py +124 -0
  937. package/python/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +34 -0
  938. package/python/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1041 -0
  939. package/python/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
  940. package/python/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +834 -0
  941. package/python/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  942. package/python/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
  943. package/python/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1083 -0
  944. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
  945. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
  946. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
  947. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  948. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
  949. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
  950. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
  951. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
  952. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
  953. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
  954. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
  955. package/python/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE +19 -0
  956. package/python/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
  957. package/python/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +245 -0
  958. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
  959. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
  960. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  961. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
  962. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
  963. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
  964. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +268 -0
  965. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  966. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
  967. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
  968. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  969. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
  970. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +153 -0
  971. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
  972. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
  973. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
  974. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
  975. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
  976. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  977. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
  978. package/python/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
  979. package/python/lib/python3.12/site-packages/pip/_vendor/rich/align.py +306 -0
  980. package/python/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +241 -0
  981. package/python/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
  982. package/python/lib/python3.12/site-packages/pip/_vendor/rich/box.py +474 -0
  983. package/python/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +174 -0
  984. package/python/lib/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
  985. package/python/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  986. package/python/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
  987. package/python/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2680 -0
  988. package/python/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
  989. package/python/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
  990. package/python/lib/python3.12/site-packages/pip/_vendor/rich/control.py +219 -0
  991. package/python/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +193 -0
  992. package/python/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +39 -0
  993. package/python/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +91 -0
  994. package/python/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
  995. package/python/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
  996. package/python/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +88 -0
  997. package/python/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  998. package/python/lib/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
  999. package/python/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  1000. package/python/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
  1001. package/python/lib/python3.12/site-packages/pip/_vendor/rich/live.py +400 -0
  1002. package/python/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +106 -0
  1003. package/python/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +297 -0
  1004. package/python/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
  1005. package/python/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
  1006. package/python/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
  1007. package/python/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
  1008. package/python/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
  1009. package/python/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +317 -0
  1010. package/python/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +1016 -0
  1011. package/python/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1715 -0
  1012. package/python/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
  1013. package/python/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +400 -0
  1014. package/python/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
  1015. package/python/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
  1016. package/python/lib/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
  1017. package/python/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
  1018. package/python/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
  1019. package/python/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
  1020. package/python/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
  1021. package/python/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +752 -0
  1022. package/python/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +132 -0
  1023. package/python/lib/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
  1024. package/python/lib/python3.12/site-packages/pip/_vendor/rich/style.py +792 -0
  1025. package/python/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
  1026. package/python/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +985 -0
  1027. package/python/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1006 -0
  1028. package/python/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
  1029. package/python/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1361 -0
  1030. package/python/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
  1031. package/python/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
  1032. package/python/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +899 -0
  1033. package/python/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +257 -0
  1034. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/LICENSE +21 -0
  1035. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +8 -0
  1036. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +788 -0
  1037. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +115 -0
  1038. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
  1039. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
  1040. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
  1041. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
  1042. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
  1043. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
  1044. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/LICENSE +21 -0
  1045. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
  1046. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +341 -0
  1047. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
  1048. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
  1049. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
  1050. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
  1051. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
  1052. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1053. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +211 -0
  1054. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_base_connection.py +165 -0
  1055. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +487 -0
  1056. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_request_methods.py +278 -0
  1057. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +34 -0
  1058. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +1099 -0
  1059. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1178 -0
  1060. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  1061. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/__init__.py +17 -0
  1062. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/connection.py +260 -0
  1063. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/emscripten_fetch_worker.js +110 -0
  1064. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/fetch.py +726 -0
  1065. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/request.py +22 -0
  1066. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/response.py +277 -0
  1067. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +564 -0
  1068. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +228 -0
  1069. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +335 -0
  1070. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +341 -0
  1071. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +89 -0
  1072. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/__init__.py +53 -0
  1073. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/connection.py +356 -0
  1074. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/probe.py +87 -0
  1075. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +651 -0
  1076. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/py.typed +2 -0
  1077. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +1474 -0
  1078. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +42 -0
  1079. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +137 -0
  1080. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +43 -0
  1081. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +254 -0
  1082. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +101 -0
  1083. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +549 -0
  1084. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +527 -0
  1085. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  1086. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +271 -0
  1087. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +275 -0
  1088. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +469 -0
  1089. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/util.py +42 -0
  1090. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +124 -0
  1091. package/python/lib/python3.12/site-packages/pip/_vendor/vendor.txt +18 -0
  1092. package/python/lib/python3.12/site-packages/pip/py.typed +4 -0
  1093. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/INSTALLER +1 -0
  1094. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/METADATA +109 -0
  1095. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/RECORD +866 -0
  1096. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/REQUESTED +0 -0
  1097. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/WHEEL +4 -0
  1098. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/direct_url.json +1 -0
  1099. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/entry_points.txt +4 -0
  1100. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/AUTHORS.txt +868 -0
  1101. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/LICENSE.txt +20 -0
  1102. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  1103. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
  1104. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
  1105. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
  1106. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
  1107. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
  1108. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
  1109. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  1110. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
  1111. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
  1112. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
  1113. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
  1114. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  1115. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
  1116. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
  1117. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
  1118. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
  1119. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
  1120. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
  1121. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1122. package/python/lib/python3.12/site.py +693 -0
  1123. package/python/lib/python3.12/smtplib.py +1109 -0
  1124. package/python/lib/python3.12/sndhdr.py +271 -0
  1125. package/python/lib/python3.12/socket.py +983 -0
  1126. package/python/lib/python3.12/socketserver.py +863 -0
  1127. package/python/lib/python3.12/sqlite3/__init__.py +70 -0
  1128. package/python/lib/python3.12/sqlite3/__main__.py +127 -0
  1129. package/python/lib/python3.12/sqlite3/dbapi2.py +108 -0
  1130. package/python/lib/python3.12/sqlite3/dump.py +89 -0
  1131. package/python/lib/python3.12/sre_compile.py +7 -0
  1132. package/python/lib/python3.12/sre_constants.py +7 -0
  1133. package/python/lib/python3.12/sre_parse.py +7 -0
  1134. package/python/lib/python3.12/ssl.py +1488 -0
  1135. package/python/lib/python3.12/stat.py +195 -0
  1136. package/python/lib/python3.12/statistics.py +1454 -0
  1137. package/python/lib/python3.12/string.py +309 -0
  1138. package/python/lib/python3.12/stringprep.py +272 -0
  1139. package/python/lib/python3.12/struct.py +15 -0
  1140. package/python/lib/python3.12/subprocess.py +2216 -0
  1141. package/python/lib/python3.12/sunau.py +533 -0
  1142. package/python/lib/python3.12/symtable.py +362 -0
  1143. package/python/lib/python3.12/sysconfig.py +894 -0
  1144. package/python/lib/python3.12/tabnanny.py +340 -0
  1145. package/python/lib/python3.12/tarfile.py +3031 -0
  1146. package/python/lib/python3.12/telnetlib.py +680 -0
  1147. package/python/lib/python3.12/tempfile.py +956 -0
  1148. package/python/lib/python3.12/textwrap.py +491 -0
  1149. package/python/lib/python3.12/this.py +28 -0
  1150. package/python/lib/python3.12/threading.py +1708 -0
  1151. package/python/lib/python3.12/timeit.py +381 -0
  1152. package/python/lib/python3.12/token.py +143 -0
  1153. package/python/lib/python3.12/tokenize.py +594 -0
  1154. package/python/lib/python3.12/tomllib/__init__.py +10 -0
  1155. package/python/lib/python3.12/tomllib/_parser.py +691 -0
  1156. package/python/lib/python3.12/tomllib/_re.py +107 -0
  1157. package/python/lib/python3.12/tomllib/_types.py +10 -0
  1158. package/python/lib/python3.12/trace.py +748 -0
  1159. package/python/lib/python3.12/traceback.py +1187 -0
  1160. package/python/lib/python3.12/tracemalloc.py +560 -0
  1161. package/python/lib/python3.12/tty.py +73 -0
  1162. package/python/lib/python3.12/turtle.py +4207 -0
  1163. package/python/lib/python3.12/types.py +333 -0
  1164. package/python/lib/python3.12/typing.py +3494 -0
  1165. package/python/lib/python3.12/unittest/__init__.py +85 -0
  1166. package/python/lib/python3.12/unittest/__main__.py +18 -0
  1167. package/python/lib/python3.12/unittest/_log.py +86 -0
  1168. package/python/lib/python3.12/unittest/async_case.py +143 -0
  1169. package/python/lib/python3.12/unittest/case.py +1456 -0
  1170. package/python/lib/python3.12/unittest/loader.py +497 -0
  1171. package/python/lib/python3.12/unittest/main.py +291 -0
  1172. package/python/lib/python3.12/unittest/mock.py +3054 -0
  1173. package/python/lib/python3.12/unittest/result.py +256 -0
  1174. package/python/lib/python3.12/unittest/runner.py +292 -0
  1175. package/python/lib/python3.12/unittest/signals.py +71 -0
  1176. package/python/lib/python3.12/unittest/suite.py +379 -0
  1177. package/python/lib/python3.12/unittest/util.py +170 -0
  1178. package/python/lib/python3.12/urllib/__init__.py +0 -0
  1179. package/python/lib/python3.12/urllib/error.py +74 -0
  1180. package/python/lib/python3.12/urllib/parse.py +1262 -0
  1181. package/python/lib/python3.12/urllib/request.py +2816 -0
  1182. package/python/lib/python3.12/urllib/response.py +84 -0
  1183. package/python/lib/python3.12/urllib/robotparser.py +275 -0
  1184. package/python/lib/python3.12/uu.py +216 -0
  1185. package/python/lib/python3.12/uuid.py +793 -0
  1186. package/python/lib/python3.12/venv/__init__.py +608 -0
  1187. package/python/lib/python3.12/venv/__main__.py +10 -0
  1188. package/python/lib/python3.12/venv/scripts/common/Activate.ps1 +247 -0
  1189. package/python/lib/python3.12/venv/scripts/common/activate +76 -0
  1190. package/python/lib/python3.12/venv/scripts/posix/activate.csh +27 -0
  1191. package/python/lib/python3.12/venv/scripts/posix/activate.fish +69 -0
  1192. package/python/lib/python3.12/warnings.py +598 -0
  1193. package/python/lib/python3.12/wave.py +653 -0
  1194. package/python/lib/python3.12/weakref.py +674 -0
  1195. package/python/lib/python3.12/webbrowser.py +689 -0
  1196. package/python/lib/python3.12/wsgiref/__init__.py +25 -0
  1197. package/python/lib/python3.12/wsgiref/handlers.py +573 -0
  1198. package/python/lib/python3.12/wsgiref/headers.py +192 -0
  1199. package/python/lib/python3.12/wsgiref/simple_server.py +165 -0
  1200. package/python/lib/python3.12/wsgiref/types.py +54 -0
  1201. package/python/lib/python3.12/wsgiref/util.py +159 -0
  1202. package/python/lib/python3.12/wsgiref/validate.py +438 -0
  1203. package/python/lib/python3.12/xdrlib.py +242 -0
  1204. package/python/lib/python3.12/xml/__init__.py +20 -0
  1205. package/python/lib/python3.12/xml/dom/NodeFilter.py +27 -0
  1206. package/python/lib/python3.12/xml/dom/__init__.py +140 -0
  1207. package/python/lib/python3.12/xml/dom/domreg.py +99 -0
  1208. package/python/lib/python3.12/xml/dom/expatbuilder.py +962 -0
  1209. package/python/lib/python3.12/xml/dom/minicompat.py +109 -0
  1210. package/python/lib/python3.12/xml/dom/minidom.py +2008 -0
  1211. package/python/lib/python3.12/xml/dom/pulldom.py +336 -0
  1212. package/python/lib/python3.12/xml/dom/xmlbuilder.py +389 -0
  1213. package/python/lib/python3.12/xml/etree/ElementInclude.py +186 -0
  1214. package/python/lib/python3.12/xml/etree/ElementPath.py +423 -0
  1215. package/python/lib/python3.12/xml/etree/ElementTree.py +2085 -0
  1216. package/python/lib/python3.12/xml/etree/__init__.py +33 -0
  1217. package/python/lib/python3.12/xml/etree/cElementTree.py +3 -0
  1218. package/python/lib/python3.12/xml/parsers/__init__.py +8 -0
  1219. package/python/lib/python3.12/xml/parsers/expat.py +8 -0
  1220. package/python/lib/python3.12/xml/sax/__init__.py +94 -0
  1221. package/python/lib/python3.12/xml/sax/_exceptions.py +127 -0
  1222. package/python/lib/python3.12/xml/sax/expatreader.py +454 -0
  1223. package/python/lib/python3.12/xml/sax/handler.py +387 -0
  1224. package/python/lib/python3.12/xml/sax/saxutils.py +369 -0
  1225. package/python/lib/python3.12/xml/sax/xmlreader.py +378 -0
  1226. package/python/lib/python3.12/xmlrpc/__init__.py +1 -0
  1227. package/python/lib/python3.12/xmlrpc/client.py +1529 -0
  1228. package/python/lib/python3.12/xmlrpc/server.py +1002 -0
  1229. package/python/lib/python3.12/zipapp.py +206 -0
  1230. package/python/lib/python3.12/zipfile/__init__.py +2340 -0
  1231. package/python/lib/python3.12/zipfile/__main__.py +4 -0
  1232. package/python/lib/python3.12/zipfile/_path/__init__.py +412 -0
  1233. package/python/lib/python3.12/zipfile/_path/glob.py +53 -0
  1234. package/python/lib/python3.12/zipimport.py +712 -0
  1235. package/python/lib/python3.12/zoneinfo/__init__.py +31 -0
  1236. package/python/lib/python3.12/zoneinfo/_common.py +164 -0
  1237. package/python/lib/python3.12/zoneinfo/_tzpath.py +181 -0
  1238. package/python/lib/python3.12/zoneinfo/_zoneinfo.py +772 -0
@@ -0,0 +1,4207 @@
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
+ Turtle graphics is a popular way for introducing programming to
26
+ kids. It was part of the original Logo programming language developed
27
+ by Wally Feurzig and Seymour Papert in 1966.
28
+
29
+ Imagine a robotic turtle starting at (0, 0) in the x-y plane. After an ``import turtle``, give it
30
+ the command turtle.forward(15), and it moves (on-screen!) 15 pixels in
31
+ the direction it is facing, drawing a line as it moves. Give it the
32
+ command turtle.right(25), and it rotates in-place 25 degrees clockwise.
33
+
34
+ By combining together these and similar commands, intricate shapes and
35
+ pictures can easily be drawn.
36
+
37
+ ----- turtle.py
38
+
39
+ This module is an extended reimplementation of turtle.py from the
40
+ Python standard distribution up to Python 2.5. (See: https://www.python.org)
41
+
42
+ It tries to keep the merits of turtle.py and to be (nearly) 100%
43
+ compatible with it. This means in the first place to enable the
44
+ learning programmer to use all the commands, classes and methods
45
+ interactively when using the module from within IDLE run with
46
+ the -n switch.
47
+
48
+ Roughly it has the following features added:
49
+
50
+ - Better animation of the turtle movements, especially of turning the
51
+ turtle. So the turtles can more easily be used as a visual feedback
52
+ instrument by the (beginning) programmer.
53
+
54
+ - Different turtle shapes, gif-images as turtle shapes, user defined
55
+ and user controllable turtle shapes, among them compound
56
+ (multicolored) shapes. Turtle shapes can be stretched and tilted, which
57
+ makes turtles very versatile geometrical objects.
58
+
59
+ - Fine control over turtle movement and screen updates via delay(),
60
+ and enhanced tracer() and speed() methods.
61
+
62
+ - Aliases for the most commonly used commands, like fd for forward etc.,
63
+ following the early Logo traditions. This reduces the boring work of
64
+ typing long sequences of commands, which often occur in a natural way
65
+ when kids try to program fancy pictures on their first encounter with
66
+ turtle graphics.
67
+
68
+ - Turtles now have an undo()-method with configurable undo-buffer.
69
+
70
+ - Some simple commands/methods for creating event driven programs
71
+ (mouse-, key-, timer-events). Especially useful for programming games.
72
+
73
+ - A scrollable Canvas class. The default scrollable Canvas can be
74
+ extended interactively as needed while playing around with the turtle(s).
75
+
76
+ - A TurtleScreen class with methods controlling background color or
77
+ background image, window and canvas size and other properties of the
78
+ TurtleScreen.
79
+
80
+ - There is a method, setworldcoordinates(), to install a user defined
81
+ coordinate-system for the TurtleScreen.
82
+
83
+ - The implementation uses a 2-vector class named Vec2D, derived from tuple.
84
+ This class is public, so it can be imported by the application programmer,
85
+ which makes certain types of computations very natural and compact.
86
+
87
+ - Appearance of the TurtleScreen and the Turtles at startup/import can be
88
+ configured by means of a turtle.cfg configuration file.
89
+ The default configuration mimics the appearance of the old turtle module.
90
+
91
+ - If configured appropriately the module reads in docstrings from a docstring
92
+ dictionary in some different language, supplied separately and replaces
93
+ the English ones by those read in. There is a utility function
94
+ write_docstringdict() to write a dictionary with the original (English)
95
+ docstrings to disc, so it can serve as a template for translations.
96
+
97
+ Behind the scenes there are some features included with possible
98
+ extensions in mind. These will be commented and documented elsewhere.
99
+ """
100
+
101
+ import tkinter as TK
102
+ import types
103
+ import math
104
+ import time
105
+ import inspect
106
+ import sys
107
+ import warnings
108
+
109
+ from os.path import isfile, split, join
110
+ from copy import deepcopy
111
+ from tkinter import simpledialog
112
+
113
+ _tg_classes = ['ScrolledCanvas', 'TurtleScreen', 'Screen',
114
+ 'RawTurtle', 'Turtle', 'RawPen', 'Pen', 'Shape', 'Vec2D']
115
+ _tg_screen_functions = ['addshape', 'bgcolor', 'bgpic', 'bye',
116
+ 'clearscreen', 'colormode', 'delay', 'exitonclick', 'getcanvas',
117
+ 'getshapes', 'listen', 'mainloop', 'mode', 'numinput',
118
+ 'onkey', 'onkeypress', 'onkeyrelease', 'onscreenclick', 'ontimer',
119
+ 'register_shape', 'resetscreen', 'screensize', 'setup',
120
+ 'setworldcoordinates', 'textinput', 'title', 'tracer', 'turtles', 'update',
121
+ 'window_height', 'window_width']
122
+ _tg_turtle_functions = ['back', 'backward', 'begin_fill', 'begin_poly', 'bk',
123
+ 'circle', 'clear', 'clearstamp', 'clearstamps', 'clone', 'color',
124
+ 'degrees', 'distance', 'dot', 'down', 'end_fill', 'end_poly', 'fd',
125
+ 'fillcolor', 'filling', 'forward', 'get_poly', 'getpen', 'getscreen', 'get_shapepoly',
126
+ 'getturtle', 'goto', 'heading', 'hideturtle', 'home', 'ht', 'isdown',
127
+ 'isvisible', 'left', 'lt', 'onclick', 'ondrag', 'onrelease', 'pd',
128
+ 'pen', 'pencolor', 'pendown', 'pensize', 'penup', 'pos', 'position',
129
+ 'pu', 'radians', 'right', 'reset', 'resizemode', 'rt',
130
+ 'seth', 'setheading', 'setpos', 'setposition', 'settiltangle',
131
+ 'setundobuffer', 'setx', 'sety', 'shape', 'shapesize', 'shapetransform', 'shearfactor', 'showturtle',
132
+ 'speed', 'st', 'stamp', 'teleport', 'tilt', 'tiltangle', 'towards',
133
+ 'turtlesize', 'undo', 'undobufferentries', 'up', 'width',
134
+ 'write', 'xcor', 'ycor']
135
+ _tg_utilities = ['write_docstringdict', 'done']
136
+
137
+ __all__ = (_tg_classes + _tg_screen_functions + _tg_turtle_functions +
138
+ _tg_utilities + ['Terminator'])
139
+
140
+ _alias_list = ['addshape', 'backward', 'bk', 'fd', 'ht', 'lt', 'pd', 'pos',
141
+ 'pu', 'rt', 'seth', 'setpos', 'setposition', 'st',
142
+ 'turtlesize', 'up', 'width']
143
+
144
+ _CFG = {"width" : 0.5, # Screen
145
+ "height" : 0.75,
146
+ "canvwidth" : 400,
147
+ "canvheight": 300,
148
+ "leftright": None,
149
+ "topbottom": None,
150
+ "mode": "standard", # TurtleScreen
151
+ "colormode": 1.0,
152
+ "delay": 10,
153
+ "undobuffersize": 1000, # RawTurtle
154
+ "shape": "classic",
155
+ "pencolor" : "black",
156
+ "fillcolor" : "black",
157
+ "resizemode" : "noresize",
158
+ "visible" : True,
159
+ "language": "english", # docstrings
160
+ "exampleturtle": "turtle",
161
+ "examplescreen": "screen",
162
+ "title": "Python Turtle Graphics",
163
+ "using_IDLE": False
164
+ }
165
+
166
+ def config_dict(filename):
167
+ """Convert content of config-file into dictionary."""
168
+ with open(filename, "r") as f:
169
+ cfglines = f.readlines()
170
+ cfgdict = {}
171
+ for line in cfglines:
172
+ line = line.strip()
173
+ if not line or line.startswith("#"):
174
+ continue
175
+ try:
176
+ key, value = line.split("=")
177
+ except ValueError:
178
+ print("Bad line in config-file %s:\n%s" % (filename,line))
179
+ continue
180
+ key = key.strip()
181
+ value = value.strip()
182
+ if value in ["True", "False", "None", "''", '""']:
183
+ value = eval(value)
184
+ else:
185
+ try:
186
+ if "." in value:
187
+ value = float(value)
188
+ else:
189
+ value = int(value)
190
+ except ValueError:
191
+ pass # value need not be converted
192
+ cfgdict[key] = value
193
+ return cfgdict
194
+
195
+ def readconfig(cfgdict):
196
+ """Read config-files, change configuration-dict accordingly.
197
+
198
+ If there is a turtle.cfg file in the current working directory,
199
+ read it from there. If this contains an importconfig-value,
200
+ say 'myway', construct filename turtle_mayway.cfg else use
201
+ turtle.cfg and read it from the import-directory, where
202
+ turtle.py is located.
203
+ Update configuration dictionary first according to config-file,
204
+ in the import directory, then according to config-file in the
205
+ current working directory.
206
+ If no config-file is found, the default configuration is used.
207
+ """
208
+ default_cfg = "turtle.cfg"
209
+ cfgdict1 = {}
210
+ cfgdict2 = {}
211
+ if isfile(default_cfg):
212
+ cfgdict1 = config_dict(default_cfg)
213
+ if "importconfig" in cfgdict1:
214
+ default_cfg = "turtle_%s.cfg" % cfgdict1["importconfig"]
215
+ try:
216
+ head, tail = split(__file__)
217
+ cfg_file2 = join(head, default_cfg)
218
+ except Exception:
219
+ cfg_file2 = ""
220
+ if isfile(cfg_file2):
221
+ cfgdict2 = config_dict(cfg_file2)
222
+ _CFG.update(cfgdict2)
223
+ _CFG.update(cfgdict1)
224
+
225
+ try:
226
+ readconfig(_CFG)
227
+ except Exception:
228
+ print ("No configfile read, reason unknown")
229
+
230
+
231
+ class Vec2D(tuple):
232
+ """A 2 dimensional vector class, used as a helper class
233
+ for implementing turtle graphics.
234
+ May be useful for turtle graphics programs also.
235
+ Derived from tuple, so a vector is a tuple!
236
+
237
+ Provides (for a, b vectors, k number):
238
+ a+b vector addition
239
+ a-b vector subtraction
240
+ a*b inner product
241
+ k*a and a*k multiplication with scalar
242
+ |a| absolute value of a
243
+ a.rotate(angle) rotation
244
+ """
245
+ def __new__(cls, x, y):
246
+ return tuple.__new__(cls, (x, y))
247
+ def __add__(self, other):
248
+ return Vec2D(self[0]+other[0], self[1]+other[1])
249
+ def __mul__(self, other):
250
+ if isinstance(other, Vec2D):
251
+ return self[0]*other[0]+self[1]*other[1]
252
+ return Vec2D(self[0]*other, self[1]*other)
253
+ def __rmul__(self, other):
254
+ if isinstance(other, int) or isinstance(other, float):
255
+ return Vec2D(self[0]*other, self[1]*other)
256
+ return NotImplemented
257
+ def __sub__(self, other):
258
+ return Vec2D(self[0]-other[0], self[1]-other[1])
259
+ def __neg__(self):
260
+ return Vec2D(-self[0], -self[1])
261
+ def __abs__(self):
262
+ return math.hypot(*self)
263
+ def rotate(self, angle):
264
+ """rotate self counterclockwise by angle
265
+ """
266
+ perp = Vec2D(-self[1], self[0])
267
+ angle = math.radians(angle)
268
+ c, s = math.cos(angle), math.sin(angle)
269
+ return Vec2D(self[0]*c+perp[0]*s, self[1]*c+perp[1]*s)
270
+ def __getnewargs__(self):
271
+ return (self[0], self[1])
272
+ def __repr__(self):
273
+ return "(%.2f,%.2f)" % self
274
+
275
+
276
+ ##############################################################################
277
+ ### From here up to line : Tkinter - Interface for turtle.py ###
278
+ ### May be replaced by an interface to some different graphics toolkit ###
279
+ ##############################################################################
280
+
281
+ ## helper functions for Scrolled Canvas, to forward Canvas-methods
282
+ ## to ScrolledCanvas class
283
+
284
+ def __methodDict(cls, _dict):
285
+ """helper function for Scrolled Canvas"""
286
+ baseList = list(cls.__bases__)
287
+ baseList.reverse()
288
+ for _super in baseList:
289
+ __methodDict(_super, _dict)
290
+ for key, value in cls.__dict__.items():
291
+ if type(value) == types.FunctionType:
292
+ _dict[key] = value
293
+
294
+ def __methods(cls):
295
+ """helper function for Scrolled Canvas"""
296
+ _dict = {}
297
+ __methodDict(cls, _dict)
298
+ return _dict.keys()
299
+
300
+ __stringBody = (
301
+ 'def %(method)s(self, *args, **kw): return ' +
302
+ 'self.%(attribute)s.%(method)s(*args, **kw)')
303
+
304
+ def __forwardmethods(fromClass, toClass, toPart, exclude = ()):
305
+ ### MANY CHANGES ###
306
+ _dict_1 = {}
307
+ __methodDict(toClass, _dict_1)
308
+ _dict = {}
309
+ mfc = __methods(fromClass)
310
+ for ex in _dict_1.keys():
311
+ if ex[:1] == '_' or ex[-1:] == '_' or ex in exclude or ex in mfc:
312
+ pass
313
+ else:
314
+ _dict[ex] = _dict_1[ex]
315
+
316
+ for method, func in _dict.items():
317
+ d = {'method': method, 'func': func}
318
+ if isinstance(toPart, str):
319
+ execString = \
320
+ __stringBody % {'method' : method, 'attribute' : toPart}
321
+ exec(execString, d)
322
+ setattr(fromClass, method, d[method]) ### NEWU!
323
+
324
+
325
+ class ScrolledCanvas(TK.Frame):
326
+ """Modeled after the scrolled canvas class from Grayons's Tkinter book.
327
+
328
+ Used as the default canvas, which pops up automatically when
329
+ using turtle graphics functions or the Turtle class.
330
+ """
331
+ def __init__(self, master, width=500, height=350,
332
+ canvwidth=600, canvheight=500):
333
+ TK.Frame.__init__(self, master, width=width, height=height)
334
+ self._rootwindow = self.winfo_toplevel()
335
+ self.width, self.height = width, height
336
+ self.canvwidth, self.canvheight = canvwidth, canvheight
337
+ self.bg = "white"
338
+ self._canvas = TK.Canvas(master, width=width, height=height,
339
+ bg=self.bg, relief=TK.SUNKEN, borderwidth=2)
340
+ self.hscroll = TK.Scrollbar(master, command=self._canvas.xview,
341
+ orient=TK.HORIZONTAL)
342
+ self.vscroll = TK.Scrollbar(master, command=self._canvas.yview)
343
+ self._canvas.configure(xscrollcommand=self.hscroll.set,
344
+ yscrollcommand=self.vscroll.set)
345
+ self.rowconfigure(0, weight=1, minsize=0)
346
+ self.columnconfigure(0, weight=1, minsize=0)
347
+ self._canvas.grid(padx=1, in_ = self, pady=1, row=0,
348
+ column=0, rowspan=1, columnspan=1, sticky='news')
349
+ self.vscroll.grid(padx=1, in_ = self, pady=1, row=0,
350
+ column=1, rowspan=1, columnspan=1, sticky='news')
351
+ self.hscroll.grid(padx=1, in_ = self, pady=1, row=1,
352
+ column=0, rowspan=1, columnspan=1, sticky='news')
353
+ self.reset()
354
+ self._rootwindow.bind('<Configure>', self.onResize)
355
+
356
+ def reset(self, canvwidth=None, canvheight=None, bg = None):
357
+ """Adjust canvas and scrollbars according to given canvas size."""
358
+ if canvwidth:
359
+ self.canvwidth = canvwidth
360
+ if canvheight:
361
+ self.canvheight = canvheight
362
+ if bg:
363
+ self.bg = bg
364
+ self._canvas.config(bg=bg,
365
+ scrollregion=(-self.canvwidth//2, -self.canvheight//2,
366
+ self.canvwidth//2, self.canvheight//2))
367
+ self._canvas.xview_moveto(0.5*(self.canvwidth - self.width + 30) /
368
+ self.canvwidth)
369
+ self._canvas.yview_moveto(0.5*(self.canvheight- self.height + 30) /
370
+ self.canvheight)
371
+ self.adjustScrolls()
372
+
373
+
374
+ def adjustScrolls(self):
375
+ """ Adjust scrollbars according to window- and canvas-size.
376
+ """
377
+ cwidth = self._canvas.winfo_width()
378
+ cheight = self._canvas.winfo_height()
379
+ self._canvas.xview_moveto(0.5*(self.canvwidth-cwidth)/self.canvwidth)
380
+ self._canvas.yview_moveto(0.5*(self.canvheight-cheight)/self.canvheight)
381
+ if cwidth < self.canvwidth or cheight < self.canvheight:
382
+ self.hscroll.grid(padx=1, in_ = self, pady=1, row=1,
383
+ column=0, rowspan=1, columnspan=1, sticky='news')
384
+ self.vscroll.grid(padx=1, in_ = self, pady=1, row=0,
385
+ column=1, rowspan=1, columnspan=1, sticky='news')
386
+ else:
387
+ self.hscroll.grid_forget()
388
+ self.vscroll.grid_forget()
389
+
390
+ def onResize(self, event):
391
+ """self-explanatory"""
392
+ self.adjustScrolls()
393
+
394
+ def bbox(self, *args):
395
+ """ 'forward' method, which canvas itself has inherited...
396
+ """
397
+ return self._canvas.bbox(*args)
398
+
399
+ def cget(self, *args, **kwargs):
400
+ """ 'forward' method, which canvas itself has inherited...
401
+ """
402
+ return self._canvas.cget(*args, **kwargs)
403
+
404
+ def config(self, *args, **kwargs):
405
+ """ 'forward' method, which canvas itself has inherited...
406
+ """
407
+ self._canvas.config(*args, **kwargs)
408
+
409
+ def bind(self, *args, **kwargs):
410
+ """ 'forward' method, which canvas itself has inherited...
411
+ """
412
+ self._canvas.bind(*args, **kwargs)
413
+
414
+ def unbind(self, *args, **kwargs):
415
+ """ 'forward' method, which canvas itself has inherited...
416
+ """
417
+ self._canvas.unbind(*args, **kwargs)
418
+
419
+ def focus_force(self):
420
+ """ 'forward' method, which canvas itself has inherited...
421
+ """
422
+ self._canvas.focus_force()
423
+
424
+ __forwardmethods(ScrolledCanvas, TK.Canvas, '_canvas')
425
+
426
+
427
+ class _Root(TK.Tk):
428
+ """Root class for Screen based on Tkinter."""
429
+ def __init__(self):
430
+ TK.Tk.__init__(self)
431
+
432
+ def setupcanvas(self, width, height, cwidth, cheight):
433
+ self._canvas = ScrolledCanvas(self, width, height, cwidth, cheight)
434
+ self._canvas.pack(expand=1, fill="both")
435
+
436
+ def _getcanvas(self):
437
+ return self._canvas
438
+
439
+ def set_geometry(self, width, height, startx, starty):
440
+ self.geometry("%dx%d%+d%+d"%(width, height, startx, starty))
441
+
442
+ def ondestroy(self, destroy):
443
+ self.wm_protocol("WM_DELETE_WINDOW", destroy)
444
+
445
+ def win_width(self):
446
+ return self.winfo_screenwidth()
447
+
448
+ def win_height(self):
449
+ return self.winfo_screenheight()
450
+
451
+ Canvas = TK.Canvas
452
+
453
+
454
+ class TurtleScreenBase(object):
455
+ """Provide the basic graphics functionality.
456
+ Interface between Tkinter and turtle.py.
457
+
458
+ To port turtle.py to some different graphics toolkit
459
+ a corresponding TurtleScreenBase class has to be implemented.
460
+ """
461
+
462
+ def _blankimage(self):
463
+ """return a blank image object
464
+ """
465
+ img = TK.PhotoImage(width=1, height=1, master=self.cv)
466
+ img.blank()
467
+ return img
468
+
469
+ def _image(self, filename):
470
+ """return an image object containing the
471
+ imagedata from a gif-file named filename.
472
+ """
473
+ return TK.PhotoImage(file=filename, master=self.cv)
474
+
475
+ def __init__(self, cv):
476
+ self.cv = cv
477
+ if isinstance(cv, ScrolledCanvas):
478
+ w = self.cv.canvwidth
479
+ h = self.cv.canvheight
480
+ else: # expected: ordinary TK.Canvas
481
+ w = int(self.cv.cget("width"))
482
+ h = int(self.cv.cget("height"))
483
+ self.cv.config(scrollregion = (-w//2, -h//2, w//2, h//2 ))
484
+ self.canvwidth = w
485
+ self.canvheight = h
486
+ self.xscale = self.yscale = 1.0
487
+
488
+ def _createpoly(self):
489
+ """Create an invisible polygon item on canvas self.cv)
490
+ """
491
+ return self.cv.create_polygon((0, 0, 0, 0, 0, 0), fill="", outline="")
492
+
493
+ def _drawpoly(self, polyitem, coordlist, fill=None,
494
+ outline=None, width=None, top=False):
495
+ """Configure polygonitem polyitem according to provided
496
+ arguments:
497
+ coordlist is sequence of coordinates
498
+ fill is filling color
499
+ outline is outline color
500
+ top is a boolean value, which specifies if polyitem
501
+ will be put on top of the canvas' displaylist so it
502
+ will not be covered by other items.
503
+ """
504
+ cl = []
505
+ for x, y in coordlist:
506
+ cl.append(x * self.xscale)
507
+ cl.append(-y * self.yscale)
508
+ self.cv.coords(polyitem, *cl)
509
+ if fill is not None:
510
+ self.cv.itemconfigure(polyitem, fill=fill)
511
+ if outline is not None:
512
+ self.cv.itemconfigure(polyitem, outline=outline)
513
+ if width is not None:
514
+ self.cv.itemconfigure(polyitem, width=width)
515
+ if top:
516
+ self.cv.tag_raise(polyitem)
517
+
518
+ def _createline(self):
519
+ """Create an invisible line item on canvas self.cv)
520
+ """
521
+ return self.cv.create_line(0, 0, 0, 0, fill="", width=2,
522
+ capstyle = TK.ROUND)
523
+
524
+ def _drawline(self, lineitem, coordlist=None,
525
+ fill=None, width=None, top=False):
526
+ """Configure lineitem according to provided arguments:
527
+ coordlist is sequence of coordinates
528
+ fill is drawing color
529
+ width is width of drawn line.
530
+ top is a boolean value, which specifies if polyitem
531
+ will be put on top of the canvas' displaylist so it
532
+ will not be covered by other items.
533
+ """
534
+ if coordlist is not None:
535
+ cl = []
536
+ for x, y in coordlist:
537
+ cl.append(x * self.xscale)
538
+ cl.append(-y * self.yscale)
539
+ self.cv.coords(lineitem, *cl)
540
+ if fill is not None:
541
+ self.cv.itemconfigure(lineitem, fill=fill)
542
+ if width is not None:
543
+ self.cv.itemconfigure(lineitem, width=width)
544
+ if top:
545
+ self.cv.tag_raise(lineitem)
546
+
547
+ def _delete(self, item):
548
+ """Delete graphics item from canvas.
549
+ If item is"all" delete all graphics items.
550
+ """
551
+ self.cv.delete(item)
552
+
553
+ def _update(self):
554
+ """Redraw graphics items on canvas
555
+ """
556
+ self.cv.update()
557
+
558
+ def _delay(self, delay):
559
+ """Delay subsequent canvas actions for delay ms."""
560
+ self.cv.after(delay)
561
+
562
+ def _iscolorstring(self, color):
563
+ """Check if the string color is a legal Tkinter color string.
564
+ """
565
+ try:
566
+ rgb = self.cv.winfo_rgb(color)
567
+ ok = True
568
+ except TK.TclError:
569
+ ok = False
570
+ return ok
571
+
572
+ def _bgcolor(self, color=None):
573
+ """Set canvas' backgroundcolor if color is not None,
574
+ else return backgroundcolor."""
575
+ if color is not None:
576
+ self.cv.config(bg = color)
577
+ self._update()
578
+ else:
579
+ return self.cv.cget("bg")
580
+
581
+ def _write(self, pos, txt, align, font, pencolor):
582
+ """Write txt at pos in canvas with specified font
583
+ and color.
584
+ Return text item and x-coord of right bottom corner
585
+ of text's bounding box."""
586
+ x, y = pos
587
+ x = x * self.xscale
588
+ y = y * self.yscale
589
+ anchor = {"left":"sw", "center":"s", "right":"se" }
590
+ item = self.cv.create_text(x-1, -y, text = txt, anchor = anchor[align],
591
+ fill = pencolor, font = font)
592
+ x0, y0, x1, y1 = self.cv.bbox(item)
593
+ return item, x1-1
594
+
595
+ def _onclick(self, item, fun, num=1, add=None):
596
+ """Bind fun to mouse-click event on turtle.
597
+ fun must be a function with two arguments, the coordinates
598
+ of the clicked point on the canvas.
599
+ num, the number of the mouse-button defaults to 1
600
+ """
601
+ if fun is None:
602
+ self.cv.tag_unbind(item, "<Button-%s>" % num)
603
+ else:
604
+ def eventfun(event):
605
+ x, y = (self.cv.canvasx(event.x)/self.xscale,
606
+ -self.cv.canvasy(event.y)/self.yscale)
607
+ fun(x, y)
608
+ self.cv.tag_bind(item, "<Button-%s>" % num, eventfun, add)
609
+
610
+ def _onrelease(self, item, fun, num=1, add=None):
611
+ """Bind fun to mouse-button-release event on turtle.
612
+ fun must be a function with two arguments, the coordinates
613
+ of the point on the canvas where mouse button is released.
614
+ num, the number of the mouse-button defaults to 1
615
+
616
+ If a turtle is clicked, first _onclick-event will be performed,
617
+ then _onscreensclick-event.
618
+ """
619
+ if fun is None:
620
+ self.cv.tag_unbind(item, "<Button%s-ButtonRelease>" % num)
621
+ else:
622
+ def eventfun(event):
623
+ x, y = (self.cv.canvasx(event.x)/self.xscale,
624
+ -self.cv.canvasy(event.y)/self.yscale)
625
+ fun(x, y)
626
+ self.cv.tag_bind(item, "<Button%s-ButtonRelease>" % num,
627
+ eventfun, add)
628
+
629
+ def _ondrag(self, item, fun, num=1, add=None):
630
+ """Bind fun to mouse-move-event (with pressed mouse button) on turtle.
631
+ fun must be a function with two arguments, the coordinates of the
632
+ actual mouse position on the canvas.
633
+ num, the number of the mouse-button defaults to 1
634
+
635
+ Every sequence of mouse-move-events on a turtle is preceded by a
636
+ mouse-click event on that turtle.
637
+ """
638
+ if fun is None:
639
+ self.cv.tag_unbind(item, "<Button%s-Motion>" % num)
640
+ else:
641
+ def eventfun(event):
642
+ try:
643
+ x, y = (self.cv.canvasx(event.x)/self.xscale,
644
+ -self.cv.canvasy(event.y)/self.yscale)
645
+ fun(x, y)
646
+ except Exception:
647
+ pass
648
+ self.cv.tag_bind(item, "<Button%s-Motion>" % num, eventfun, add)
649
+
650
+ def _onscreenclick(self, fun, num=1, add=None):
651
+ """Bind fun to mouse-click event on canvas.
652
+ fun must be a function with two arguments, the coordinates
653
+ of the clicked point on the canvas.
654
+ num, the number of the mouse-button defaults to 1
655
+
656
+ If a turtle is clicked, first _onclick-event will be performed,
657
+ then _onscreensclick-event.
658
+ """
659
+ if fun is None:
660
+ self.cv.unbind("<Button-%s>" % num)
661
+ else:
662
+ def eventfun(event):
663
+ x, y = (self.cv.canvasx(event.x)/self.xscale,
664
+ -self.cv.canvasy(event.y)/self.yscale)
665
+ fun(x, y)
666
+ self.cv.bind("<Button-%s>" % num, eventfun, add)
667
+
668
+ def _onkeyrelease(self, fun, key):
669
+ """Bind fun to key-release event of key.
670
+ Canvas must have focus. See method listen
671
+ """
672
+ if fun is None:
673
+ self.cv.unbind("<KeyRelease-%s>" % key, None)
674
+ else:
675
+ def eventfun(event):
676
+ fun()
677
+ self.cv.bind("<KeyRelease-%s>" % key, eventfun)
678
+
679
+ def _onkeypress(self, fun, key=None):
680
+ """If key is given, bind fun to key-press event of key.
681
+ Otherwise bind fun to any key-press.
682
+ Canvas must have focus. See method listen.
683
+ """
684
+ if fun is None:
685
+ if key is None:
686
+ self.cv.unbind("<KeyPress>", None)
687
+ else:
688
+ self.cv.unbind("<KeyPress-%s>" % key, None)
689
+ else:
690
+ def eventfun(event):
691
+ fun()
692
+ if key is None:
693
+ self.cv.bind("<KeyPress>", eventfun)
694
+ else:
695
+ self.cv.bind("<KeyPress-%s>" % key, eventfun)
696
+
697
+ def _listen(self):
698
+ """Set focus on canvas (in order to collect key-events)
699
+ """
700
+ self.cv.focus_force()
701
+
702
+ def _ontimer(self, fun, t):
703
+ """Install a timer, which calls fun after t milliseconds.
704
+ """
705
+ if t == 0:
706
+ self.cv.after_idle(fun)
707
+ else:
708
+ self.cv.after(t, fun)
709
+
710
+ def _createimage(self, image):
711
+ """Create and return image item on canvas.
712
+ """
713
+ return self.cv.create_image(0, 0, image=image)
714
+
715
+ def _drawimage(self, item, pos, image):
716
+ """Configure image item as to draw image object
717
+ at position (x,y) on canvas)
718
+ """
719
+ x, y = pos
720
+ self.cv.coords(item, (x * self.xscale, -y * self.yscale))
721
+ self.cv.itemconfig(item, image=image)
722
+
723
+ def _setbgpic(self, item, image):
724
+ """Configure image item as to draw image object
725
+ at center of canvas. Set item to the first item
726
+ in the displaylist, so it will be drawn below
727
+ any other item ."""
728
+ self.cv.itemconfig(item, image=image)
729
+ self.cv.tag_lower(item)
730
+
731
+ def _type(self, item):
732
+ """Return 'line' or 'polygon' or 'image' depending on
733
+ type of item.
734
+ """
735
+ return self.cv.type(item)
736
+
737
+ def _pointlist(self, item):
738
+ """returns list of coordinate-pairs of points of item
739
+ Example (for insiders):
740
+ >>> from turtle import *
741
+ >>> getscreen()._pointlist(getturtle().turtle._item)
742
+ [(0.0, 9.9999999999999982), (0.0, -9.9999999999999982),
743
+ (9.9999999999999982, 0.0)]
744
+ >>> """
745
+ cl = self.cv.coords(item)
746
+ pl = [(cl[i], -cl[i+1]) for i in range(0, len(cl), 2)]
747
+ return pl
748
+
749
+ def _setscrollregion(self, srx1, sry1, srx2, sry2):
750
+ self.cv.config(scrollregion=(srx1, sry1, srx2, sry2))
751
+
752
+ def _rescale(self, xscalefactor, yscalefactor):
753
+ items = self.cv.find_all()
754
+ for item in items:
755
+ coordinates = list(self.cv.coords(item))
756
+ newcoordlist = []
757
+ while coordinates:
758
+ x, y = coordinates[:2]
759
+ newcoordlist.append(x * xscalefactor)
760
+ newcoordlist.append(y * yscalefactor)
761
+ coordinates = coordinates[2:]
762
+ self.cv.coords(item, *newcoordlist)
763
+
764
+ def _resize(self, canvwidth=None, canvheight=None, bg=None):
765
+ """Resize the canvas the turtles are drawing on. Does
766
+ not alter the drawing window.
767
+ """
768
+ # needs amendment
769
+ if not isinstance(self.cv, ScrolledCanvas):
770
+ return self.canvwidth, self.canvheight
771
+ if canvwidth is canvheight is bg is None:
772
+ return self.cv.canvwidth, self.cv.canvheight
773
+ if canvwidth is not None:
774
+ self.canvwidth = canvwidth
775
+ if canvheight is not None:
776
+ self.canvheight = canvheight
777
+ self.cv.reset(canvwidth, canvheight, bg)
778
+
779
+ def _window_size(self):
780
+ """ Return the width and height of the turtle window.
781
+ """
782
+ width = self.cv.winfo_width()
783
+ if width <= 1: # the window isn't managed by a geometry manager
784
+ width = self.cv['width']
785
+ height = self.cv.winfo_height()
786
+ if height <= 1: # the window isn't managed by a geometry manager
787
+ height = self.cv['height']
788
+ return width, height
789
+
790
+ def mainloop(self):
791
+ """Starts event loop - calling Tkinter's mainloop function.
792
+
793
+ No argument.
794
+
795
+ Must be last statement in a turtle graphics program.
796
+ Must NOT be used if a script is run from within IDLE in -n mode
797
+ (No subprocess) - for interactive use of turtle graphics.
798
+
799
+ Example (for a TurtleScreen instance named screen):
800
+ >>> screen.mainloop()
801
+
802
+ """
803
+ self.cv.tk.mainloop()
804
+
805
+ def textinput(self, title, prompt):
806
+ """Pop up a dialog window for input of a string.
807
+
808
+ Arguments: title is the title of the dialog window,
809
+ prompt is a text mostly describing what information to input.
810
+
811
+ Return the string input
812
+ If the dialog is canceled, return None.
813
+
814
+ Example (for a TurtleScreen instance named screen):
815
+ >>> screen.textinput("NIM", "Name of first player:")
816
+
817
+ """
818
+ return simpledialog.askstring(title, prompt, parent=self.cv)
819
+
820
+ def numinput(self, title, prompt, default=None, minval=None, maxval=None):
821
+ """Pop up a dialog window for input of a number.
822
+
823
+ Arguments: title is the title of the dialog window,
824
+ prompt is a text mostly describing what numerical information to input.
825
+ default: default value
826
+ minval: minimum value for input
827
+ maxval: maximum value for input
828
+
829
+ The number input must be in the range minval .. maxval if these are
830
+ given. If not, a hint is issued and the dialog remains open for
831
+ correction. Return the number input.
832
+ If the dialog is canceled, return None.
833
+
834
+ Example (for a TurtleScreen instance named screen):
835
+ >>> screen.numinput("Poker", "Your stakes:", 1000, minval=10, maxval=10000)
836
+
837
+ """
838
+ return simpledialog.askfloat(title, prompt, initialvalue=default,
839
+ minvalue=minval, maxvalue=maxval,
840
+ parent=self.cv)
841
+
842
+
843
+ ##############################################################################
844
+ ### End of Tkinter - interface ###
845
+ ##############################################################################
846
+
847
+
848
+ class Terminator (Exception):
849
+ """Will be raised in TurtleScreen.update, if _RUNNING becomes False.
850
+
851
+ This stops execution of a turtle graphics script.
852
+ Main purpose: use in the Demo-Viewer turtle.Demo.py.
853
+ """
854
+ pass
855
+
856
+
857
+ class TurtleGraphicsError(Exception):
858
+ """Some TurtleGraphics Error
859
+ """
860
+
861
+
862
+ class Shape(object):
863
+ """Data structure modeling shapes.
864
+
865
+ attribute _type is one of "polygon", "image", "compound"
866
+ attribute _data is - depending on _type a poygon-tuple,
867
+ an image or a list constructed using the addcomponent method.
868
+ """
869
+ def __init__(self, type_, data=None):
870
+ self._type = type_
871
+ if type_ == "polygon":
872
+ if isinstance(data, list):
873
+ data = tuple(data)
874
+ elif type_ == "image":
875
+ if isinstance(data, str):
876
+ if data.lower().endswith(".gif") and isfile(data):
877
+ data = TurtleScreen._image(data)
878
+ # else data assumed to be Photoimage
879
+ elif type_ == "compound":
880
+ data = []
881
+ else:
882
+ raise TurtleGraphicsError("There is no shape type %s" % type_)
883
+ self._data = data
884
+
885
+ def addcomponent(self, poly, fill, outline=None):
886
+ """Add component to a shape of type compound.
887
+
888
+ Arguments: poly is a polygon, i. e. a tuple of number pairs.
889
+ fill is the fillcolor of the component,
890
+ outline is the outline color of the component.
891
+
892
+ call (for a Shapeobject namend s):
893
+ -- s.addcomponent(((0,0), (10,10), (-10,10)), "red", "blue")
894
+
895
+ Example:
896
+ >>> poly = ((0,0),(10,-5),(0,10),(-10,-5))
897
+ >>> s = Shape("compound")
898
+ >>> s.addcomponent(poly, "red", "blue")
899
+ >>> # .. add more components and then use register_shape()
900
+ """
901
+ if self._type != "compound":
902
+ raise TurtleGraphicsError("Cannot add component to %s Shape"
903
+ % self._type)
904
+ if outline is None:
905
+ outline = fill
906
+ self._data.append([poly, fill, outline])
907
+
908
+
909
+ class Tbuffer(object):
910
+ """Ring buffer used as undobuffer for RawTurtle objects."""
911
+ def __init__(self, bufsize=10):
912
+ self.bufsize = bufsize
913
+ self.buffer = [[None]] * bufsize
914
+ self.ptr = -1
915
+ self.cumulate = False
916
+ def reset(self, bufsize=None):
917
+ if bufsize is None:
918
+ for i in range(self.bufsize):
919
+ self.buffer[i] = [None]
920
+ else:
921
+ self.bufsize = bufsize
922
+ self.buffer = [[None]] * bufsize
923
+ self.ptr = -1
924
+ def push(self, item):
925
+ if self.bufsize > 0:
926
+ if not self.cumulate:
927
+ self.ptr = (self.ptr + 1) % self.bufsize
928
+ self.buffer[self.ptr] = item
929
+ else:
930
+ self.buffer[self.ptr].append(item)
931
+ def pop(self):
932
+ if self.bufsize > 0:
933
+ item = self.buffer[self.ptr]
934
+ if item is None:
935
+ return None
936
+ else:
937
+ self.buffer[self.ptr] = [None]
938
+ self.ptr = (self.ptr - 1) % self.bufsize
939
+ return (item)
940
+ def nr_of_items(self):
941
+ return self.bufsize - self.buffer.count([None])
942
+ def __repr__(self):
943
+ return str(self.buffer) + " " + str(self.ptr)
944
+
945
+
946
+
947
+ class TurtleScreen(TurtleScreenBase):
948
+ """Provides screen oriented methods like bgcolor etc.
949
+
950
+ Only relies upon the methods of TurtleScreenBase and NOT
951
+ upon components of the underlying graphics toolkit -
952
+ which is Tkinter in this case.
953
+ """
954
+ _RUNNING = True
955
+
956
+ def __init__(self, cv, mode=_CFG["mode"],
957
+ colormode=_CFG["colormode"], delay=_CFG["delay"]):
958
+ TurtleScreenBase.__init__(self, cv)
959
+
960
+ self._shapes = {
961
+ "arrow" : Shape("polygon", ((-10,0), (10,0), (0,10))),
962
+ "turtle" : Shape("polygon", ((0,16), (-2,14), (-1,10), (-4,7),
963
+ (-7,9), (-9,8), (-6,5), (-7,1), (-5,-3), (-8,-6),
964
+ (-6,-8), (-4,-5), (0,-7), (4,-5), (6,-8), (8,-6),
965
+ (5,-3), (7,1), (6,5), (9,8), (7,9), (4,7), (1,10),
966
+ (2,14))),
967
+ "circle" : Shape("polygon", ((10,0), (9.51,3.09), (8.09,5.88),
968
+ (5.88,8.09), (3.09,9.51), (0,10), (-3.09,9.51),
969
+ (-5.88,8.09), (-8.09,5.88), (-9.51,3.09), (-10,0),
970
+ (-9.51,-3.09), (-8.09,-5.88), (-5.88,-8.09),
971
+ (-3.09,-9.51), (-0.00,-10.00), (3.09,-9.51),
972
+ (5.88,-8.09), (8.09,-5.88), (9.51,-3.09))),
973
+ "square" : Shape("polygon", ((10,-10), (10,10), (-10,10),
974
+ (-10,-10))),
975
+ "triangle" : Shape("polygon", ((10,-5.77), (0,11.55),
976
+ (-10,-5.77))),
977
+ "classic": Shape("polygon", ((0,0),(-5,-9),(0,-7),(5,-9))),
978
+ "blank" : Shape("image", self._blankimage())
979
+ }
980
+
981
+ self._bgpics = {"nopic" : ""}
982
+
983
+ self._mode = mode
984
+ self._delayvalue = delay
985
+ self._colormode = _CFG["colormode"]
986
+ self._keys = []
987
+ self.clear()
988
+ if sys.platform == 'darwin':
989
+ # Force Turtle window to the front on OS X. This is needed because
990
+ # the Turtle window will show behind the Terminal window when you
991
+ # start the demo from the command line.
992
+ rootwindow = cv.winfo_toplevel()
993
+ rootwindow.call('wm', 'attributes', '.', '-topmost', '1')
994
+ rootwindow.call('wm', 'attributes', '.', '-topmost', '0')
995
+
996
+ def clear(self):
997
+ """Delete all drawings and all turtles from the TurtleScreen.
998
+
999
+ No argument.
1000
+
1001
+ Reset empty TurtleScreen to its initial state: white background,
1002
+ no backgroundimage, no eventbindings and tracing on.
1003
+
1004
+ Example (for a TurtleScreen instance named screen):
1005
+ >>> screen.clear()
1006
+
1007
+ Note: this method is not available as function.
1008
+ """
1009
+ self._delayvalue = _CFG["delay"]
1010
+ self._colormode = _CFG["colormode"]
1011
+ self._delete("all")
1012
+ self._bgpic = self._createimage("")
1013
+ self._bgpicname = "nopic"
1014
+ self._tracing = 1
1015
+ self._updatecounter = 0
1016
+ self._turtles = []
1017
+ self.bgcolor("white")
1018
+ for btn in 1, 2, 3:
1019
+ self.onclick(None, btn)
1020
+ self.onkeypress(None)
1021
+ for key in self._keys[:]:
1022
+ self.onkey(None, key)
1023
+ self.onkeypress(None, key)
1024
+ Turtle._pen = None
1025
+
1026
+ def mode(self, mode=None):
1027
+ """Set turtle-mode ('standard', 'logo' or 'world') and perform reset.
1028
+
1029
+ Optional argument:
1030
+ mode -- one of the strings 'standard', 'logo' or 'world'
1031
+
1032
+ Mode 'standard' is compatible with turtle.py.
1033
+ Mode 'logo' is compatible with most Logo-Turtle-Graphics.
1034
+ Mode 'world' uses userdefined 'worldcoordinates'. *Attention*: in
1035
+ this mode angles appear distorted if x/y unit-ratio doesn't equal 1.
1036
+ If mode is not given, return the current mode.
1037
+
1038
+ Mode Initial turtle heading positive angles
1039
+ ------------|-------------------------|-------------------
1040
+ 'standard' to the right (east) counterclockwise
1041
+ 'logo' upward (north) clockwise
1042
+
1043
+ Examples:
1044
+ >>> mode('logo') # resets turtle heading to north
1045
+ >>> mode()
1046
+ 'logo'
1047
+ """
1048
+ if mode is None:
1049
+ return self._mode
1050
+ mode = mode.lower()
1051
+ if mode not in ["standard", "logo", "world"]:
1052
+ raise TurtleGraphicsError("No turtle-graphics-mode %s" % mode)
1053
+ self._mode = mode
1054
+ if mode in ["standard", "logo"]:
1055
+ self._setscrollregion(-self.canvwidth//2, -self.canvheight//2,
1056
+ self.canvwidth//2, self.canvheight//2)
1057
+ self.xscale = self.yscale = 1.0
1058
+ self.reset()
1059
+
1060
+ def setworldcoordinates(self, llx, lly, urx, ury):
1061
+ """Set up a user defined coordinate-system.
1062
+
1063
+ Arguments:
1064
+ llx -- a number, x-coordinate of lower left corner of canvas
1065
+ lly -- a number, y-coordinate of lower left corner of canvas
1066
+ urx -- a number, x-coordinate of upper right corner of canvas
1067
+ ury -- a number, y-coordinate of upper right corner of canvas
1068
+
1069
+ Set up user coodinat-system and switch to mode 'world' if necessary.
1070
+ This performs a screen.reset. If mode 'world' is already active,
1071
+ all drawings are redrawn according to the new coordinates.
1072
+
1073
+ But ATTENTION: in user-defined coordinatesystems angles may appear
1074
+ distorted. (see Screen.mode())
1075
+
1076
+ Example (for a TurtleScreen instance named screen):
1077
+ >>> screen.setworldcoordinates(-10,-0.5,50,1.5)
1078
+ >>> for _ in range(36):
1079
+ ... left(10)
1080
+ ... forward(0.5)
1081
+ """
1082
+ if self.mode() != "world":
1083
+ self.mode("world")
1084
+ xspan = float(urx - llx)
1085
+ yspan = float(ury - lly)
1086
+ wx, wy = self._window_size()
1087
+ self.screensize(wx-20, wy-20)
1088
+ oldxscale, oldyscale = self.xscale, self.yscale
1089
+ self.xscale = self.canvwidth / xspan
1090
+ self.yscale = self.canvheight / yspan
1091
+ srx1 = llx * self.xscale
1092
+ sry1 = -ury * self.yscale
1093
+ srx2 = self.canvwidth + srx1
1094
+ sry2 = self.canvheight + sry1
1095
+ self._setscrollregion(srx1, sry1, srx2, sry2)
1096
+ self._rescale(self.xscale/oldxscale, self.yscale/oldyscale)
1097
+ self.update()
1098
+
1099
+ def register_shape(self, name, shape=None):
1100
+ """Adds a turtle shape to TurtleScreen's shapelist.
1101
+
1102
+ Arguments:
1103
+ (1) name is the name of a gif-file and shape is None.
1104
+ Installs the corresponding image shape.
1105
+ !! Image-shapes DO NOT rotate when turning the turtle,
1106
+ !! so they do not display the heading of the turtle!
1107
+ (2) name is an arbitrary string and shape is a tuple
1108
+ of pairs of coordinates. Installs the corresponding
1109
+ polygon shape
1110
+ (3) name is an arbitrary string and shape is a
1111
+ (compound) Shape object. Installs the corresponding
1112
+ compound shape.
1113
+ To use a shape, you have to issue the command shape(shapename).
1114
+
1115
+ call: register_shape("turtle.gif")
1116
+ --or: register_shape("tri", ((0,0), (10,10), (-10,10)))
1117
+
1118
+ Example (for a TurtleScreen instance named screen):
1119
+ >>> screen.register_shape("triangle", ((5,-3),(0,5),(-5,-3)))
1120
+
1121
+ """
1122
+ if shape is None:
1123
+ # image
1124
+ if name.lower().endswith(".gif"):
1125
+ shape = Shape("image", self._image(name))
1126
+ else:
1127
+ raise TurtleGraphicsError("Bad arguments for register_shape.\n"
1128
+ + "Use help(register_shape)" )
1129
+ elif isinstance(shape, tuple):
1130
+ shape = Shape("polygon", shape)
1131
+ ## else shape assumed to be Shape-instance
1132
+ self._shapes[name] = shape
1133
+
1134
+ def _colorstr(self, color):
1135
+ """Return color string corresponding to args.
1136
+
1137
+ Argument may be a string or a tuple of three
1138
+ numbers corresponding to actual colormode,
1139
+ i.e. in the range 0<=n<=colormode.
1140
+
1141
+ If the argument doesn't represent a color,
1142
+ an error is raised.
1143
+ """
1144
+ if len(color) == 1:
1145
+ color = color[0]
1146
+ if isinstance(color, str):
1147
+ if self._iscolorstring(color) or color == "":
1148
+ return color
1149
+ else:
1150
+ raise TurtleGraphicsError("bad color string: %s" % str(color))
1151
+ try:
1152
+ r, g, b = color
1153
+ except (TypeError, ValueError):
1154
+ raise TurtleGraphicsError("bad color arguments: %s" % str(color))
1155
+ if self._colormode == 1.0:
1156
+ r, g, b = [round(255.0*x) for x in (r, g, b)]
1157
+ if not ((0 <= r <= 255) and (0 <= g <= 255) and (0 <= b <= 255)):
1158
+ raise TurtleGraphicsError("bad color sequence: %s" % str(color))
1159
+ return "#%02x%02x%02x" % (r, g, b)
1160
+
1161
+ def _color(self, cstr):
1162
+ if not cstr.startswith("#"):
1163
+ return cstr
1164
+ if len(cstr) == 7:
1165
+ cl = [int(cstr[i:i+2], 16) for i in (1, 3, 5)]
1166
+ elif len(cstr) == 4:
1167
+ cl = [16*int(cstr[h], 16) for h in cstr[1:]]
1168
+ else:
1169
+ raise TurtleGraphicsError("bad colorstring: %s" % cstr)
1170
+ return tuple(c * self._colormode/255 for c in cl)
1171
+
1172
+ def colormode(self, cmode=None):
1173
+ """Return the colormode or set it to 1.0 or 255.
1174
+
1175
+ Optional argument:
1176
+ cmode -- one of the values 1.0 or 255
1177
+
1178
+ r, g, b values of colortriples have to be in range 0..cmode.
1179
+
1180
+ Example (for a TurtleScreen instance named screen):
1181
+ >>> screen.colormode()
1182
+ 1.0
1183
+ >>> screen.colormode(255)
1184
+ >>> pencolor(240,160,80)
1185
+ """
1186
+ if cmode is None:
1187
+ return self._colormode
1188
+ if cmode == 1.0:
1189
+ self._colormode = float(cmode)
1190
+ elif cmode == 255:
1191
+ self._colormode = int(cmode)
1192
+
1193
+ def reset(self):
1194
+ """Reset all Turtles on the Screen to their initial state.
1195
+
1196
+ No argument.
1197
+
1198
+ Example (for a TurtleScreen instance named screen):
1199
+ >>> screen.reset()
1200
+ """
1201
+ for turtle in self._turtles:
1202
+ turtle._setmode(self._mode)
1203
+ turtle.reset()
1204
+
1205
+ def turtles(self):
1206
+ """Return the list of turtles on the screen.
1207
+
1208
+ Example (for a TurtleScreen instance named screen):
1209
+ >>> screen.turtles()
1210
+ [<turtle.Turtle object at 0x00E11FB0>]
1211
+ """
1212
+ return self._turtles
1213
+
1214
+ def bgcolor(self, *args):
1215
+ """Set or return backgroundcolor of the TurtleScreen.
1216
+
1217
+ Arguments (if given): a color string or three numbers
1218
+ in the range 0..colormode or a 3-tuple of such numbers.
1219
+
1220
+ Example (for a TurtleScreen instance named screen):
1221
+ >>> screen.bgcolor("orange")
1222
+ >>> screen.bgcolor()
1223
+ 'orange'
1224
+ >>> screen.bgcolor(0.5,0,0.5)
1225
+ >>> screen.bgcolor()
1226
+ '#800080'
1227
+ """
1228
+ if args:
1229
+ color = self._colorstr(args)
1230
+ else:
1231
+ color = None
1232
+ color = self._bgcolor(color)
1233
+ if color is not None:
1234
+ color = self._color(color)
1235
+ return color
1236
+
1237
+ def tracer(self, n=None, delay=None):
1238
+ """Turns turtle animation on/off and set delay for update drawings.
1239
+
1240
+ Optional arguments:
1241
+ n -- nonnegative integer
1242
+ delay -- nonnegative integer
1243
+
1244
+ If n is given, only each n-th regular screen update is really performed.
1245
+ (Can be used to accelerate the drawing of complex graphics.)
1246
+ Second arguments sets delay value (see RawTurtle.delay())
1247
+
1248
+ Example (for a TurtleScreen instance named screen):
1249
+ >>> screen.tracer(8, 25)
1250
+ >>> dist = 2
1251
+ >>> for i in range(200):
1252
+ ... fd(dist)
1253
+ ... rt(90)
1254
+ ... dist += 2
1255
+ """
1256
+ if n is None:
1257
+ return self._tracing
1258
+ self._tracing = int(n)
1259
+ self._updatecounter = 0
1260
+ if delay is not None:
1261
+ self._delayvalue = int(delay)
1262
+ if self._tracing:
1263
+ self.update()
1264
+
1265
+ def delay(self, delay=None):
1266
+ """ Return or set the drawing delay in milliseconds.
1267
+
1268
+ Optional argument:
1269
+ delay -- positive integer
1270
+
1271
+ Example (for a TurtleScreen instance named screen):
1272
+ >>> screen.delay(15)
1273
+ >>> screen.delay()
1274
+ 15
1275
+ """
1276
+ if delay is None:
1277
+ return self._delayvalue
1278
+ self._delayvalue = int(delay)
1279
+
1280
+ def _incrementudc(self):
1281
+ """Increment update counter."""
1282
+ if not TurtleScreen._RUNNING:
1283
+ TurtleScreen._RUNNING = True
1284
+ raise Terminator
1285
+ if self._tracing > 0:
1286
+ self._updatecounter += 1
1287
+ self._updatecounter %= self._tracing
1288
+
1289
+ def update(self):
1290
+ """Perform a TurtleScreen update.
1291
+ """
1292
+ tracing = self._tracing
1293
+ self._tracing = True
1294
+ for t in self.turtles():
1295
+ t._update_data()
1296
+ t._drawturtle()
1297
+ self._tracing = tracing
1298
+ self._update()
1299
+
1300
+ def window_width(self):
1301
+ """ Return the width of the turtle window.
1302
+
1303
+ Example (for a TurtleScreen instance named screen):
1304
+ >>> screen.window_width()
1305
+ 640
1306
+ """
1307
+ return self._window_size()[0]
1308
+
1309
+ def window_height(self):
1310
+ """ Return the height of the turtle window.
1311
+
1312
+ Example (for a TurtleScreen instance named screen):
1313
+ >>> screen.window_height()
1314
+ 480
1315
+ """
1316
+ return self._window_size()[1]
1317
+
1318
+ def getcanvas(self):
1319
+ """Return the Canvas of this TurtleScreen.
1320
+
1321
+ No argument.
1322
+
1323
+ Example (for a Screen instance named screen):
1324
+ >>> cv = screen.getcanvas()
1325
+ >>> cv
1326
+ <turtle.ScrolledCanvas instance at 0x010742D8>
1327
+ """
1328
+ return self.cv
1329
+
1330
+ def getshapes(self):
1331
+ """Return a list of names of all currently available turtle shapes.
1332
+
1333
+ No argument.
1334
+
1335
+ Example (for a TurtleScreen instance named screen):
1336
+ >>> screen.getshapes()
1337
+ ['arrow', 'blank', 'circle', ... , 'turtle']
1338
+ """
1339
+ return sorted(self._shapes.keys())
1340
+
1341
+ def onclick(self, fun, btn=1, add=None):
1342
+ """Bind fun to mouse-click event on canvas.
1343
+
1344
+ Arguments:
1345
+ fun -- a function with two arguments, the coordinates of the
1346
+ clicked point on the canvas.
1347
+ btn -- the number of the mouse-button, defaults to 1
1348
+
1349
+ Example (for a TurtleScreen instance named screen)
1350
+
1351
+ >>> screen.onclick(goto)
1352
+ >>> # Subsequently clicking into the TurtleScreen will
1353
+ >>> # make the turtle move to the clicked point.
1354
+ >>> screen.onclick(None)
1355
+ """
1356
+ self._onscreenclick(fun, btn, add)
1357
+
1358
+ def onkey(self, fun, key):
1359
+ """Bind fun to key-release event of key.
1360
+
1361
+ Arguments:
1362
+ fun -- a function with no arguments
1363
+ key -- a string: key (e.g. "a") or key-symbol (e.g. "space")
1364
+
1365
+ In order to be able to register key-events, TurtleScreen
1366
+ must have focus. (See method listen.)
1367
+
1368
+ Example (for a TurtleScreen instance named screen):
1369
+
1370
+ >>> def f():
1371
+ ... fd(50)
1372
+ ... lt(60)
1373
+ ...
1374
+ >>> screen.onkey(f, "Up")
1375
+ >>> screen.listen()
1376
+
1377
+ Subsequently the turtle can be moved by repeatedly pressing
1378
+ the up-arrow key, consequently drawing a hexagon
1379
+
1380
+ """
1381
+ if fun is None:
1382
+ if key in self._keys:
1383
+ self._keys.remove(key)
1384
+ elif key not in self._keys:
1385
+ self._keys.append(key)
1386
+ self._onkeyrelease(fun, key)
1387
+
1388
+ def onkeypress(self, fun, key=None):
1389
+ """Bind fun to key-press event of key if key is given,
1390
+ or to any key-press-event if no key is given.
1391
+
1392
+ Arguments:
1393
+ fun -- a function with no arguments
1394
+ key -- a string: key (e.g. "a") or key-symbol (e.g. "space")
1395
+
1396
+ In order to be able to register key-events, TurtleScreen
1397
+ must have focus. (See method listen.)
1398
+
1399
+ Example (for a TurtleScreen instance named screen
1400
+ and a Turtle instance named turtle):
1401
+
1402
+ >>> def f():
1403
+ ... fd(50)
1404
+ ... lt(60)
1405
+ ...
1406
+ >>> screen.onkeypress(f, "Up")
1407
+ >>> screen.listen()
1408
+
1409
+ Subsequently the turtle can be moved by repeatedly pressing
1410
+ the up-arrow key, or by keeping pressed the up-arrow key.
1411
+ consequently drawing a hexagon.
1412
+ """
1413
+ if fun is None:
1414
+ if key in self._keys:
1415
+ self._keys.remove(key)
1416
+ elif key is not None and key not in self._keys:
1417
+ self._keys.append(key)
1418
+ self._onkeypress(fun, key)
1419
+
1420
+ def listen(self, xdummy=None, ydummy=None):
1421
+ """Set focus on TurtleScreen (in order to collect key-events)
1422
+
1423
+ No arguments.
1424
+ Dummy arguments are provided in order
1425
+ to be able to pass listen to the onclick method.
1426
+
1427
+ Example (for a TurtleScreen instance named screen):
1428
+ >>> screen.listen()
1429
+ """
1430
+ self._listen()
1431
+
1432
+ def ontimer(self, fun, t=0):
1433
+ """Install a timer, which calls fun after t milliseconds.
1434
+
1435
+ Arguments:
1436
+ fun -- a function with no arguments.
1437
+ t -- a number >= 0
1438
+
1439
+ Example (for a TurtleScreen instance named screen):
1440
+
1441
+ >>> running = True
1442
+ >>> def f():
1443
+ ... if running:
1444
+ ... fd(50)
1445
+ ... lt(60)
1446
+ ... screen.ontimer(f, 250)
1447
+ ...
1448
+ >>> f() # makes the turtle marching around
1449
+ >>> running = False
1450
+ """
1451
+ self._ontimer(fun, t)
1452
+
1453
+ def bgpic(self, picname=None):
1454
+ """Set background image or return name of current backgroundimage.
1455
+
1456
+ Optional argument:
1457
+ picname -- a string, name of a gif-file or "nopic".
1458
+
1459
+ If picname is a filename, set the corresponding image as background.
1460
+ If picname is "nopic", delete backgroundimage, if present.
1461
+ If picname is None, return the filename of the current backgroundimage.
1462
+
1463
+ Example (for a TurtleScreen instance named screen):
1464
+ >>> screen.bgpic()
1465
+ 'nopic'
1466
+ >>> screen.bgpic("landscape.gif")
1467
+ >>> screen.bgpic()
1468
+ 'landscape.gif'
1469
+ """
1470
+ if picname is None:
1471
+ return self._bgpicname
1472
+ if picname not in self._bgpics:
1473
+ self._bgpics[picname] = self._image(picname)
1474
+ self._setbgpic(self._bgpic, self._bgpics[picname])
1475
+ self._bgpicname = picname
1476
+
1477
+ def screensize(self, canvwidth=None, canvheight=None, bg=None):
1478
+ """Resize the canvas the turtles are drawing on.
1479
+
1480
+ Optional arguments:
1481
+ canvwidth -- positive integer, new width of canvas in pixels
1482
+ canvheight -- positive integer, new height of canvas in pixels
1483
+ bg -- colorstring or color-tuple, new backgroundcolor
1484
+ If no arguments are given, return current (canvaswidth, canvasheight)
1485
+
1486
+ Do not alter the drawing window. To observe hidden parts of
1487
+ the canvas use the scrollbars. (Can make visible those parts
1488
+ of a drawing, which were outside the canvas before!)
1489
+
1490
+ Example (for a Turtle instance named turtle):
1491
+ >>> turtle.screensize(2000,1500)
1492
+ >>> # e.g. to search for an erroneously escaped turtle ;-)
1493
+ """
1494
+ return self._resize(canvwidth, canvheight, bg)
1495
+
1496
+ onscreenclick = onclick
1497
+ resetscreen = reset
1498
+ clearscreen = clear
1499
+ addshape = register_shape
1500
+ onkeyrelease = onkey
1501
+
1502
+ class TNavigator(object):
1503
+ """Navigation part of the RawTurtle.
1504
+ Implements methods for turtle movement.
1505
+ """
1506
+ START_ORIENTATION = {
1507
+ "standard": Vec2D(1.0, 0.0),
1508
+ "world" : Vec2D(1.0, 0.0),
1509
+ "logo" : Vec2D(0.0, 1.0) }
1510
+ DEFAULT_MODE = "standard"
1511
+ DEFAULT_ANGLEOFFSET = 0
1512
+ DEFAULT_ANGLEORIENT = 1
1513
+
1514
+ def __init__(self, mode=DEFAULT_MODE):
1515
+ self._angleOffset = self.DEFAULT_ANGLEOFFSET
1516
+ self._angleOrient = self.DEFAULT_ANGLEORIENT
1517
+ self._mode = mode
1518
+ self.undobuffer = None
1519
+ self.degrees()
1520
+ self._mode = None
1521
+ self._setmode(mode)
1522
+ TNavigator.reset(self)
1523
+
1524
+ def reset(self):
1525
+ """reset turtle to its initial values
1526
+
1527
+ Will be overwritten by parent class
1528
+ """
1529
+ self._position = Vec2D(0.0, 0.0)
1530
+ self._orient = TNavigator.START_ORIENTATION[self._mode]
1531
+
1532
+ def _setmode(self, mode=None):
1533
+ """Set turtle-mode to 'standard', 'world' or 'logo'.
1534
+ """
1535
+ if mode is None:
1536
+ return self._mode
1537
+ if mode not in ["standard", "logo", "world"]:
1538
+ return
1539
+ self._mode = mode
1540
+ if mode in ["standard", "world"]:
1541
+ self._angleOffset = 0
1542
+ self._angleOrient = 1
1543
+ else: # mode == "logo":
1544
+ self._angleOffset = self._fullcircle/4.
1545
+ self._angleOrient = -1
1546
+
1547
+ def _setDegreesPerAU(self, fullcircle):
1548
+ """Helper function for degrees() and radians()"""
1549
+ self._fullcircle = fullcircle
1550
+ self._degreesPerAU = 360/fullcircle
1551
+ if self._mode == "standard":
1552
+ self._angleOffset = 0
1553
+ else:
1554
+ self._angleOffset = fullcircle/4.
1555
+
1556
+ def degrees(self, fullcircle=360.0):
1557
+ """ Set angle measurement units to degrees.
1558
+
1559
+ Optional argument:
1560
+ fullcircle - a number
1561
+
1562
+ Set angle measurement units, i. e. set number
1563
+ of 'degrees' for a full circle. Default value is
1564
+ 360 degrees.
1565
+
1566
+ Example (for a Turtle instance named turtle):
1567
+ >>> turtle.left(90)
1568
+ >>> turtle.heading()
1569
+ 90
1570
+
1571
+ Change angle measurement unit to grad (also known as gon,
1572
+ grade, or gradian and equals 1/100-th of the right angle.)
1573
+ >>> turtle.degrees(400.0)
1574
+ >>> turtle.heading()
1575
+ 100
1576
+
1577
+ """
1578
+ self._setDegreesPerAU(fullcircle)
1579
+
1580
+ def radians(self):
1581
+ """ Set the angle measurement units to radians.
1582
+
1583
+ No arguments.
1584
+
1585
+ Example (for a Turtle instance named turtle):
1586
+ >>> turtle.heading()
1587
+ 90
1588
+ >>> turtle.radians()
1589
+ >>> turtle.heading()
1590
+ 1.5707963267948966
1591
+ """
1592
+ self._setDegreesPerAU(math.tau)
1593
+
1594
+ def _go(self, distance):
1595
+ """move turtle forward by specified distance"""
1596
+ ende = self._position + self._orient * distance
1597
+ self._goto(ende)
1598
+
1599
+ def _rotate(self, angle):
1600
+ """Turn turtle counterclockwise by specified angle if angle > 0."""
1601
+ angle *= self._degreesPerAU
1602
+ self._orient = self._orient.rotate(angle)
1603
+
1604
+ def _goto(self, end):
1605
+ """move turtle to position end."""
1606
+ self._position = end
1607
+
1608
+ def teleport(self, x=None, y=None, *, fill_gap: bool = False) -> None:
1609
+ """To be overwritten by child class RawTurtle.
1610
+ Includes no TPen references."""
1611
+ new_x = x if x is not None else self._position[0]
1612
+ new_y = y if y is not None else self._position[1]
1613
+ self._position = Vec2D(new_x, new_y)
1614
+
1615
+ def forward(self, distance):
1616
+ """Move the turtle forward by the specified distance.
1617
+
1618
+ Aliases: forward | fd
1619
+
1620
+ Argument:
1621
+ distance -- a number (integer or float)
1622
+
1623
+ Move the turtle forward by the specified distance, in the direction
1624
+ the turtle is headed.
1625
+
1626
+ Example (for a Turtle instance named turtle):
1627
+ >>> turtle.position()
1628
+ (0.00, 0.00)
1629
+ >>> turtle.forward(25)
1630
+ >>> turtle.position()
1631
+ (25.00,0.00)
1632
+ >>> turtle.forward(-75)
1633
+ >>> turtle.position()
1634
+ (-50.00,0.00)
1635
+ """
1636
+ self._go(distance)
1637
+
1638
+ def back(self, distance):
1639
+ """Move the turtle backward by distance.
1640
+
1641
+ Aliases: back | backward | bk
1642
+
1643
+ Argument:
1644
+ distance -- a number
1645
+
1646
+ Move the turtle backward by distance, opposite to the direction the
1647
+ turtle is headed. Do not change the turtle's heading.
1648
+
1649
+ Example (for a Turtle instance named turtle):
1650
+ >>> turtle.position()
1651
+ (0.00, 0.00)
1652
+ >>> turtle.backward(30)
1653
+ >>> turtle.position()
1654
+ (-30.00, 0.00)
1655
+ """
1656
+ self._go(-distance)
1657
+
1658
+ def right(self, angle):
1659
+ """Turn turtle right by angle units.
1660
+
1661
+ Aliases: right | rt
1662
+
1663
+ Argument:
1664
+ angle -- a number (integer or float)
1665
+
1666
+ Turn turtle right by angle units. (Units are by default degrees,
1667
+ but can be set via the degrees() and radians() functions.)
1668
+ Angle orientation depends on mode. (See this.)
1669
+
1670
+ Example (for a Turtle instance named turtle):
1671
+ >>> turtle.heading()
1672
+ 22.0
1673
+ >>> turtle.right(45)
1674
+ >>> turtle.heading()
1675
+ 337.0
1676
+ """
1677
+ self._rotate(-angle)
1678
+
1679
+ def left(self, angle):
1680
+ """Turn turtle left by angle units.
1681
+
1682
+ Aliases: left | lt
1683
+
1684
+ Argument:
1685
+ angle -- a number (integer or float)
1686
+
1687
+ Turn turtle left by angle units. (Units are by default degrees,
1688
+ but can be set via the degrees() and radians() functions.)
1689
+ Angle orientation depends on mode. (See this.)
1690
+
1691
+ Example (for a Turtle instance named turtle):
1692
+ >>> turtle.heading()
1693
+ 22.0
1694
+ >>> turtle.left(45)
1695
+ >>> turtle.heading()
1696
+ 67.0
1697
+ """
1698
+ self._rotate(angle)
1699
+
1700
+ def pos(self):
1701
+ """Return the turtle's current location (x,y), as a Vec2D-vector.
1702
+
1703
+ Aliases: pos | position
1704
+
1705
+ No arguments.
1706
+
1707
+ Example (for a Turtle instance named turtle):
1708
+ >>> turtle.pos()
1709
+ (0.00, 240.00)
1710
+ """
1711
+ return self._position
1712
+
1713
+ def xcor(self):
1714
+ """ Return the turtle's x coordinate.
1715
+
1716
+ No arguments.
1717
+
1718
+ Example (for a Turtle instance named turtle):
1719
+ >>> reset()
1720
+ >>> turtle.left(60)
1721
+ >>> turtle.forward(100)
1722
+ >>> print(turtle.xcor())
1723
+ 50.0
1724
+ """
1725
+ return self._position[0]
1726
+
1727
+ def ycor(self):
1728
+ """ Return the turtle's y coordinate
1729
+ ---
1730
+ No arguments.
1731
+
1732
+ Example (for a Turtle instance named turtle):
1733
+ >>> reset()
1734
+ >>> turtle.left(60)
1735
+ >>> turtle.forward(100)
1736
+ >>> print(turtle.ycor())
1737
+ 86.6025403784
1738
+ """
1739
+ return self._position[1]
1740
+
1741
+
1742
+ def goto(self, x, y=None):
1743
+ """Move turtle to an absolute position.
1744
+
1745
+ Aliases: setpos | setposition | goto:
1746
+
1747
+ Arguments:
1748
+ x -- a number or a pair/vector of numbers
1749
+ y -- a number None
1750
+
1751
+ call: goto(x, y) # two coordinates
1752
+ --or: goto((x, y)) # a pair (tuple) of coordinates
1753
+ --or: goto(vec) # e.g. as returned by pos()
1754
+
1755
+ Move turtle to an absolute position. If the pen is down,
1756
+ a line will be drawn. The turtle's orientation does not change.
1757
+
1758
+ Example (for a Turtle instance named turtle):
1759
+ >>> tp = turtle.pos()
1760
+ >>> tp
1761
+ (0.00, 0.00)
1762
+ >>> turtle.setpos(60,30)
1763
+ >>> turtle.pos()
1764
+ (60.00,30.00)
1765
+ >>> turtle.setpos((20,80))
1766
+ >>> turtle.pos()
1767
+ (20.00,80.00)
1768
+ >>> turtle.setpos(tp)
1769
+ >>> turtle.pos()
1770
+ (0.00,0.00)
1771
+ """
1772
+ if y is None:
1773
+ self._goto(Vec2D(*x))
1774
+ else:
1775
+ self._goto(Vec2D(x, y))
1776
+
1777
+ def home(self):
1778
+ """Move turtle to the origin - coordinates (0,0).
1779
+
1780
+ No arguments.
1781
+
1782
+ Move turtle to the origin - coordinates (0,0) and set its
1783
+ heading to its start-orientation (which depends on mode).
1784
+
1785
+ Example (for a Turtle instance named turtle):
1786
+ >>> turtle.home()
1787
+ """
1788
+ self.goto(0, 0)
1789
+ self.setheading(0)
1790
+
1791
+ def setx(self, x):
1792
+ """Set the turtle's first coordinate to x
1793
+
1794
+ Argument:
1795
+ x -- a number (integer or float)
1796
+
1797
+ Set the turtle's first coordinate to x, leave second coordinate
1798
+ unchanged.
1799
+
1800
+ Example (for a Turtle instance named turtle):
1801
+ >>> turtle.position()
1802
+ (0.00, 240.00)
1803
+ >>> turtle.setx(10)
1804
+ >>> turtle.position()
1805
+ (10.00, 240.00)
1806
+ """
1807
+ self._goto(Vec2D(x, self._position[1]))
1808
+
1809
+ def sety(self, y):
1810
+ """Set the turtle's second coordinate to y
1811
+
1812
+ Argument:
1813
+ y -- a number (integer or float)
1814
+
1815
+ Set the turtle's first coordinate to x, second coordinate remains
1816
+ unchanged.
1817
+
1818
+ Example (for a Turtle instance named turtle):
1819
+ >>> turtle.position()
1820
+ (0.00, 40.00)
1821
+ >>> turtle.sety(-10)
1822
+ >>> turtle.position()
1823
+ (0.00, -10.00)
1824
+ """
1825
+ self._goto(Vec2D(self._position[0], y))
1826
+
1827
+ def distance(self, x, y=None):
1828
+ """Return the distance from the turtle to (x,y) in turtle step units.
1829
+
1830
+ Arguments:
1831
+ x -- a number or a pair/vector of numbers or a turtle instance
1832
+ y -- a number None None
1833
+
1834
+ call: distance(x, y) # two coordinates
1835
+ --or: distance((x, y)) # a pair (tuple) of coordinates
1836
+ --or: distance(vec) # e.g. as returned by pos()
1837
+ --or: distance(mypen) # where mypen is another turtle
1838
+
1839
+ Example (for a Turtle instance named turtle):
1840
+ >>> turtle.pos()
1841
+ (0.00, 0.00)
1842
+ >>> turtle.distance(30,40)
1843
+ 50.0
1844
+ >>> pen = Turtle()
1845
+ >>> pen.forward(77)
1846
+ >>> turtle.distance(pen)
1847
+ 77.0
1848
+ """
1849
+ if y is not None:
1850
+ pos = Vec2D(x, y)
1851
+ if isinstance(x, Vec2D):
1852
+ pos = x
1853
+ elif isinstance(x, tuple):
1854
+ pos = Vec2D(*x)
1855
+ elif isinstance(x, TNavigator):
1856
+ pos = x._position
1857
+ return abs(pos - self._position)
1858
+
1859
+ def towards(self, x, y=None):
1860
+ """Return the angle of the line from the turtle's position to (x, y).
1861
+
1862
+ Arguments:
1863
+ x -- a number or a pair/vector of numbers or a turtle instance
1864
+ y -- a number None None
1865
+
1866
+ call: distance(x, y) # two coordinates
1867
+ --or: distance((x, y)) # a pair (tuple) of coordinates
1868
+ --or: distance(vec) # e.g. as returned by pos()
1869
+ --or: distance(mypen) # where mypen is another turtle
1870
+
1871
+ Return the angle, between the line from turtle-position to position
1872
+ specified by x, y and the turtle's start orientation. (Depends on
1873
+ modes - "standard" or "logo")
1874
+
1875
+ Example (for a Turtle instance named turtle):
1876
+ >>> turtle.pos()
1877
+ (10.00, 10.00)
1878
+ >>> turtle.towards(0,0)
1879
+ 225.0
1880
+ """
1881
+ if y is not None:
1882
+ pos = Vec2D(x, y)
1883
+ if isinstance(x, Vec2D):
1884
+ pos = x
1885
+ elif isinstance(x, tuple):
1886
+ pos = Vec2D(*x)
1887
+ elif isinstance(x, TNavigator):
1888
+ pos = x._position
1889
+ x, y = pos - self._position
1890
+ result = round(math.degrees(math.atan2(y, x)), 10) % 360.0
1891
+ result /= self._degreesPerAU
1892
+ return (self._angleOffset + self._angleOrient*result) % self._fullcircle
1893
+
1894
+ def heading(self):
1895
+ """ Return the turtle's current heading.
1896
+
1897
+ No arguments.
1898
+
1899
+ Example (for a Turtle instance named turtle):
1900
+ >>> turtle.left(67)
1901
+ >>> turtle.heading()
1902
+ 67.0
1903
+ """
1904
+ x, y = self._orient
1905
+ result = round(math.degrees(math.atan2(y, x)), 10) % 360.0
1906
+ result /= self._degreesPerAU
1907
+ return (self._angleOffset + self._angleOrient*result) % self._fullcircle
1908
+
1909
+ def setheading(self, to_angle):
1910
+ """Set the orientation of the turtle to to_angle.
1911
+
1912
+ Aliases: setheading | seth
1913
+
1914
+ Argument:
1915
+ to_angle -- a number (integer or float)
1916
+
1917
+ Set the orientation of the turtle to to_angle.
1918
+ Here are some common directions in degrees:
1919
+
1920
+ standard - mode: logo-mode:
1921
+ -------------------|--------------------
1922
+ 0 - east 0 - north
1923
+ 90 - north 90 - east
1924
+ 180 - west 180 - south
1925
+ 270 - south 270 - west
1926
+
1927
+ Example (for a Turtle instance named turtle):
1928
+ >>> turtle.setheading(90)
1929
+ >>> turtle.heading()
1930
+ 90
1931
+ """
1932
+ angle = (to_angle - self.heading())*self._angleOrient
1933
+ full = self._fullcircle
1934
+ angle = (angle+full/2.)%full - full/2.
1935
+ self._rotate(angle)
1936
+
1937
+ def circle(self, radius, extent = None, steps = None):
1938
+ """ Draw a circle with given radius.
1939
+
1940
+ Arguments:
1941
+ radius -- a number
1942
+ extent (optional) -- a number
1943
+ steps (optional) -- an integer
1944
+
1945
+ Draw a circle with given radius. The center is radius units left
1946
+ of the turtle; extent - an angle - determines which part of the
1947
+ circle is drawn. If extent is not given, draw the entire circle.
1948
+ If extent is not a full circle, one endpoint of the arc is the
1949
+ current pen position. Draw the arc in counterclockwise direction
1950
+ if radius is positive, otherwise in clockwise direction. Finally
1951
+ the direction of the turtle is changed by the amount of extent.
1952
+
1953
+ As the circle is approximated by an inscribed regular polygon,
1954
+ steps determines the number of steps to use. If not given,
1955
+ it will be calculated automatically. Maybe used to draw regular
1956
+ polygons.
1957
+
1958
+ call: circle(radius) # full circle
1959
+ --or: circle(radius, extent) # arc
1960
+ --or: circle(radius, extent, steps)
1961
+ --or: circle(radius, steps=6) # 6-sided polygon
1962
+
1963
+ Example (for a Turtle instance named turtle):
1964
+ >>> turtle.circle(50)
1965
+ >>> turtle.circle(120, 180) # semicircle
1966
+ """
1967
+ if self.undobuffer:
1968
+ self.undobuffer.push(["seq"])
1969
+ self.undobuffer.cumulate = True
1970
+ speed = self.speed()
1971
+ if extent is None:
1972
+ extent = self._fullcircle
1973
+ if steps is None:
1974
+ frac = abs(extent)/self._fullcircle
1975
+ steps = 1+int(min(11+abs(radius)/6.0, 59.0)*frac)
1976
+ w = 1.0 * extent / steps
1977
+ w2 = 0.5 * w
1978
+ l = 2.0 * radius * math.sin(math.radians(w2)*self._degreesPerAU)
1979
+ if radius < 0:
1980
+ l, w, w2 = -l, -w, -w2
1981
+ tr = self._tracer()
1982
+ dl = self._delay()
1983
+ if speed == 0:
1984
+ self._tracer(0, 0)
1985
+ else:
1986
+ self.speed(0)
1987
+ self._rotate(w2)
1988
+ for i in range(steps):
1989
+ self.speed(speed)
1990
+ self._go(l)
1991
+ self.speed(0)
1992
+ self._rotate(w)
1993
+ self._rotate(-w2)
1994
+ if speed == 0:
1995
+ self._tracer(tr, dl)
1996
+ self.speed(speed)
1997
+ if self.undobuffer:
1998
+ self.undobuffer.cumulate = False
1999
+
2000
+ ## three dummy methods to be implemented by child class:
2001
+
2002
+ def speed(self, s=0):
2003
+ """dummy method - to be overwritten by child class"""
2004
+ def _tracer(self, a=None, b=None):
2005
+ """dummy method - to be overwritten by child class"""
2006
+ def _delay(self, n=None):
2007
+ """dummy method - to be overwritten by child class"""
2008
+
2009
+ fd = forward
2010
+ bk = back
2011
+ backward = back
2012
+ rt = right
2013
+ lt = left
2014
+ position = pos
2015
+ setpos = goto
2016
+ setposition = goto
2017
+ seth = setheading
2018
+
2019
+
2020
+ class TPen(object):
2021
+ """Drawing part of the RawTurtle.
2022
+ Implements drawing properties.
2023
+ """
2024
+ def __init__(self, resizemode=_CFG["resizemode"]):
2025
+ self._resizemode = resizemode # or "user" or "noresize"
2026
+ self.undobuffer = None
2027
+ TPen._reset(self)
2028
+
2029
+ def _reset(self, pencolor=_CFG["pencolor"],
2030
+ fillcolor=_CFG["fillcolor"]):
2031
+ self._pensize = 1
2032
+ self._shown = True
2033
+ self._pencolor = pencolor
2034
+ self._fillcolor = fillcolor
2035
+ self._drawing = True
2036
+ self._speed = 3
2037
+ self._stretchfactor = (1., 1.)
2038
+ self._shearfactor = 0.
2039
+ self._tilt = 0.
2040
+ self._shapetrafo = (1., 0., 0., 1.)
2041
+ self._outlinewidth = 1
2042
+
2043
+ def resizemode(self, rmode=None):
2044
+ """Set resizemode to one of the values: "auto", "user", "noresize".
2045
+
2046
+ (Optional) Argument:
2047
+ rmode -- one of the strings "auto", "user", "noresize"
2048
+
2049
+ Different resizemodes have the following effects:
2050
+ - "auto" adapts the appearance of the turtle
2051
+ corresponding to the value of pensize.
2052
+ - "user" adapts the appearance of the turtle according to the
2053
+ values of stretchfactor and outlinewidth (outline),
2054
+ which are set by shapesize()
2055
+ - "noresize" no adaption of the turtle's appearance takes place.
2056
+ If no argument is given, return current resizemode.
2057
+ resizemode("user") is called by a call of shapesize with arguments.
2058
+
2059
+
2060
+ Examples (for a Turtle instance named turtle):
2061
+ >>> turtle.resizemode("noresize")
2062
+ >>> turtle.resizemode()
2063
+ 'noresize'
2064
+ """
2065
+ if rmode is None:
2066
+ return self._resizemode
2067
+ rmode = rmode.lower()
2068
+ if rmode in ["auto", "user", "noresize"]:
2069
+ self.pen(resizemode=rmode)
2070
+
2071
+ def pensize(self, width=None):
2072
+ """Set or return the line thickness.
2073
+
2074
+ Aliases: pensize | width
2075
+
2076
+ Argument:
2077
+ width -- positive number
2078
+
2079
+ Set the line thickness to width or return it. If resizemode is set
2080
+ to "auto" and turtleshape is a polygon, that polygon is drawn with
2081
+ the same line thickness. If no argument is given, current pensize
2082
+ is returned.
2083
+
2084
+ Example (for a Turtle instance named turtle):
2085
+ >>> turtle.pensize()
2086
+ 1
2087
+ >>> turtle.pensize(10) # from here on lines of width 10 are drawn
2088
+ """
2089
+ if width is None:
2090
+ return self._pensize
2091
+ self.pen(pensize=width)
2092
+
2093
+
2094
+ def penup(self):
2095
+ """Pull the pen up -- no drawing when moving.
2096
+
2097
+ Aliases: penup | pu | up
2098
+
2099
+ No argument
2100
+
2101
+ Example (for a Turtle instance named turtle):
2102
+ >>> turtle.penup()
2103
+ """
2104
+ if not self._drawing:
2105
+ return
2106
+ self.pen(pendown=False)
2107
+
2108
+ def pendown(self):
2109
+ """Pull the pen down -- drawing when moving.
2110
+
2111
+ Aliases: pendown | pd | down
2112
+
2113
+ No argument.
2114
+
2115
+ Example (for a Turtle instance named turtle):
2116
+ >>> turtle.pendown()
2117
+ """
2118
+ if self._drawing:
2119
+ return
2120
+ self.pen(pendown=True)
2121
+
2122
+ def isdown(self):
2123
+ """Return True if pen is down, False if it's up.
2124
+
2125
+ No argument.
2126
+
2127
+ Example (for a Turtle instance named turtle):
2128
+ >>> turtle.penup()
2129
+ >>> turtle.isdown()
2130
+ False
2131
+ >>> turtle.pendown()
2132
+ >>> turtle.isdown()
2133
+ True
2134
+ """
2135
+ return self._drawing
2136
+
2137
+ def speed(self, speed=None):
2138
+ """ Return or set the turtle's speed.
2139
+
2140
+ Optional argument:
2141
+ speed -- an integer in the range 0..10 or a speedstring (see below)
2142
+
2143
+ Set the turtle's speed to an integer value in the range 0 .. 10.
2144
+ If no argument is given: return current speed.
2145
+
2146
+ If input is a number greater than 10 or smaller than 0.5,
2147
+ speed is set to 0.
2148
+ Speedstrings are mapped to speedvalues in the following way:
2149
+ 'fastest' : 0
2150
+ 'fast' : 10
2151
+ 'normal' : 6
2152
+ 'slow' : 3
2153
+ 'slowest' : 1
2154
+ speeds from 1 to 10 enforce increasingly faster animation of
2155
+ line drawing and turtle turning.
2156
+
2157
+ Attention:
2158
+ speed = 0 : *no* animation takes place. forward/back makes turtle jump
2159
+ and likewise left/right make the turtle turn instantly.
2160
+
2161
+ Example (for a Turtle instance named turtle):
2162
+ >>> turtle.speed(3)
2163
+ """
2164
+ speeds = {'fastest':0, 'fast':10, 'normal':6, 'slow':3, 'slowest':1 }
2165
+ if speed is None:
2166
+ return self._speed
2167
+ if speed in speeds:
2168
+ speed = speeds[speed]
2169
+ elif 0.5 < speed < 10.5:
2170
+ speed = int(round(speed))
2171
+ else:
2172
+ speed = 0
2173
+ self.pen(speed=speed)
2174
+
2175
+ def color(self, *args):
2176
+ """Return or set the pencolor and fillcolor.
2177
+
2178
+ Arguments:
2179
+ Several input formats are allowed.
2180
+ They use 0, 1, 2, or 3 arguments as follows:
2181
+
2182
+ color()
2183
+ Return the current pencolor and the current fillcolor
2184
+ as a pair of color specification strings as are returned
2185
+ by pencolor and fillcolor.
2186
+ color(colorstring), color((r,g,b)), color(r,g,b)
2187
+ inputs as in pencolor, set both, fillcolor and pencolor,
2188
+ to the given value.
2189
+ color(colorstring1, colorstring2),
2190
+ color((r1,g1,b1), (r2,g2,b2))
2191
+ equivalent to pencolor(colorstring1) and fillcolor(colorstring2)
2192
+ and analogously, if the other input format is used.
2193
+
2194
+ If turtleshape is a polygon, outline and interior of that polygon
2195
+ is drawn with the newly set colors.
2196
+ For more info see: pencolor, fillcolor
2197
+
2198
+ Example (for a Turtle instance named turtle):
2199
+ >>> turtle.color('red', 'green')
2200
+ >>> turtle.color()
2201
+ ('red', 'green')
2202
+ >>> colormode(255)
2203
+ >>> color((40, 80, 120), (160, 200, 240))
2204
+ >>> color()
2205
+ ('#285078', '#a0c8f0')
2206
+ """
2207
+ if args:
2208
+ l = len(args)
2209
+ if l == 1:
2210
+ pcolor = fcolor = args[0]
2211
+ elif l == 2:
2212
+ pcolor, fcolor = args
2213
+ elif l == 3:
2214
+ pcolor = fcolor = args
2215
+ pcolor = self._colorstr(pcolor)
2216
+ fcolor = self._colorstr(fcolor)
2217
+ self.pen(pencolor=pcolor, fillcolor=fcolor)
2218
+ else:
2219
+ return self._color(self._pencolor), self._color(self._fillcolor)
2220
+
2221
+ def pencolor(self, *args):
2222
+ """ Return or set the pencolor.
2223
+
2224
+ Arguments:
2225
+ Four input formats are allowed:
2226
+ - pencolor()
2227
+ Return the current pencolor as color specification string,
2228
+ possibly in hex-number format (see example).
2229
+ May be used as input to another color/pencolor/fillcolor call.
2230
+ - pencolor(colorstring)
2231
+ s is a Tk color specification string, such as "red" or "yellow"
2232
+ - pencolor((r, g, b))
2233
+ *a tuple* of r, g, and b, which represent, an RGB color,
2234
+ and each of r, g, and b are in the range 0..colormode,
2235
+ where colormode is either 1.0 or 255
2236
+ - pencolor(r, g, b)
2237
+ r, g, and b represent an RGB color, and each of r, g, and b
2238
+ are in the range 0..colormode
2239
+
2240
+ If turtleshape is a polygon, the outline of that polygon is drawn
2241
+ with the newly set pencolor.
2242
+
2243
+ Example (for a Turtle instance named turtle):
2244
+ >>> turtle.pencolor('brown')
2245
+ >>> tup = (0.2, 0.8, 0.55)
2246
+ >>> turtle.pencolor(tup)
2247
+ >>> turtle.pencolor()
2248
+ '#33cc8c'
2249
+ """
2250
+ if args:
2251
+ color = self._colorstr(args)
2252
+ if color == self._pencolor:
2253
+ return
2254
+ self.pen(pencolor=color)
2255
+ else:
2256
+ return self._color(self._pencolor)
2257
+
2258
+ def fillcolor(self, *args):
2259
+ """ Return or set the fillcolor.
2260
+
2261
+ Arguments:
2262
+ Four input formats are allowed:
2263
+ - fillcolor()
2264
+ Return the current fillcolor as color specification string,
2265
+ possibly in hex-number format (see example).
2266
+ May be used as input to another color/pencolor/fillcolor call.
2267
+ - fillcolor(colorstring)
2268
+ s is a Tk color specification string, such as "red" or "yellow"
2269
+ - fillcolor((r, g, b))
2270
+ *a tuple* of r, g, and b, which represent, an RGB color,
2271
+ and each of r, g, and b are in the range 0..colormode,
2272
+ where colormode is either 1.0 or 255
2273
+ - fillcolor(r, g, b)
2274
+ r, g, and b represent an RGB color, and each of r, g, and b
2275
+ are in the range 0..colormode
2276
+
2277
+ If turtleshape is a polygon, the interior of that polygon is drawn
2278
+ with the newly set fillcolor.
2279
+
2280
+ Example (for a Turtle instance named turtle):
2281
+ >>> turtle.fillcolor('violet')
2282
+ >>> col = turtle.pencolor()
2283
+ >>> turtle.fillcolor(col)
2284
+ >>> turtle.fillcolor(0, .5, 0)
2285
+ """
2286
+ if args:
2287
+ color = self._colorstr(args)
2288
+ if color == self._fillcolor:
2289
+ return
2290
+ self.pen(fillcolor=color)
2291
+ else:
2292
+ return self._color(self._fillcolor)
2293
+
2294
+ def teleport(self, x=None, y=None, *, fill_gap: bool = False) -> None:
2295
+ """To be overwritten by child class RawTurtle.
2296
+ Includes no TNavigator references.
2297
+ """
2298
+ pendown = self.isdown()
2299
+ if pendown:
2300
+ self.pen(pendown=False)
2301
+ self.pen(pendown=pendown)
2302
+
2303
+ def showturtle(self):
2304
+ """Makes the turtle visible.
2305
+
2306
+ Aliases: showturtle | st
2307
+
2308
+ No argument.
2309
+
2310
+ Example (for a Turtle instance named turtle):
2311
+ >>> turtle.hideturtle()
2312
+ >>> turtle.showturtle()
2313
+ """
2314
+ self.pen(shown=True)
2315
+
2316
+ def hideturtle(self):
2317
+ """Makes the turtle invisible.
2318
+
2319
+ Aliases: hideturtle | ht
2320
+
2321
+ No argument.
2322
+
2323
+ It's a good idea to do this while you're in the
2324
+ middle of a complicated drawing, because hiding
2325
+ the turtle speeds up the drawing observably.
2326
+
2327
+ Example (for a Turtle instance named turtle):
2328
+ >>> turtle.hideturtle()
2329
+ """
2330
+ self.pen(shown=False)
2331
+
2332
+ def isvisible(self):
2333
+ """Return True if the Turtle is shown, False if it's hidden.
2334
+
2335
+ No argument.
2336
+
2337
+ Example (for a Turtle instance named turtle):
2338
+ >>> turtle.hideturtle()
2339
+ >>> print(turtle.isvisible())
2340
+ False
2341
+ """
2342
+ return self._shown
2343
+
2344
+ def pen(self, pen=None, **pendict):
2345
+ """Return or set the pen's attributes.
2346
+
2347
+ Arguments:
2348
+ pen -- a dictionary with some or all of the below listed keys.
2349
+ **pendict -- one or more keyword-arguments with the below
2350
+ listed keys as keywords.
2351
+
2352
+ Return or set the pen's attributes in a 'pen-dictionary'
2353
+ with the following key/value pairs:
2354
+ "shown" : True/False
2355
+ "pendown" : True/False
2356
+ "pencolor" : color-string or color-tuple
2357
+ "fillcolor" : color-string or color-tuple
2358
+ "pensize" : positive number
2359
+ "speed" : number in range 0..10
2360
+ "resizemode" : "auto" or "user" or "noresize"
2361
+ "stretchfactor": (positive number, positive number)
2362
+ "shearfactor": number
2363
+ "outline" : positive number
2364
+ "tilt" : number
2365
+
2366
+ This dictionary can be used as argument for a subsequent
2367
+ pen()-call to restore the former pen-state. Moreover one
2368
+ or more of these attributes can be provided as keyword-arguments.
2369
+ This can be used to set several pen attributes in one statement.
2370
+
2371
+
2372
+ Examples (for a Turtle instance named turtle):
2373
+ >>> turtle.pen(fillcolor="black", pencolor="red", pensize=10)
2374
+ >>> turtle.pen()
2375
+ {'pensize': 10, 'shown': True, 'resizemode': 'auto', 'outline': 1,
2376
+ 'pencolor': 'red', 'pendown': True, 'fillcolor': 'black',
2377
+ 'stretchfactor': (1,1), 'speed': 3, 'shearfactor': 0.0}
2378
+ >>> penstate=turtle.pen()
2379
+ >>> turtle.color("yellow","")
2380
+ >>> turtle.penup()
2381
+ >>> turtle.pen()
2382
+ {'pensize': 10, 'shown': True, 'resizemode': 'auto', 'outline': 1,
2383
+ 'pencolor': 'yellow', 'pendown': False, 'fillcolor': '',
2384
+ 'stretchfactor': (1,1), 'speed': 3, 'shearfactor': 0.0}
2385
+ >>> p.pen(penstate, fillcolor="green")
2386
+ >>> p.pen()
2387
+ {'pensize': 10, 'shown': True, 'resizemode': 'auto', 'outline': 1,
2388
+ 'pencolor': 'red', 'pendown': True, 'fillcolor': 'green',
2389
+ 'stretchfactor': (1,1), 'speed': 3, 'shearfactor': 0.0}
2390
+ """
2391
+ _pd = {"shown" : self._shown,
2392
+ "pendown" : self._drawing,
2393
+ "pencolor" : self._pencolor,
2394
+ "fillcolor" : self._fillcolor,
2395
+ "pensize" : self._pensize,
2396
+ "speed" : self._speed,
2397
+ "resizemode" : self._resizemode,
2398
+ "stretchfactor" : self._stretchfactor,
2399
+ "shearfactor" : self._shearfactor,
2400
+ "outline" : self._outlinewidth,
2401
+ "tilt" : self._tilt
2402
+ }
2403
+
2404
+ if not (pen or pendict):
2405
+ return _pd
2406
+
2407
+ if isinstance(pen, dict):
2408
+ p = pen
2409
+ else:
2410
+ p = {}
2411
+ p.update(pendict)
2412
+
2413
+ _p_buf = {}
2414
+ for key in p:
2415
+ _p_buf[key] = _pd[key]
2416
+
2417
+ if self.undobuffer:
2418
+ self.undobuffer.push(("pen", _p_buf))
2419
+
2420
+ newLine = False
2421
+ if "pendown" in p:
2422
+ if self._drawing != p["pendown"]:
2423
+ newLine = True
2424
+ if "pencolor" in p:
2425
+ if isinstance(p["pencolor"], tuple):
2426
+ p["pencolor"] = self._colorstr((p["pencolor"],))
2427
+ if self._pencolor != p["pencolor"]:
2428
+ newLine = True
2429
+ if "pensize" in p:
2430
+ if self._pensize != p["pensize"]:
2431
+ newLine = True
2432
+ if newLine:
2433
+ self._newLine()
2434
+ if "pendown" in p:
2435
+ self._drawing = p["pendown"]
2436
+ if "pencolor" in p:
2437
+ self._pencolor = p["pencolor"]
2438
+ if "pensize" in p:
2439
+ self._pensize = p["pensize"]
2440
+ if "fillcolor" in p:
2441
+ if isinstance(p["fillcolor"], tuple):
2442
+ p["fillcolor"] = self._colorstr((p["fillcolor"],))
2443
+ self._fillcolor = p["fillcolor"]
2444
+ if "speed" in p:
2445
+ self._speed = p["speed"]
2446
+ if "resizemode" in p:
2447
+ self._resizemode = p["resizemode"]
2448
+ if "stretchfactor" in p:
2449
+ sf = p["stretchfactor"]
2450
+ if isinstance(sf, (int, float)):
2451
+ sf = (sf, sf)
2452
+ self._stretchfactor = sf
2453
+ if "shearfactor" in p:
2454
+ self._shearfactor = p["shearfactor"]
2455
+ if "outline" in p:
2456
+ self._outlinewidth = p["outline"]
2457
+ if "shown" in p:
2458
+ self._shown = p["shown"]
2459
+ if "tilt" in p:
2460
+ self._tilt = p["tilt"]
2461
+ if "stretchfactor" in p or "tilt" in p or "shearfactor" in p:
2462
+ scx, scy = self._stretchfactor
2463
+ shf = self._shearfactor
2464
+ sa, ca = math.sin(self._tilt), math.cos(self._tilt)
2465
+ self._shapetrafo = ( scx*ca, scy*(shf*ca + sa),
2466
+ -scx*sa, scy*(ca - shf*sa))
2467
+ self._update()
2468
+
2469
+ ## three dummy methods to be implemented by child class:
2470
+
2471
+ def _newLine(self, usePos = True):
2472
+ """dummy method - to be overwritten by child class"""
2473
+ def _update(self, count=True, forced=False):
2474
+ """dummy method - to be overwritten by child class"""
2475
+ def _color(self, args):
2476
+ """dummy method - to be overwritten by child class"""
2477
+ def _colorstr(self, args):
2478
+ """dummy method - to be overwritten by child class"""
2479
+
2480
+ width = pensize
2481
+ up = penup
2482
+ pu = penup
2483
+ pd = pendown
2484
+ down = pendown
2485
+ st = showturtle
2486
+ ht = hideturtle
2487
+
2488
+
2489
+ class _TurtleImage(object):
2490
+ """Helper class: Datatype to store Turtle attributes
2491
+ """
2492
+
2493
+ def __init__(self, screen, shapeIndex):
2494
+ self.screen = screen
2495
+ self._type = None
2496
+ self._setshape(shapeIndex)
2497
+
2498
+ def _setshape(self, shapeIndex):
2499
+ screen = self.screen
2500
+ self.shapeIndex = shapeIndex
2501
+ if self._type == "polygon" == screen._shapes[shapeIndex]._type:
2502
+ return
2503
+ if self._type == "image" == screen._shapes[shapeIndex]._type:
2504
+ return
2505
+ if self._type in ["image", "polygon"]:
2506
+ screen._delete(self._item)
2507
+ elif self._type == "compound":
2508
+ for item in self._item:
2509
+ screen._delete(item)
2510
+ self._type = screen._shapes[shapeIndex]._type
2511
+ if self._type == "polygon":
2512
+ self._item = screen._createpoly()
2513
+ elif self._type == "image":
2514
+ self._item = screen._createimage(screen._shapes["blank"]._data)
2515
+ elif self._type == "compound":
2516
+ self._item = [screen._createpoly() for item in
2517
+ screen._shapes[shapeIndex]._data]
2518
+
2519
+
2520
+ class RawTurtle(TPen, TNavigator):
2521
+ """Animation part of the RawTurtle.
2522
+ Puts RawTurtle upon a TurtleScreen and provides tools for
2523
+ its animation.
2524
+ """
2525
+ screens = []
2526
+
2527
+ def __init__(self, canvas=None,
2528
+ shape=_CFG["shape"],
2529
+ undobuffersize=_CFG["undobuffersize"],
2530
+ visible=_CFG["visible"]):
2531
+ if isinstance(canvas, _Screen):
2532
+ self.screen = canvas
2533
+ elif isinstance(canvas, TurtleScreen):
2534
+ if canvas not in RawTurtle.screens:
2535
+ RawTurtle.screens.append(canvas)
2536
+ self.screen = canvas
2537
+ elif isinstance(canvas, (ScrolledCanvas, Canvas)):
2538
+ for screen in RawTurtle.screens:
2539
+ if screen.cv == canvas:
2540
+ self.screen = screen
2541
+ break
2542
+ else:
2543
+ self.screen = TurtleScreen(canvas)
2544
+ RawTurtle.screens.append(self.screen)
2545
+ else:
2546
+ raise TurtleGraphicsError("bad canvas argument %s" % canvas)
2547
+
2548
+ screen = self.screen
2549
+ TNavigator.__init__(self, screen.mode())
2550
+ TPen.__init__(self)
2551
+ screen._turtles.append(self)
2552
+ self.drawingLineItem = screen._createline()
2553
+ self.turtle = _TurtleImage(screen, shape)
2554
+ self._poly = None
2555
+ self._creatingPoly = False
2556
+ self._fillitem = self._fillpath = None
2557
+ self._shown = visible
2558
+ self._hidden_from_screen = False
2559
+ self.currentLineItem = screen._createline()
2560
+ self.currentLine = [self._position]
2561
+ self.items = [self.currentLineItem]
2562
+ self.stampItems = []
2563
+ self._undobuffersize = undobuffersize
2564
+ self.undobuffer = Tbuffer(undobuffersize)
2565
+ self._update()
2566
+
2567
+ def reset(self):
2568
+ """Delete the turtle's drawings and restore its default values.
2569
+
2570
+ No argument.
2571
+
2572
+ Delete the turtle's drawings from the screen, re-center the turtle
2573
+ and set variables to the default values.
2574
+
2575
+ Example (for a Turtle instance named turtle):
2576
+ >>> turtle.position()
2577
+ (0.00,-22.00)
2578
+ >>> turtle.heading()
2579
+ 100.0
2580
+ >>> turtle.reset()
2581
+ >>> turtle.position()
2582
+ (0.00,0.00)
2583
+ >>> turtle.heading()
2584
+ 0.0
2585
+ """
2586
+ TNavigator.reset(self)
2587
+ TPen._reset(self)
2588
+ self._clear()
2589
+ self._drawturtle()
2590
+ self._update()
2591
+
2592
+ def setundobuffer(self, size):
2593
+ """Set or disable undobuffer.
2594
+
2595
+ Argument:
2596
+ size -- an integer or None
2597
+
2598
+ If size is an integer an empty undobuffer of given size is installed.
2599
+ Size gives the maximum number of turtle-actions that can be undone
2600
+ by the undo() function.
2601
+ If size is None, no undobuffer is present.
2602
+
2603
+ Example (for a Turtle instance named turtle):
2604
+ >>> turtle.setundobuffer(42)
2605
+ """
2606
+ if size is None or size <= 0:
2607
+ self.undobuffer = None
2608
+ else:
2609
+ self.undobuffer = Tbuffer(size)
2610
+
2611
+ def undobufferentries(self):
2612
+ """Return count of entries in the undobuffer.
2613
+
2614
+ No argument.
2615
+
2616
+ Example (for a Turtle instance named turtle):
2617
+ >>> while undobufferentries():
2618
+ ... undo()
2619
+ """
2620
+ if self.undobuffer is None:
2621
+ return 0
2622
+ return self.undobuffer.nr_of_items()
2623
+
2624
+ def _clear(self):
2625
+ """Delete all of pen's drawings"""
2626
+ self._fillitem = self._fillpath = None
2627
+ for item in self.items:
2628
+ self.screen._delete(item)
2629
+ self.currentLineItem = self.screen._createline()
2630
+ self.currentLine = []
2631
+ if self._drawing:
2632
+ self.currentLine.append(self._position)
2633
+ self.items = [self.currentLineItem]
2634
+ self.clearstamps()
2635
+ self.setundobuffer(self._undobuffersize)
2636
+
2637
+
2638
+ def clear(self):
2639
+ """Delete the turtle's drawings from the screen. Do not move turtle.
2640
+
2641
+ No arguments.
2642
+
2643
+ Delete the turtle's drawings from the screen. Do not move turtle.
2644
+ State and position of the turtle as well as drawings of other
2645
+ turtles are not affected.
2646
+
2647
+ Examples (for a Turtle instance named turtle):
2648
+ >>> turtle.clear()
2649
+ """
2650
+ self._clear()
2651
+ self._update()
2652
+
2653
+ def _update_data(self):
2654
+ self.screen._incrementudc()
2655
+ if self.screen._updatecounter != 0:
2656
+ return
2657
+ if len(self.currentLine)>1:
2658
+ self.screen._drawline(self.currentLineItem, self.currentLine,
2659
+ self._pencolor, self._pensize)
2660
+
2661
+ def _update(self):
2662
+ """Perform a Turtle-data update.
2663
+ """
2664
+ screen = self.screen
2665
+ if screen._tracing == 0:
2666
+ return
2667
+ elif screen._tracing == 1:
2668
+ self._update_data()
2669
+ self._drawturtle()
2670
+ screen._update() # TurtleScreenBase
2671
+ screen._delay(screen._delayvalue) # TurtleScreenBase
2672
+ else:
2673
+ self._update_data()
2674
+ if screen._updatecounter == 0:
2675
+ for t in screen.turtles():
2676
+ t._drawturtle()
2677
+ screen._update()
2678
+
2679
+ def _tracer(self, flag=None, delay=None):
2680
+ """Turns turtle animation on/off and set delay for update drawings.
2681
+
2682
+ Optional arguments:
2683
+ n -- nonnegative integer
2684
+ delay -- nonnegative integer
2685
+
2686
+ If n is given, only each n-th regular screen update is really performed.
2687
+ (Can be used to accelerate the drawing of complex graphics.)
2688
+ Second arguments sets delay value (see RawTurtle.delay())
2689
+
2690
+ Example (for a Turtle instance named turtle):
2691
+ >>> turtle.tracer(8, 25)
2692
+ >>> dist = 2
2693
+ >>> for i in range(200):
2694
+ ... turtle.fd(dist)
2695
+ ... turtle.rt(90)
2696
+ ... dist += 2
2697
+ """
2698
+ return self.screen.tracer(flag, delay)
2699
+
2700
+ def _color(self, args):
2701
+ return self.screen._color(args)
2702
+
2703
+ def _colorstr(self, args):
2704
+ return self.screen._colorstr(args)
2705
+
2706
+ def _cc(self, args):
2707
+ """Convert colortriples to hexstrings.
2708
+ """
2709
+ if isinstance(args, str):
2710
+ return args
2711
+ try:
2712
+ r, g, b = args
2713
+ except (TypeError, ValueError):
2714
+ raise TurtleGraphicsError("bad color arguments: %s" % str(args))
2715
+ if self.screen._colormode == 1.0:
2716
+ r, g, b = [round(255.0*x) for x in (r, g, b)]
2717
+ if not ((0 <= r <= 255) and (0 <= g <= 255) and (0 <= b <= 255)):
2718
+ raise TurtleGraphicsError("bad color sequence: %s" % str(args))
2719
+ return "#%02x%02x%02x" % (r, g, b)
2720
+
2721
+ def teleport(self, x=None, y=None, *, fill_gap: bool = False) -> None:
2722
+ """Instantly move turtle to an absolute position.
2723
+
2724
+ Arguments:
2725
+ x -- a number or None
2726
+ y -- a number None
2727
+ fill_gap -- a boolean This argument must be specified by name.
2728
+
2729
+ call: teleport(x, y) # two coordinates
2730
+ --or: teleport(x) # teleport to x position, keeping y as is
2731
+ --or: teleport(y=y) # teleport to y position, keeping x as is
2732
+ --or: teleport(x, y, fill_gap=True)
2733
+ # teleport but fill the gap in between
2734
+
2735
+ Move turtle to an absolute position. Unlike goto(x, y), a line will not
2736
+ be drawn. The turtle's orientation does not change. If currently
2737
+ filling, the polygon(s) teleported from will be filled after leaving,
2738
+ and filling will begin again after teleporting. This can be disabled
2739
+ with fill_gap=True, which makes the imaginary line traveled during
2740
+ teleporting act as a fill barrier like in goto(x, y).
2741
+
2742
+ Example (for a Turtle instance named turtle):
2743
+ >>> tp = turtle.pos()
2744
+ >>> tp
2745
+ (0.00,0.00)
2746
+ >>> turtle.teleport(60)
2747
+ >>> turtle.pos()
2748
+ (60.00,0.00)
2749
+ >>> turtle.teleport(y=10)
2750
+ >>> turtle.pos()
2751
+ (60.00,10.00)
2752
+ >>> turtle.teleport(20, 30)
2753
+ >>> turtle.pos()
2754
+ (20.00,30.00)
2755
+ """
2756
+ pendown = self.isdown()
2757
+ was_filling = self.filling()
2758
+ if pendown:
2759
+ self.pen(pendown=False)
2760
+ if was_filling and not fill_gap:
2761
+ self.end_fill()
2762
+ new_x = x if x is not None else self._position[0]
2763
+ new_y = y if y is not None else self._position[1]
2764
+ self._position = Vec2D(new_x, new_y)
2765
+ self.pen(pendown=pendown)
2766
+ if was_filling and not fill_gap:
2767
+ self.begin_fill()
2768
+
2769
+ def clone(self):
2770
+ """Create and return a clone of the turtle.
2771
+
2772
+ No argument.
2773
+
2774
+ Create and return a clone of the turtle with same position, heading
2775
+ and turtle properties.
2776
+
2777
+ Example (for a Turtle instance named mick):
2778
+ mick = Turtle()
2779
+ joe = mick.clone()
2780
+ """
2781
+ screen = self.screen
2782
+ self._newLine(self._drawing)
2783
+
2784
+ turtle = self.turtle
2785
+ self.screen = None
2786
+ self.turtle = None # too make self deepcopy-able
2787
+
2788
+ q = deepcopy(self)
2789
+
2790
+ self.screen = screen
2791
+ self.turtle = turtle
2792
+
2793
+ q.screen = screen
2794
+ q.turtle = _TurtleImage(screen, self.turtle.shapeIndex)
2795
+
2796
+ screen._turtles.append(q)
2797
+ ttype = screen._shapes[self.turtle.shapeIndex]._type
2798
+ if ttype == "polygon":
2799
+ q.turtle._item = screen._createpoly()
2800
+ elif ttype == "image":
2801
+ q.turtle._item = screen._createimage(screen._shapes["blank"]._data)
2802
+ elif ttype == "compound":
2803
+ q.turtle._item = [screen._createpoly() for item in
2804
+ screen._shapes[self.turtle.shapeIndex]._data]
2805
+ q.currentLineItem = screen._createline()
2806
+ q._update()
2807
+ return q
2808
+
2809
+ def shape(self, name=None):
2810
+ """Set turtle shape to shape with given name / return current shapename.
2811
+
2812
+ Optional argument:
2813
+ name -- a string, which is a valid shapename
2814
+
2815
+ Set turtle shape to shape with given name or, if name is not given,
2816
+ return name of current shape.
2817
+ Shape with name must exist in the TurtleScreen's shape dictionary.
2818
+ Initially there are the following polygon shapes:
2819
+ 'arrow', 'turtle', 'circle', 'square', 'triangle', 'classic'.
2820
+ To learn about how to deal with shapes see Screen-method register_shape.
2821
+
2822
+ Example (for a Turtle instance named turtle):
2823
+ >>> turtle.shape()
2824
+ 'arrow'
2825
+ >>> turtle.shape("turtle")
2826
+ >>> turtle.shape()
2827
+ 'turtle'
2828
+ """
2829
+ if name is None:
2830
+ return self.turtle.shapeIndex
2831
+ if not name in self.screen.getshapes():
2832
+ raise TurtleGraphicsError("There is no shape named %s" % name)
2833
+ self.turtle._setshape(name)
2834
+ self._update()
2835
+
2836
+ def shapesize(self, stretch_wid=None, stretch_len=None, outline=None):
2837
+ """Set/return turtle's stretchfactors/outline. Set resizemode to "user".
2838
+
2839
+ Optional arguments:
2840
+ stretch_wid : positive number
2841
+ stretch_len : positive number
2842
+ outline : positive number
2843
+
2844
+ Return or set the pen's attributes x/y-stretchfactors and/or outline.
2845
+ Set resizemode to "user".
2846
+ If and only if resizemode is set to "user", the turtle will be displayed
2847
+ stretched according to its stretchfactors:
2848
+ stretch_wid is stretchfactor perpendicular to orientation
2849
+ stretch_len is stretchfactor in direction of turtles orientation.
2850
+ outline determines the width of the shapes's outline.
2851
+
2852
+ Examples (for a Turtle instance named turtle):
2853
+ >>> turtle.resizemode("user")
2854
+ >>> turtle.shapesize(5, 5, 12)
2855
+ >>> turtle.shapesize(outline=8)
2856
+ """
2857
+ if stretch_wid is stretch_len is outline is None:
2858
+ stretch_wid, stretch_len = self._stretchfactor
2859
+ return stretch_wid, stretch_len, self._outlinewidth
2860
+ if stretch_wid == 0 or stretch_len == 0:
2861
+ raise TurtleGraphicsError("stretch_wid/stretch_len must not be zero")
2862
+ if stretch_wid is not None:
2863
+ if stretch_len is None:
2864
+ stretchfactor = stretch_wid, stretch_wid
2865
+ else:
2866
+ stretchfactor = stretch_wid, stretch_len
2867
+ elif stretch_len is not None:
2868
+ stretchfactor = self._stretchfactor[0], stretch_len
2869
+ else:
2870
+ stretchfactor = self._stretchfactor
2871
+ if outline is None:
2872
+ outline = self._outlinewidth
2873
+ self.pen(resizemode="user",
2874
+ stretchfactor=stretchfactor, outline=outline)
2875
+
2876
+ def shearfactor(self, shear=None):
2877
+ """Set or return the current shearfactor.
2878
+
2879
+ Optional argument: shear -- number, tangent of the shear angle
2880
+
2881
+ Shear the turtleshape according to the given shearfactor shear,
2882
+ which is the tangent of the shear angle. DO NOT change the
2883
+ turtle's heading (direction of movement).
2884
+ If shear is not given: return the current shearfactor, i. e. the
2885
+ tangent of the shear angle, by which lines parallel to the
2886
+ heading of the turtle are sheared.
2887
+
2888
+ Examples (for a Turtle instance named turtle):
2889
+ >>> turtle.shape("circle")
2890
+ >>> turtle.shapesize(5,2)
2891
+ >>> turtle.shearfactor(0.5)
2892
+ >>> turtle.shearfactor()
2893
+ >>> 0.5
2894
+ """
2895
+ if shear is None:
2896
+ return self._shearfactor
2897
+ self.pen(resizemode="user", shearfactor=shear)
2898
+
2899
+ def settiltangle(self, angle):
2900
+ """Rotate the turtleshape to point in the specified direction
2901
+
2902
+ Argument: angle -- number
2903
+
2904
+ Rotate the turtleshape to point in the direction specified by angle,
2905
+ regardless of its current tilt-angle. DO NOT change the turtle's
2906
+ heading (direction of movement).
2907
+
2908
+ Deprecated since Python 3.1
2909
+
2910
+ Examples (for a Turtle instance named turtle):
2911
+ >>> turtle.shape("circle")
2912
+ >>> turtle.shapesize(5,2)
2913
+ >>> turtle.settiltangle(45)
2914
+ >>> turtle.stamp()
2915
+ >>> turtle.fd(50)
2916
+ >>> turtle.settiltangle(-45)
2917
+ >>> turtle.stamp()
2918
+ >>> turtle.fd(50)
2919
+ """
2920
+ warnings._deprecated("turtle.RawTurtle.settiltangle()",
2921
+ "{name!r} is deprecated since Python 3.1 and scheduled "
2922
+ "for removal in Python {remove}. Use tiltangle() instead.",
2923
+ remove=(3, 13))
2924
+ self.tiltangle(angle)
2925
+
2926
+ def tiltangle(self, angle=None):
2927
+ """Set or return the current tilt-angle.
2928
+
2929
+ Optional argument: angle -- number
2930
+
2931
+ Rotate the turtleshape to point in the direction specified by angle,
2932
+ regardless of its current tilt-angle. DO NOT change the turtle's
2933
+ heading (direction of movement).
2934
+ If angle is not given: return the current tilt-angle, i. e. the angle
2935
+ between the orientation of the turtleshape and the heading of the
2936
+ turtle (its direction of movement).
2937
+
2938
+ (Incorrectly marked as deprecated since Python 3.1, it is really
2939
+ settiltangle that is deprecated.)
2940
+
2941
+ Examples (for a Turtle instance named turtle):
2942
+ >>> turtle.shape("circle")
2943
+ >>> turtle.shapesize(5, 2)
2944
+ >>> turtle.tiltangle()
2945
+ 0.0
2946
+ >>> turtle.tiltangle(45)
2947
+ >>> turtle.tiltangle()
2948
+ 45.0
2949
+ >>> turtle.stamp()
2950
+ >>> turtle.fd(50)
2951
+ >>> turtle.tiltangle(-45)
2952
+ >>> turtle.tiltangle()
2953
+ 315.0
2954
+ >>> turtle.stamp()
2955
+ >>> turtle.fd(50)
2956
+ """
2957
+ if angle is None:
2958
+ tilt = -math.degrees(self._tilt) * self._angleOrient
2959
+ return (tilt / self._degreesPerAU) % self._fullcircle
2960
+ else:
2961
+ tilt = -angle * self._degreesPerAU * self._angleOrient
2962
+ tilt = math.radians(tilt) % math.tau
2963
+ self.pen(resizemode="user", tilt=tilt)
2964
+
2965
+ def tilt(self, angle):
2966
+ """Rotate the turtleshape by angle.
2967
+
2968
+ Argument:
2969
+ angle - a number
2970
+
2971
+ Rotate the turtleshape by angle from its current tilt-angle,
2972
+ but do NOT change the turtle's heading (direction of movement).
2973
+
2974
+ Examples (for a Turtle instance named turtle):
2975
+ >>> turtle.shape("circle")
2976
+ >>> turtle.shapesize(5,2)
2977
+ >>> turtle.tilt(30)
2978
+ >>> turtle.fd(50)
2979
+ >>> turtle.tilt(30)
2980
+ >>> turtle.fd(50)
2981
+ """
2982
+ self.tiltangle(angle + self.tiltangle())
2983
+
2984
+ def shapetransform(self, t11=None, t12=None, t21=None, t22=None):
2985
+ """Set or return the current transformation matrix of the turtle shape.
2986
+
2987
+ Optional arguments: t11, t12, t21, t22 -- numbers.
2988
+
2989
+ If none of the matrix elements are given, return the transformation
2990
+ matrix.
2991
+ Otherwise set the given elements and transform the turtleshape
2992
+ according to the matrix consisting of first row t11, t12 and
2993
+ second row t21, 22.
2994
+ Modify stretchfactor, shearfactor and tiltangle according to the
2995
+ given matrix.
2996
+
2997
+ Examples (for a Turtle instance named turtle):
2998
+ >>> turtle.shape("square")
2999
+ >>> turtle.shapesize(4,2)
3000
+ >>> turtle.shearfactor(-0.5)
3001
+ >>> turtle.shapetransform()
3002
+ (4.0, -1.0, -0.0, 2.0)
3003
+ """
3004
+ if t11 is t12 is t21 is t22 is None:
3005
+ return self._shapetrafo
3006
+ m11, m12, m21, m22 = self._shapetrafo
3007
+ if t11 is not None: m11 = t11
3008
+ if t12 is not None: m12 = t12
3009
+ if t21 is not None: m21 = t21
3010
+ if t22 is not None: m22 = t22
3011
+ if t11 * t22 - t12 * t21 == 0:
3012
+ raise TurtleGraphicsError("Bad shape transform matrix: must not be singular")
3013
+ self._shapetrafo = (m11, m12, m21, m22)
3014
+ alfa = math.atan2(-m21, m11) % math.tau
3015
+ sa, ca = math.sin(alfa), math.cos(alfa)
3016
+ a11, a12, a21, a22 = (ca*m11 - sa*m21, ca*m12 - sa*m22,
3017
+ sa*m11 + ca*m21, sa*m12 + ca*m22)
3018
+ self._stretchfactor = a11, a22
3019
+ self._shearfactor = a12/a22
3020
+ self._tilt = alfa
3021
+ self.pen(resizemode="user")
3022
+
3023
+
3024
+ def _polytrafo(self, poly):
3025
+ """Computes transformed polygon shapes from a shape
3026
+ according to current position and heading.
3027
+ """
3028
+ screen = self.screen
3029
+ p0, p1 = self._position
3030
+ e0, e1 = self._orient
3031
+ e = Vec2D(e0, e1 * screen.yscale / screen.xscale)
3032
+ e0, e1 = (1.0 / abs(e)) * e
3033
+ return [(p0+(e1*x+e0*y)/screen.xscale, p1+(-e0*x+e1*y)/screen.yscale)
3034
+ for (x, y) in poly]
3035
+
3036
+ def get_shapepoly(self):
3037
+ """Return the current shape polygon as tuple of coordinate pairs.
3038
+
3039
+ No argument.
3040
+
3041
+ Examples (for a Turtle instance named turtle):
3042
+ >>> turtle.shape("square")
3043
+ >>> turtle.shapetransform(4, -1, 0, 2)
3044
+ >>> turtle.get_shapepoly()
3045
+ ((50, -20), (30, 20), (-50, 20), (-30, -20))
3046
+
3047
+ """
3048
+ shape = self.screen._shapes[self.turtle.shapeIndex]
3049
+ if shape._type == "polygon":
3050
+ return self._getshapepoly(shape._data, shape._type == "compound")
3051
+ # else return None
3052
+
3053
+ def _getshapepoly(self, polygon, compound=False):
3054
+ """Calculate transformed shape polygon according to resizemode
3055
+ and shapetransform.
3056
+ """
3057
+ if self._resizemode == "user" or compound:
3058
+ t11, t12, t21, t22 = self._shapetrafo
3059
+ elif self._resizemode == "auto":
3060
+ l = max(1, self._pensize/5.0)
3061
+ t11, t12, t21, t22 = l, 0, 0, l
3062
+ elif self._resizemode == "noresize":
3063
+ return polygon
3064
+ return tuple((t11*x + t12*y, t21*x + t22*y) for (x, y) in polygon)
3065
+
3066
+ def _drawturtle(self):
3067
+ """Manages the correct rendering of the turtle with respect to
3068
+ its shape, resizemode, stretch and tilt etc."""
3069
+ screen = self.screen
3070
+ shape = screen._shapes[self.turtle.shapeIndex]
3071
+ ttype = shape._type
3072
+ titem = self.turtle._item
3073
+ if self._shown and screen._updatecounter == 0 and screen._tracing > 0:
3074
+ self._hidden_from_screen = False
3075
+ tshape = shape._data
3076
+ if ttype == "polygon":
3077
+ if self._resizemode == "noresize": w = 1
3078
+ elif self._resizemode == "auto": w = self._pensize
3079
+ else: w =self._outlinewidth
3080
+ shape = self._polytrafo(self._getshapepoly(tshape))
3081
+ fc, oc = self._fillcolor, self._pencolor
3082
+ screen._drawpoly(titem, shape, fill=fc, outline=oc,
3083
+ width=w, top=True)
3084
+ elif ttype == "image":
3085
+ screen._drawimage(titem, self._position, tshape)
3086
+ elif ttype == "compound":
3087
+ for item, (poly, fc, oc) in zip(titem, tshape):
3088
+ poly = self._polytrafo(self._getshapepoly(poly, True))
3089
+ screen._drawpoly(item, poly, fill=self._cc(fc),
3090
+ outline=self._cc(oc), width=self._outlinewidth, top=True)
3091
+ else:
3092
+ if self._hidden_from_screen:
3093
+ return
3094
+ if ttype == "polygon":
3095
+ screen._drawpoly(titem, ((0, 0), (0, 0), (0, 0)), "", "")
3096
+ elif ttype == "image":
3097
+ screen._drawimage(titem, self._position,
3098
+ screen._shapes["blank"]._data)
3099
+ elif ttype == "compound":
3100
+ for item in titem:
3101
+ screen._drawpoly(item, ((0, 0), (0, 0), (0, 0)), "", "")
3102
+ self._hidden_from_screen = True
3103
+
3104
+ ############################## stamp stuff ###############################
3105
+
3106
+ def stamp(self):
3107
+ """Stamp a copy of the turtleshape onto the canvas and return its id.
3108
+
3109
+ No argument.
3110
+
3111
+ Stamp a copy of the turtle shape onto the canvas at the current
3112
+ turtle position. Return a stamp_id for that stamp, which can be
3113
+ used to delete it by calling clearstamp(stamp_id).
3114
+
3115
+ Example (for a Turtle instance named turtle):
3116
+ >>> turtle.color("blue")
3117
+ >>> turtle.stamp()
3118
+ 13
3119
+ >>> turtle.fd(50)
3120
+ """
3121
+ screen = self.screen
3122
+ shape = screen._shapes[self.turtle.shapeIndex]
3123
+ ttype = shape._type
3124
+ tshape = shape._data
3125
+ if ttype == "polygon":
3126
+ stitem = screen._createpoly()
3127
+ if self._resizemode == "noresize": w = 1
3128
+ elif self._resizemode == "auto": w = self._pensize
3129
+ else: w =self._outlinewidth
3130
+ shape = self._polytrafo(self._getshapepoly(tshape))
3131
+ fc, oc = self._fillcolor, self._pencolor
3132
+ screen._drawpoly(stitem, shape, fill=fc, outline=oc,
3133
+ width=w, top=True)
3134
+ elif ttype == "image":
3135
+ stitem = screen._createimage("")
3136
+ screen._drawimage(stitem, self._position, tshape)
3137
+ elif ttype == "compound":
3138
+ stitem = []
3139
+ for element in tshape:
3140
+ item = screen._createpoly()
3141
+ stitem.append(item)
3142
+ stitem = tuple(stitem)
3143
+ for item, (poly, fc, oc) in zip(stitem, tshape):
3144
+ poly = self._polytrafo(self._getshapepoly(poly, True))
3145
+ screen._drawpoly(item, poly, fill=self._cc(fc),
3146
+ outline=self._cc(oc), width=self._outlinewidth, top=True)
3147
+ self.stampItems.append(stitem)
3148
+ self.undobuffer.push(("stamp", stitem))
3149
+ return stitem
3150
+
3151
+ def _clearstamp(self, stampid):
3152
+ """does the work for clearstamp() and clearstamps()
3153
+ """
3154
+ if stampid in self.stampItems:
3155
+ if isinstance(stampid, tuple):
3156
+ for subitem in stampid:
3157
+ self.screen._delete(subitem)
3158
+ else:
3159
+ self.screen._delete(stampid)
3160
+ self.stampItems.remove(stampid)
3161
+ # Delete stampitem from undobuffer if necessary
3162
+ # if clearstamp is called directly.
3163
+ item = ("stamp", stampid)
3164
+ buf = self.undobuffer
3165
+ if item not in buf.buffer:
3166
+ return
3167
+ index = buf.buffer.index(item)
3168
+ buf.buffer.remove(item)
3169
+ if index <= buf.ptr:
3170
+ buf.ptr = (buf.ptr - 1) % buf.bufsize
3171
+ buf.buffer.insert((buf.ptr+1)%buf.bufsize, [None])
3172
+
3173
+ def clearstamp(self, stampid):
3174
+ """Delete stamp with given stampid
3175
+
3176
+ Argument:
3177
+ stampid - an integer, must be return value of previous stamp() call.
3178
+
3179
+ Example (for a Turtle instance named turtle):
3180
+ >>> turtle.color("blue")
3181
+ >>> astamp = turtle.stamp()
3182
+ >>> turtle.fd(50)
3183
+ >>> turtle.clearstamp(astamp)
3184
+ """
3185
+ self._clearstamp(stampid)
3186
+ self._update()
3187
+
3188
+ def clearstamps(self, n=None):
3189
+ """Delete all or first/last n of turtle's stamps.
3190
+
3191
+ Optional argument:
3192
+ n -- an integer
3193
+
3194
+ If n is None, delete all of pen's stamps,
3195
+ else if n > 0 delete first n stamps
3196
+ else if n < 0 delete last n stamps.
3197
+
3198
+ Example (for a Turtle instance named turtle):
3199
+ >>> for i in range(8):
3200
+ ... turtle.stamp(); turtle.fd(30)
3201
+ ...
3202
+ >>> turtle.clearstamps(2)
3203
+ >>> turtle.clearstamps(-2)
3204
+ >>> turtle.clearstamps()
3205
+ """
3206
+ if n is None:
3207
+ toDelete = self.stampItems[:]
3208
+ elif n >= 0:
3209
+ toDelete = self.stampItems[:n]
3210
+ else:
3211
+ toDelete = self.stampItems[n:]
3212
+ for item in toDelete:
3213
+ self._clearstamp(item)
3214
+ self._update()
3215
+
3216
+ def _goto(self, end):
3217
+ """Move the pen to the point end, thereby drawing a line
3218
+ if pen is down. All other methods for turtle movement depend
3219
+ on this one.
3220
+ """
3221
+ ## Version with undo-stuff
3222
+ go_modes = ( self._drawing,
3223
+ self._pencolor,
3224
+ self._pensize,
3225
+ isinstance(self._fillpath, list))
3226
+ screen = self.screen
3227
+ undo_entry = ("go", self._position, end, go_modes,
3228
+ (self.currentLineItem,
3229
+ self.currentLine[:],
3230
+ screen._pointlist(self.currentLineItem),
3231
+ self.items[:])
3232
+ )
3233
+ if self.undobuffer:
3234
+ self.undobuffer.push(undo_entry)
3235
+ start = self._position
3236
+ if self._speed and screen._tracing == 1:
3237
+ diff = (end-start)
3238
+ diffsq = (diff[0]*screen.xscale)**2 + (diff[1]*screen.yscale)**2
3239
+ nhops = 1+int((diffsq**0.5)/(3*(1.1**self._speed)*self._speed))
3240
+ delta = diff * (1.0/nhops)
3241
+ for n in range(1, nhops):
3242
+ if n == 1:
3243
+ top = True
3244
+ else:
3245
+ top = False
3246
+ self._position = start + delta * n
3247
+ if self._drawing:
3248
+ screen._drawline(self.drawingLineItem,
3249
+ (start, self._position),
3250
+ self._pencolor, self._pensize, top)
3251
+ self._update()
3252
+ if self._drawing:
3253
+ screen._drawline(self.drawingLineItem, ((0, 0), (0, 0)),
3254
+ fill="", width=self._pensize)
3255
+ # Turtle now at end,
3256
+ if self._drawing: # now update currentLine
3257
+ self.currentLine.append(end)
3258
+ if isinstance(self._fillpath, list):
3259
+ self._fillpath.append(end)
3260
+ ###### vererbung!!!!!!!!!!!!!!!!!!!!!!
3261
+ self._position = end
3262
+ if self._creatingPoly:
3263
+ self._poly.append(end)
3264
+ if len(self.currentLine) > 42: # 42! answer to the ultimate question
3265
+ # of life, the universe and everything
3266
+ self._newLine()
3267
+ self._update() #count=True)
3268
+
3269
+ def _undogoto(self, entry):
3270
+ """Reverse a _goto. Used for undo()
3271
+ """
3272
+ old, new, go_modes, coodata = entry
3273
+ drawing, pc, ps, filling = go_modes
3274
+ cLI, cL, pl, items = coodata
3275
+ screen = self.screen
3276
+ if abs(self._position - new) > 0.5:
3277
+ print ("undogoto: HALLO-DA-STIMMT-WAS-NICHT!")
3278
+ # restore former situation
3279
+ self.currentLineItem = cLI
3280
+ self.currentLine = cL
3281
+
3282
+ if pl == [(0, 0), (0, 0)]:
3283
+ usepc = ""
3284
+ else:
3285
+ usepc = pc
3286
+ screen._drawline(cLI, pl, fill=usepc, width=ps)
3287
+
3288
+ todelete = [i for i in self.items if (i not in items) and
3289
+ (screen._type(i) == "line")]
3290
+ for i in todelete:
3291
+ screen._delete(i)
3292
+ self.items.remove(i)
3293
+
3294
+ start = old
3295
+ if self._speed and screen._tracing == 1:
3296
+ diff = old - new
3297
+ diffsq = (diff[0]*screen.xscale)**2 + (diff[1]*screen.yscale)**2
3298
+ nhops = 1+int((diffsq**0.5)/(3*(1.1**self._speed)*self._speed))
3299
+ delta = diff * (1.0/nhops)
3300
+ for n in range(1, nhops):
3301
+ if n == 1:
3302
+ top = True
3303
+ else:
3304
+ top = False
3305
+ self._position = new + delta * n
3306
+ if drawing:
3307
+ screen._drawline(self.drawingLineItem,
3308
+ (start, self._position),
3309
+ pc, ps, top)
3310
+ self._update()
3311
+ if drawing:
3312
+ screen._drawline(self.drawingLineItem, ((0, 0), (0, 0)),
3313
+ fill="", width=ps)
3314
+ # Turtle now at position old,
3315
+ self._position = old
3316
+ ## if undo is done during creating a polygon, the last vertex
3317
+ ## will be deleted. if the polygon is entirely deleted,
3318
+ ## creatingPoly will be set to False.
3319
+ ## Polygons created before the last one will not be affected by undo()
3320
+ if self._creatingPoly:
3321
+ if len(self._poly) > 0:
3322
+ self._poly.pop()
3323
+ if self._poly == []:
3324
+ self._creatingPoly = False
3325
+ self._poly = None
3326
+ if filling:
3327
+ if self._fillpath == []:
3328
+ self._fillpath = None
3329
+ print("Unwahrscheinlich in _undogoto!")
3330
+ elif self._fillpath is not None:
3331
+ self._fillpath.pop()
3332
+ self._update() #count=True)
3333
+
3334
+ def _rotate(self, angle):
3335
+ """Turns pen clockwise by angle.
3336
+ """
3337
+ if self.undobuffer:
3338
+ self.undobuffer.push(("rot", angle, self._degreesPerAU))
3339
+ angle *= self._degreesPerAU
3340
+ neworient = self._orient.rotate(angle)
3341
+ tracing = self.screen._tracing
3342
+ if tracing == 1 and self._speed > 0:
3343
+ anglevel = 3.0 * self._speed
3344
+ steps = 1 + int(abs(angle)/anglevel)
3345
+ delta = 1.0*angle/steps
3346
+ for _ in range(steps):
3347
+ self._orient = self._orient.rotate(delta)
3348
+ self._update()
3349
+ self._orient = neworient
3350
+ self._update()
3351
+
3352
+ def _newLine(self, usePos=True):
3353
+ """Closes current line item and starts a new one.
3354
+ Remark: if current line became too long, animation
3355
+ performance (via _drawline) slowed down considerably.
3356
+ """
3357
+ if len(self.currentLine) > 1:
3358
+ self.screen._drawline(self.currentLineItem, self.currentLine,
3359
+ self._pencolor, self._pensize)
3360
+ self.currentLineItem = self.screen._createline()
3361
+ self.items.append(self.currentLineItem)
3362
+ else:
3363
+ self.screen._drawline(self.currentLineItem, top=True)
3364
+ self.currentLine = []
3365
+ if usePos:
3366
+ self.currentLine = [self._position]
3367
+
3368
+ def filling(self):
3369
+ """Return fillstate (True if filling, False else).
3370
+
3371
+ No argument.
3372
+
3373
+ Example (for a Turtle instance named turtle):
3374
+ >>> turtle.begin_fill()
3375
+ >>> if turtle.filling():
3376
+ ... turtle.pensize(5)
3377
+ ... else:
3378
+ ... turtle.pensize(3)
3379
+ """
3380
+ return isinstance(self._fillpath, list)
3381
+
3382
+ def begin_fill(self):
3383
+ """Called just before drawing a shape to be filled.
3384
+
3385
+ No argument.
3386
+
3387
+ Example (for a Turtle instance named turtle):
3388
+ >>> turtle.color("black", "red")
3389
+ >>> turtle.begin_fill()
3390
+ >>> turtle.circle(60)
3391
+ >>> turtle.end_fill()
3392
+ """
3393
+ if not self.filling():
3394
+ self._fillitem = self.screen._createpoly()
3395
+ self.items.append(self._fillitem)
3396
+ self._fillpath = [self._position]
3397
+ self._newLine()
3398
+ if self.undobuffer:
3399
+ self.undobuffer.push(("beginfill", self._fillitem))
3400
+ self._update()
3401
+
3402
+
3403
+ def end_fill(self):
3404
+ """Fill the shape drawn after the call begin_fill().
3405
+
3406
+ No argument.
3407
+
3408
+ Example (for a Turtle instance named turtle):
3409
+ >>> turtle.color("black", "red")
3410
+ >>> turtle.begin_fill()
3411
+ >>> turtle.circle(60)
3412
+ >>> turtle.end_fill()
3413
+ """
3414
+ if self.filling():
3415
+ if len(self._fillpath) > 2:
3416
+ self.screen._drawpoly(self._fillitem, self._fillpath,
3417
+ fill=self._fillcolor)
3418
+ if self.undobuffer:
3419
+ self.undobuffer.push(("dofill", self._fillitem))
3420
+ self._fillitem = self._fillpath = None
3421
+ self._update()
3422
+
3423
+ def dot(self, size=None, *color):
3424
+ """Draw a dot with diameter size, using color.
3425
+
3426
+ Optional arguments:
3427
+ size -- an integer >= 1 (if given)
3428
+ color -- a colorstring or a numeric color tuple
3429
+
3430
+ Draw a circular dot with diameter size, using color.
3431
+ If size is not given, the maximum of pensize+4 and 2*pensize is used.
3432
+
3433
+ Example (for a Turtle instance named turtle):
3434
+ >>> turtle.dot()
3435
+ >>> turtle.fd(50); turtle.dot(20, "blue"); turtle.fd(50)
3436
+ """
3437
+ if not color:
3438
+ if isinstance(size, (str, tuple)):
3439
+ color = self._colorstr(size)
3440
+ size = self._pensize + max(self._pensize, 4)
3441
+ else:
3442
+ color = self._pencolor
3443
+ if not size:
3444
+ size = self._pensize + max(self._pensize, 4)
3445
+ else:
3446
+ if size is None:
3447
+ size = self._pensize + max(self._pensize, 4)
3448
+ color = self._colorstr(color)
3449
+ # If screen were to gain a dot function, see GH #104218.
3450
+ pen = self.pen()
3451
+ if self.undobuffer:
3452
+ self.undobuffer.push(["seq"])
3453
+ self.undobuffer.cumulate = True
3454
+ try:
3455
+ if self.resizemode() == 'auto':
3456
+ self.ht()
3457
+ self.pendown()
3458
+ self.pensize(size)
3459
+ self.pencolor(color)
3460
+ self.forward(0)
3461
+ finally:
3462
+ self.pen(pen)
3463
+ if self.undobuffer:
3464
+ self.undobuffer.cumulate = False
3465
+
3466
+ def _write(self, txt, align, font):
3467
+ """Performs the writing for write()
3468
+ """
3469
+ item, end = self.screen._write(self._position, txt, align, font,
3470
+ self._pencolor)
3471
+ self._update()
3472
+ self.items.append(item)
3473
+ if self.undobuffer:
3474
+ self.undobuffer.push(("wri", item))
3475
+ return end
3476
+
3477
+ def write(self, arg, move=False, align="left", font=("Arial", 8, "normal")):
3478
+ """Write text at the current turtle position.
3479
+
3480
+ Arguments:
3481
+ arg -- info, which is to be written to the TurtleScreen
3482
+ move (optional) -- True/False
3483
+ align (optional) -- one of the strings "left", "center" or right"
3484
+ font (optional) -- a triple (fontname, fontsize, fonttype)
3485
+
3486
+ Write text - the string representation of arg - at the current
3487
+ turtle position according to align ("left", "center" or right")
3488
+ and with the given font.
3489
+ If move is True, the pen is moved to the bottom-right corner
3490
+ of the text. By default, move is False.
3491
+
3492
+ Example (for a Turtle instance named turtle):
3493
+ >>> turtle.write('Home = ', True, align="center")
3494
+ >>> turtle.write((0,0), True)
3495
+ """
3496
+ if self.undobuffer:
3497
+ self.undobuffer.push(["seq"])
3498
+ self.undobuffer.cumulate = True
3499
+ end = self._write(str(arg), align.lower(), font)
3500
+ if move:
3501
+ x, y = self.pos()
3502
+ self.setpos(end, y)
3503
+ if self.undobuffer:
3504
+ self.undobuffer.cumulate = False
3505
+
3506
+ def begin_poly(self):
3507
+ """Start recording the vertices of a polygon.
3508
+
3509
+ No argument.
3510
+
3511
+ Start recording the vertices of a polygon. Current turtle position
3512
+ is first point of polygon.
3513
+
3514
+ Example (for a Turtle instance named turtle):
3515
+ >>> turtle.begin_poly()
3516
+ """
3517
+ self._poly = [self._position]
3518
+ self._creatingPoly = True
3519
+
3520
+ def end_poly(self):
3521
+ """Stop recording the vertices of a polygon.
3522
+
3523
+ No argument.
3524
+
3525
+ Stop recording the vertices of a polygon. Current turtle position is
3526
+ last point of polygon. This will be connected with the first point.
3527
+
3528
+ Example (for a Turtle instance named turtle):
3529
+ >>> turtle.end_poly()
3530
+ """
3531
+ self._creatingPoly = False
3532
+
3533
+ def get_poly(self):
3534
+ """Return the lastly recorded polygon.
3535
+
3536
+ No argument.
3537
+
3538
+ Example (for a Turtle instance named turtle):
3539
+ >>> p = turtle.get_poly()
3540
+ >>> turtle.register_shape("myFavouriteShape", p)
3541
+ """
3542
+ ## check if there is any poly?
3543
+ if self._poly is not None:
3544
+ return tuple(self._poly)
3545
+
3546
+ def getscreen(self):
3547
+ """Return the TurtleScreen object, the turtle is drawing on.
3548
+
3549
+ No argument.
3550
+
3551
+ Return the TurtleScreen object, the turtle is drawing on.
3552
+ So TurtleScreen-methods can be called for that object.
3553
+
3554
+ Example (for a Turtle instance named turtle):
3555
+ >>> ts = turtle.getscreen()
3556
+ >>> ts
3557
+ <turtle.TurtleScreen object at 0x0106B770>
3558
+ >>> ts.bgcolor("pink")
3559
+ """
3560
+ return self.screen
3561
+
3562
+ def getturtle(self):
3563
+ """Return the Turtleobject itself.
3564
+
3565
+ No argument.
3566
+
3567
+ Only reasonable use: as a function to return the 'anonymous turtle':
3568
+
3569
+ Example:
3570
+ >>> pet = getturtle()
3571
+ >>> pet.fd(50)
3572
+ >>> pet
3573
+ <turtle.Turtle object at 0x0187D810>
3574
+ >>> turtles()
3575
+ [<turtle.Turtle object at 0x0187D810>]
3576
+ """
3577
+ return self
3578
+
3579
+ getpen = getturtle
3580
+
3581
+
3582
+ ################################################################
3583
+ ### screen oriented methods recurring to methods of TurtleScreen
3584
+ ################################################################
3585
+
3586
+ def _delay(self, delay=None):
3587
+ """Set delay value which determines speed of turtle animation.
3588
+ """
3589
+ return self.screen.delay(delay)
3590
+
3591
+ def onclick(self, fun, btn=1, add=None):
3592
+ """Bind fun to mouse-click event on this turtle on canvas.
3593
+
3594
+ Arguments:
3595
+ fun -- a function with two arguments, to which will be assigned
3596
+ the coordinates of the clicked point on the canvas.
3597
+ btn -- number of the mouse-button defaults to 1 (left mouse button).
3598
+ add -- True or False. If True, new binding will be added, otherwise
3599
+ it will replace a former binding.
3600
+
3601
+ Example for the anonymous turtle, i. e. the procedural way:
3602
+
3603
+ >>> def turn(x, y):
3604
+ ... left(360)
3605
+ ...
3606
+ >>> onclick(turn) # Now clicking into the turtle will turn it.
3607
+ >>> onclick(None) # event-binding will be removed
3608
+ """
3609
+ self.screen._onclick(self.turtle._item, fun, btn, add)
3610
+ self._update()
3611
+
3612
+ def onrelease(self, fun, btn=1, add=None):
3613
+ """Bind fun to mouse-button-release event on this turtle on canvas.
3614
+
3615
+ Arguments:
3616
+ fun -- a function with two arguments, to which will be assigned
3617
+ the coordinates of the clicked point on the canvas.
3618
+ btn -- number of the mouse-button defaults to 1 (left mouse button).
3619
+
3620
+ Example (for a MyTurtle instance named joe):
3621
+ >>> class MyTurtle(Turtle):
3622
+ ... def glow(self,x,y):
3623
+ ... self.fillcolor("red")
3624
+ ... def unglow(self,x,y):
3625
+ ... self.fillcolor("")
3626
+ ...
3627
+ >>> joe = MyTurtle()
3628
+ >>> joe.onclick(joe.glow)
3629
+ >>> joe.onrelease(joe.unglow)
3630
+
3631
+ Clicking on joe turns fillcolor red, unclicking turns it to
3632
+ transparent.
3633
+ """
3634
+ self.screen._onrelease(self.turtle._item, fun, btn, add)
3635
+ self._update()
3636
+
3637
+ def ondrag(self, fun, btn=1, add=None):
3638
+ """Bind fun to mouse-move event on this turtle on canvas.
3639
+
3640
+ Arguments:
3641
+ fun -- a function with two arguments, to which will be assigned
3642
+ the coordinates of the clicked point on the canvas.
3643
+ btn -- number of the mouse-button defaults to 1 (left mouse button).
3644
+
3645
+ Every sequence of mouse-move-events on a turtle is preceded by a
3646
+ mouse-click event on that turtle.
3647
+
3648
+ Example (for a Turtle instance named turtle):
3649
+ >>> turtle.ondrag(turtle.goto)
3650
+
3651
+ Subsequently clicking and dragging a Turtle will move it
3652
+ across the screen thereby producing handdrawings (if pen is
3653
+ down).
3654
+ """
3655
+ self.screen._ondrag(self.turtle._item, fun, btn, add)
3656
+
3657
+
3658
+ def _undo(self, action, data):
3659
+ """Does the main part of the work for undo()
3660
+ """
3661
+ if self.undobuffer is None:
3662
+ return
3663
+ if action == "rot":
3664
+ angle, degPAU = data
3665
+ self._rotate(-angle*degPAU/self._degreesPerAU)
3666
+ dummy = self.undobuffer.pop()
3667
+ elif action == "stamp":
3668
+ stitem = data[0]
3669
+ self.clearstamp(stitem)
3670
+ elif action == "go":
3671
+ self._undogoto(data)
3672
+ elif action in ["wri", "dot"]:
3673
+ item = data[0]
3674
+ self.screen._delete(item)
3675
+ self.items.remove(item)
3676
+ elif action == "dofill":
3677
+ item = data[0]
3678
+ self.screen._drawpoly(item, ((0, 0),(0, 0),(0, 0)),
3679
+ fill="", outline="")
3680
+ elif action == "beginfill":
3681
+ item = data[0]
3682
+ self._fillitem = self._fillpath = None
3683
+ if item in self.items:
3684
+ self.screen._delete(item)
3685
+ self.items.remove(item)
3686
+ elif action == "pen":
3687
+ TPen.pen(self, data[0])
3688
+ self.undobuffer.pop()
3689
+
3690
+ def undo(self):
3691
+ """undo (repeatedly) the last turtle action.
3692
+
3693
+ No argument.
3694
+
3695
+ undo (repeatedly) the last turtle action.
3696
+ Number of available undo actions is determined by the size of
3697
+ the undobuffer.
3698
+
3699
+ Example (for a Turtle instance named turtle):
3700
+ >>> for i in range(4):
3701
+ ... turtle.fd(50); turtle.lt(80)
3702
+ ...
3703
+ >>> for i in range(8):
3704
+ ... turtle.undo()
3705
+ ...
3706
+ """
3707
+ if self.undobuffer is None:
3708
+ return
3709
+ item = self.undobuffer.pop()
3710
+ action = item[0]
3711
+ data = item[1:]
3712
+ if action == "seq":
3713
+ while data:
3714
+ item = data.pop()
3715
+ self._undo(item[0], item[1:])
3716
+ else:
3717
+ self._undo(action, data)
3718
+
3719
+ turtlesize = shapesize
3720
+
3721
+ RawPen = RawTurtle
3722
+
3723
+ ### Screen - Singleton ########################
3724
+
3725
+ def Screen():
3726
+ """Return the singleton screen object.
3727
+ If none exists at the moment, create a new one and return it,
3728
+ else return the existing one."""
3729
+ if Turtle._screen is None:
3730
+ Turtle._screen = _Screen()
3731
+ return Turtle._screen
3732
+
3733
+ class _Screen(TurtleScreen):
3734
+
3735
+ _root = None
3736
+ _canvas = None
3737
+ _title = _CFG["title"]
3738
+
3739
+ def __init__(self):
3740
+ if _Screen._root is None:
3741
+ _Screen._root = self._root = _Root()
3742
+ self._root.title(_Screen._title)
3743
+ self._root.ondestroy(self._destroy)
3744
+ if _Screen._canvas is None:
3745
+ width = _CFG["width"]
3746
+ height = _CFG["height"]
3747
+ canvwidth = _CFG["canvwidth"]
3748
+ canvheight = _CFG["canvheight"]
3749
+ leftright = _CFG["leftright"]
3750
+ topbottom = _CFG["topbottom"]
3751
+ self._root.setupcanvas(width, height, canvwidth, canvheight)
3752
+ _Screen._canvas = self._root._getcanvas()
3753
+ TurtleScreen.__init__(self, _Screen._canvas)
3754
+ self.setup(width, height, leftright, topbottom)
3755
+
3756
+ def setup(self, width=_CFG["width"], height=_CFG["height"],
3757
+ startx=_CFG["leftright"], starty=_CFG["topbottom"]):
3758
+ """ Set the size and position of the main window.
3759
+
3760
+ Arguments:
3761
+ width: as integer a size in pixels, as float a fraction of the screen.
3762
+ Default is 50% of screen.
3763
+ height: as integer the height in pixels, as float a fraction of the
3764
+ screen. Default is 75% of screen.
3765
+ startx: if positive, starting position in pixels from the left
3766
+ edge of the screen, if negative from the right edge
3767
+ Default, startx=None is to center window horizontally.
3768
+ starty: if positive, starting position in pixels from the top
3769
+ edge of the screen, if negative from the bottom edge
3770
+ Default, starty=None is to center window vertically.
3771
+
3772
+ Examples (for a Screen instance named screen):
3773
+ >>> screen.setup (width=200, height=200, startx=0, starty=0)
3774
+
3775
+ sets window to 200x200 pixels, in upper left of screen
3776
+
3777
+ >>> screen.setup(width=.75, height=0.5, startx=None, starty=None)
3778
+
3779
+ sets window to 75% of screen by 50% of screen and centers
3780
+ """
3781
+ if not hasattr(self._root, "set_geometry"):
3782
+ return
3783
+ sw = self._root.win_width()
3784
+ sh = self._root.win_height()
3785
+ if isinstance(width, float) and 0 <= width <= 1:
3786
+ width = sw*width
3787
+ if startx is None:
3788
+ startx = (sw - width) / 2
3789
+ if isinstance(height, float) and 0 <= height <= 1:
3790
+ height = sh*height
3791
+ if starty is None:
3792
+ starty = (sh - height) / 2
3793
+ self._root.set_geometry(width, height, startx, starty)
3794
+ self.update()
3795
+
3796
+ def title(self, titlestring):
3797
+ """Set title of turtle-window
3798
+
3799
+ Argument:
3800
+ titlestring -- a string, to appear in the titlebar of the
3801
+ turtle graphics window.
3802
+
3803
+ This is a method of Screen-class. Not available for TurtleScreen-
3804
+ objects.
3805
+
3806
+ Example (for a Screen instance named screen):
3807
+ >>> screen.title("Welcome to the turtle-zoo!")
3808
+ """
3809
+ if _Screen._root is not None:
3810
+ _Screen._root.title(titlestring)
3811
+ _Screen._title = titlestring
3812
+
3813
+ def _destroy(self):
3814
+ root = self._root
3815
+ if root is _Screen._root:
3816
+ Turtle._pen = None
3817
+ Turtle._screen = None
3818
+ _Screen._root = None
3819
+ _Screen._canvas = None
3820
+ TurtleScreen._RUNNING = False
3821
+ root.destroy()
3822
+
3823
+ def bye(self):
3824
+ """Shut the turtlegraphics window.
3825
+
3826
+ Example (for a TurtleScreen instance named screen):
3827
+ >>> screen.bye()
3828
+ """
3829
+ self._destroy()
3830
+
3831
+ def exitonclick(self):
3832
+ """Go into mainloop until the mouse is clicked.
3833
+
3834
+ No arguments.
3835
+
3836
+ Bind bye() method to mouseclick on TurtleScreen.
3837
+ If "using_IDLE" - value in configuration dictionary is False
3838
+ (default value), enter mainloop.
3839
+ If IDLE with -n switch (no subprocess) is used, this value should be
3840
+ set to True in turtle.cfg. In this case IDLE's mainloop
3841
+ is active also for the client script.
3842
+
3843
+ This is a method of the Screen-class and not available for
3844
+ TurtleScreen instances.
3845
+
3846
+ Example (for a Screen instance named screen):
3847
+ >>> screen.exitonclick()
3848
+
3849
+ """
3850
+ def exitGracefully(x, y):
3851
+ """Screen.bye() with two dummy-parameters"""
3852
+ self.bye()
3853
+ self.onclick(exitGracefully)
3854
+ if _CFG["using_IDLE"]:
3855
+ return
3856
+ try:
3857
+ mainloop()
3858
+ except AttributeError:
3859
+ exit(0)
3860
+
3861
+ class Turtle(RawTurtle):
3862
+ """RawTurtle auto-creating (scrolled) canvas.
3863
+
3864
+ When a Turtle object is created or a function derived from some
3865
+ Turtle method is called a TurtleScreen object is automatically created.
3866
+ """
3867
+ _pen = None
3868
+ _screen = None
3869
+
3870
+ def __init__(self,
3871
+ shape=_CFG["shape"],
3872
+ undobuffersize=_CFG["undobuffersize"],
3873
+ visible=_CFG["visible"]):
3874
+ if Turtle._screen is None:
3875
+ Turtle._screen = Screen()
3876
+ RawTurtle.__init__(self, Turtle._screen,
3877
+ shape=shape,
3878
+ undobuffersize=undobuffersize,
3879
+ visible=visible)
3880
+
3881
+ Pen = Turtle
3882
+
3883
+ def write_docstringdict(filename="turtle_docstringdict"):
3884
+ """Create and write docstring-dictionary to file.
3885
+
3886
+ Optional argument:
3887
+ filename -- a string, used as filename
3888
+ default value is turtle_docstringdict
3889
+
3890
+ Has to be called explicitly, (not used by the turtle-graphics classes)
3891
+ The docstring dictionary will be written to the Python script <filename>.py
3892
+ It is intended to serve as a template for translation of the docstrings
3893
+ into different languages.
3894
+ """
3895
+ docsdict = {}
3896
+
3897
+ for methodname in _tg_screen_functions:
3898
+ key = "_Screen."+methodname
3899
+ docsdict[key] = eval(key).__doc__
3900
+ for methodname in _tg_turtle_functions:
3901
+ key = "Turtle."+methodname
3902
+ docsdict[key] = eval(key).__doc__
3903
+
3904
+ with open("%s.py" % filename,"w") as f:
3905
+ keys = sorted(x for x in docsdict
3906
+ if x.split('.')[1] not in _alias_list)
3907
+ f.write('docsdict = {\n\n')
3908
+ for key in keys[:-1]:
3909
+ f.write('%s :\n' % repr(key))
3910
+ f.write(' """%s\n""",\n\n' % docsdict[key])
3911
+ key = keys[-1]
3912
+ f.write('%s :\n' % repr(key))
3913
+ f.write(' """%s\n"""\n\n' % docsdict[key])
3914
+ f.write("}\n")
3915
+ f.close()
3916
+
3917
+ def read_docstrings(lang):
3918
+ """Read in docstrings from lang-specific docstring dictionary.
3919
+
3920
+ Transfer docstrings, translated to lang, from a dictionary-file
3921
+ to the methods of classes Screen and Turtle and - in revised form -
3922
+ to the corresponding functions.
3923
+ """
3924
+ modname = "turtle_docstringdict_%(language)s" % {'language':lang.lower()}
3925
+ module = __import__(modname)
3926
+ docsdict = module.docsdict
3927
+ for key in docsdict:
3928
+ try:
3929
+ # eval(key).im_func.__doc__ = docsdict[key]
3930
+ eval(key).__doc__ = docsdict[key]
3931
+ except Exception:
3932
+ print("Bad docstring-entry: %s" % key)
3933
+
3934
+ _LANGUAGE = _CFG["language"]
3935
+
3936
+ try:
3937
+ if _LANGUAGE != "english":
3938
+ read_docstrings(_LANGUAGE)
3939
+ except ImportError:
3940
+ print("Cannot find docsdict for", _LANGUAGE)
3941
+ except Exception:
3942
+ print ("Unknown Error when trying to import %s-docstring-dictionary" %
3943
+ _LANGUAGE)
3944
+
3945
+
3946
+ def getmethparlist(ob):
3947
+ """Get strings describing the arguments for the given object
3948
+
3949
+ Returns a pair of strings representing function parameter lists
3950
+ including parenthesis. The first string is suitable for use in
3951
+ function definition and the second is suitable for use in function
3952
+ call. The "self" parameter is not included.
3953
+ """
3954
+ orig_sig = inspect.signature(ob)
3955
+ # bit of a hack for methods - turn it into a function
3956
+ # but we drop the "self" param.
3957
+ # Try and build one for Python defined functions
3958
+ func_sig = orig_sig.replace(
3959
+ parameters=list(orig_sig.parameters.values())[1:],
3960
+ )
3961
+
3962
+ call_args = []
3963
+ for param in func_sig.parameters.values():
3964
+ match param.kind:
3965
+ case (
3966
+ inspect.Parameter.POSITIONAL_ONLY
3967
+ | inspect.Parameter.POSITIONAL_OR_KEYWORD
3968
+ ):
3969
+ call_args.append(param.name)
3970
+ case inspect.Parameter.VAR_POSITIONAL:
3971
+ call_args.append(f'*{param.name}')
3972
+ case inspect.Parameter.KEYWORD_ONLY:
3973
+ call_args.append(f'{param.name}={param.name}')
3974
+ case inspect.Parameter.VAR_KEYWORD:
3975
+ call_args.append(f'**{param.name}')
3976
+ case _:
3977
+ raise RuntimeError('Unsupported parameter kind', param.kind)
3978
+ call_text = f'({', '.join(call_args)})'
3979
+
3980
+ return str(func_sig), call_text
3981
+
3982
+ def _turtle_docrevise(docstr):
3983
+ """To reduce docstrings from RawTurtle class for functions
3984
+ """
3985
+ import re
3986
+ if docstr is None:
3987
+ return None
3988
+ turtlename = _CFG["exampleturtle"]
3989
+ newdocstr = docstr.replace("%s." % turtlename,"")
3990
+ parexp = re.compile(r' \(.+ %s\):' % turtlename)
3991
+ newdocstr = parexp.sub(":", newdocstr)
3992
+ return newdocstr
3993
+
3994
+ def _screen_docrevise(docstr):
3995
+ """To reduce docstrings from TurtleScreen class for functions
3996
+ """
3997
+ import re
3998
+ if docstr is None:
3999
+ return None
4000
+ screenname = _CFG["examplescreen"]
4001
+ newdocstr = docstr.replace("%s." % screenname,"")
4002
+ parexp = re.compile(r' \(.+ %s\):' % screenname)
4003
+ newdocstr = parexp.sub(":", newdocstr)
4004
+ return newdocstr
4005
+
4006
+ ## The following mechanism makes all methods of RawTurtle and Turtle available
4007
+ ## as functions. So we can enhance, change, add, delete methods to these
4008
+ ## classes and do not need to change anything here.
4009
+
4010
+ __func_body = """\
4011
+ def {name}{paramslist}:
4012
+ if {obj} is None:
4013
+ if not TurtleScreen._RUNNING:
4014
+ TurtleScreen._RUNNING = True
4015
+ raise Terminator
4016
+ {obj} = {init}
4017
+ try:
4018
+ return {obj}.{name}{argslist}
4019
+ except TK.TclError:
4020
+ if not TurtleScreen._RUNNING:
4021
+ TurtleScreen._RUNNING = True
4022
+ raise Terminator
4023
+ raise
4024
+ """
4025
+
4026
+ def _make_global_funcs(functions, cls, obj, init, docrevise):
4027
+ for methodname in functions:
4028
+ method = getattr(cls, methodname)
4029
+ pl1, pl2 = getmethparlist(method)
4030
+ if pl1 == "":
4031
+ print(">>>>>>", pl1, pl2)
4032
+ continue
4033
+ defstr = __func_body.format(obj=obj, init=init, name=methodname,
4034
+ paramslist=pl1, argslist=pl2)
4035
+ exec(defstr, globals())
4036
+ globals()[methodname].__doc__ = docrevise(method.__doc__)
4037
+
4038
+ _make_global_funcs(_tg_screen_functions, _Screen,
4039
+ 'Turtle._screen', 'Screen()', _screen_docrevise)
4040
+ _make_global_funcs(_tg_turtle_functions, Turtle,
4041
+ 'Turtle._pen', 'Turtle()', _turtle_docrevise)
4042
+
4043
+
4044
+ done = mainloop
4045
+
4046
+ if __name__ == "__main__":
4047
+ def switchpen():
4048
+ if isdown():
4049
+ pu()
4050
+ else:
4051
+ pd()
4052
+
4053
+ def demo1():
4054
+ """Demo of old turtle.py - module"""
4055
+ reset()
4056
+ tracer(True)
4057
+ up()
4058
+ backward(100)
4059
+ down()
4060
+ # draw 3 squares; the last filled
4061
+ width(3)
4062
+ for i in range(3):
4063
+ if i == 2:
4064
+ begin_fill()
4065
+ for _ in range(4):
4066
+ forward(20)
4067
+ left(90)
4068
+ if i == 2:
4069
+ color("maroon")
4070
+ end_fill()
4071
+ up()
4072
+ forward(30)
4073
+ down()
4074
+ width(1)
4075
+ color("black")
4076
+ # move out of the way
4077
+ tracer(False)
4078
+ up()
4079
+ right(90)
4080
+ forward(100)
4081
+ right(90)
4082
+ forward(100)
4083
+ right(180)
4084
+ down()
4085
+ # some text
4086
+ write("startstart", 1)
4087
+ write("start", 1)
4088
+ color("red")
4089
+ # staircase
4090
+ for i in range(5):
4091
+ forward(20)
4092
+ left(90)
4093
+ forward(20)
4094
+ right(90)
4095
+ # filled staircase
4096
+ tracer(True)
4097
+ begin_fill()
4098
+ for i in range(5):
4099
+ forward(20)
4100
+ left(90)
4101
+ forward(20)
4102
+ right(90)
4103
+ end_fill()
4104
+ # more text
4105
+
4106
+ def demo2():
4107
+ """Demo of some new features."""
4108
+ speed(1)
4109
+ st()
4110
+ pensize(3)
4111
+ setheading(towards(0, 0))
4112
+ radius = distance(0, 0)/2.0
4113
+ rt(90)
4114
+ for _ in range(18):
4115
+ switchpen()
4116
+ circle(radius, 10)
4117
+ write("wait a moment...")
4118
+ while undobufferentries():
4119
+ undo()
4120
+ reset()
4121
+ lt(90)
4122
+ colormode(255)
4123
+ laenge = 10
4124
+ pencolor("green")
4125
+ pensize(3)
4126
+ lt(180)
4127
+ for i in range(-2, 16):
4128
+ if i > 0:
4129
+ begin_fill()
4130
+ fillcolor(255-15*i, 0, 15*i)
4131
+ for _ in range(3):
4132
+ fd(laenge)
4133
+ lt(120)
4134
+ end_fill()
4135
+ laenge += 10
4136
+ lt(15)
4137
+ speed((speed()+1)%12)
4138
+ #end_fill()
4139
+
4140
+ lt(120)
4141
+ pu()
4142
+ fd(70)
4143
+ rt(30)
4144
+ pd()
4145
+ color("red","yellow")
4146
+ speed(0)
4147
+ begin_fill()
4148
+ for _ in range(4):
4149
+ circle(50, 90)
4150
+ rt(90)
4151
+ fd(30)
4152
+ rt(90)
4153
+ end_fill()
4154
+ lt(90)
4155
+ pu()
4156
+ fd(30)
4157
+ pd()
4158
+ shape("turtle")
4159
+
4160
+ tri = getturtle()
4161
+ tri.resizemode("auto")
4162
+ turtle = Turtle()
4163
+ turtle.resizemode("auto")
4164
+ turtle.shape("turtle")
4165
+ turtle.reset()
4166
+ turtle.left(90)
4167
+ turtle.speed(0)
4168
+ turtle.up()
4169
+ turtle.goto(280, 40)
4170
+ turtle.lt(30)
4171
+ turtle.down()
4172
+ turtle.speed(6)
4173
+ turtle.color("blue","orange")
4174
+ turtle.pensize(2)
4175
+ tri.speed(6)
4176
+ setheading(towards(turtle))
4177
+ count = 1
4178
+ while tri.distance(turtle) > 4:
4179
+ turtle.fd(3.5)
4180
+ turtle.lt(0.6)
4181
+ tri.setheading(tri.towards(turtle))
4182
+ tri.fd(4)
4183
+ if count % 20 == 0:
4184
+ turtle.stamp()
4185
+ tri.stamp()
4186
+ switchpen()
4187
+ count += 1
4188
+ tri.write("CAUGHT! ", font=("Arial", 16, "bold"), align="right")
4189
+ tri.pencolor("black")
4190
+ tri.pencolor("red")
4191
+
4192
+ def baba(xdummy, ydummy):
4193
+ clearscreen()
4194
+ bye()
4195
+
4196
+ time.sleep(2)
4197
+
4198
+ while undobufferentries():
4199
+ tri.undo()
4200
+ turtle.undo()
4201
+ tri.fd(50)
4202
+ tri.write(" Click me!", font = ("Courier", 12, "bold") )
4203
+ tri.onclick(baba, 1)
4204
+
4205
+ demo1()
4206
+ demo2()
4207
+ exitonclick()