pythonlings 0.3.1__tar.gz → 0.4.0__tar.gz

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 (1046) hide show
  1. {pythonlings-0.3.1 → pythonlings-0.4.0}/CHANGELOG.md +20 -0
  2. {pythonlings-0.3.1 → pythonlings-0.4.0}/PKG-INFO +6 -6
  3. {pythonlings-0.3.1 → pythonlings-0.4.0}/Readme.md +5 -5
  4. pythonlings-0.4.0/docs/superpowers/plans/2026-06-20-zero-config-first-run.md +644 -0
  5. pythonlings-0.4.0/docs/superpowers/specs/2026-06-20-zero-config-first-run-design.md +128 -0
  6. {pythonlings-0.3.1 → pythonlings-0.4.0}/pyproject.toml +1 -1
  7. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/cli.py +49 -23
  8. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/core/curriculum.py +4 -1
  9. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/core/manifest.py +1 -1
  10. pythonlings-0.4.0/pythonlings/core/workspace.py +57 -0
  11. pythonlings-0.4.0/tests/conftest.py +19 -0
  12. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/integration/test_cli_workspace.py +23 -5
  13. pythonlings-0.4.0/tests/integration/test_first_run.py +53 -0
  14. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/unit/test_curriculum.py +1 -1
  15. pythonlings-0.4.0/tests/unit/test_workspace.py +70 -0
  16. {pythonlings-0.3.1 → pythonlings-0.4.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  17. {pythonlings-0.3.1 → pythonlings-0.4.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  18. {pythonlings-0.3.1 → pythonlings-0.4.0}/.github/pull_request_template.md +0 -0
  19. {pythonlings-0.3.1 → pythonlings-0.4.0}/.github/workflows/ci.yml +0 -0
  20. {pythonlings-0.3.1 → pythonlings-0.4.0}/.github/workflows/pages.yml +0 -0
  21. {pythonlings-0.3.1 → pythonlings-0.4.0}/.github/workflows/publish.yml +0 -0
  22. {pythonlings-0.3.1 → pythonlings-0.4.0}/.gitignore +0 -0
  23. {pythonlings-0.3.1 → pythonlings-0.4.0}/AGENTS.md +0 -0
  24. {pythonlings-0.3.1 → pythonlings-0.4.0}/CLAUDE.md +0 -0
  25. {pythonlings-0.3.1 → pythonlings-0.4.0}/CNAME +0 -0
  26. {pythonlings-0.3.1 → pythonlings-0.4.0}/CODE_OF_CONDUCT.md +0 -0
  27. {pythonlings-0.3.1 → pythonlings-0.4.0}/CONTRIBUTING.md +0 -0
  28. {pythonlings-0.3.1 → pythonlings-0.4.0}/LICENSE +0 -0
  29. {pythonlings-0.3.1 → pythonlings-0.4.0}/RELEASE.md +0 -0
  30. {pythonlings-0.3.1 → pythonlings-0.4.0}/SECURITY.md +0 -0
  31. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/async/async1.py +0 -0
  32. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/async/async10.py +0 -0
  33. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/async/async2.py +0 -0
  34. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/async/async3.py +0 -0
  35. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/async/async4.py +0 -0
  36. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/async/async5.py +0 -0
  37. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/async/async6.py +0 -0
  38. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/async/async7.py +0 -0
  39. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/async/async8.py +0 -0
  40. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/async/async9.py +0 -0
  41. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/classes/classes1.py +0 -0
  42. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/classes/classes10.py +0 -0
  43. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/classes/classes11.py +0 -0
  44. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/classes/classes12.py +0 -0
  45. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/classes/classes2.py +0 -0
  46. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/classes/classes3.py +0 -0
  47. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/classes/classes4.py +0 -0
  48. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/classes/classes5.py +0 -0
  49. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/classes/classes6.py +0 -0
  50. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/classes/classes7.py +0 -0
  51. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/classes/classes8.py +0 -0
  52. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/classes/classes9.py +0 -0
  53. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/collections/collections1.py +0 -0
  54. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/collections/collections10.py +0 -0
  55. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/collections/collections2.py +0 -0
  56. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/collections/collections3.py +0 -0
  57. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/collections/collections4.py +0 -0
  58. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/collections/collections5.py +0 -0
  59. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/collections/collections6.py +0 -0
  60. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/collections/collections7.py +0 -0
  61. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/collections/collections8.py +0 -0
  62. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/collections/collections9.py +0 -0
  63. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/comprehensions/comprehensions1.py +0 -0
  64. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/comprehensions/comprehensions10.py +0 -0
  65. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/comprehensions/comprehensions2.py +0 -0
  66. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/comprehensions/comprehensions3.py +0 -0
  67. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/comprehensions/comprehensions4.py +0 -0
  68. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/comprehensions/comprehensions5.py +0 -0
  69. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/comprehensions/comprehensions6.py +0 -0
  70. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/comprehensions/comprehensions7.py +0 -0
  71. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/comprehensions/comprehensions8.py +0 -0
  72. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/comprehensions/comprehensions9.py +0 -0
  73. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/conditionals/conditionals1.py +0 -0
  74. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/conditionals/conditionals10.py +0 -0
  75. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/conditionals/conditionals2.py +0 -0
  76. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/conditionals/conditionals3.py +0 -0
  77. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/conditionals/conditionals4.py +0 -0
  78. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/conditionals/conditionals5.py +0 -0
  79. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/conditionals/conditionals6.py +0 -0
  80. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/conditionals/conditionals7.py +0 -0
  81. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/conditionals/conditionals8.py +0 -0
  82. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/conditionals/conditionals9.py +0 -0
  83. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/context_managers/context_managers1.py +0 -0
  84. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/context_managers/context_managers2.py +0 -0
  85. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/context_managers/context_managers3.py +0 -0
  86. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/context_managers/context_managers4.py +0 -0
  87. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/context_managers/context_managers5.py +0 -0
  88. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/context_managers/context_managers6.py +0 -0
  89. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/context_managers/context_managers7.py +0 -0
  90. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/context_managers/context_managers8.py +0 -0
  91. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dataclasses/dataclasses1.py +0 -0
  92. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dataclasses/dataclasses2.py +0 -0
  93. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dataclasses/dataclasses3.py +0 -0
  94. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dataclasses/dataclasses4.py +0 -0
  95. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dataclasses/dataclasses5.py +0 -0
  96. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dataclasses/dataclasses6.py +0 -0
  97. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dataclasses/dataclasses7.py +0 -0
  98. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dataclasses/dataclasses8.py +0 -0
  99. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/datetime/datetime1.py +0 -0
  100. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/datetime/datetime2.py +0 -0
  101. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/datetime/datetime3.py +0 -0
  102. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/datetime/datetime4.py +0 -0
  103. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/datetime/datetime5.py +0 -0
  104. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/datetime/datetime6.py +0 -0
  105. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/datetime/datetime7.py +0 -0
  106. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/datetime/datetime8.py +0 -0
  107. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/decorators/decorators1.py +0 -0
  108. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/decorators/decorators10.py +0 -0
  109. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/decorators/decorators2.py +0 -0
  110. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/decorators/decorators3.py +0 -0
  111. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/decorators/decorators4.py +0 -0
  112. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/decorators/decorators5.py +0 -0
  113. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/decorators/decorators6.py +0 -0
  114. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/decorators/decorators7.py +0 -0
  115. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/decorators/decorators8.py +0 -0
  116. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/decorators/decorators9.py +0 -0
  117. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dictionaries/dictionaries1.py +0 -0
  118. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dictionaries/dictionaries10.py +0 -0
  119. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dictionaries/dictionaries2.py +0 -0
  120. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dictionaries/dictionaries3.py +0 -0
  121. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dictionaries/dictionaries4.py +0 -0
  122. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dictionaries/dictionaries5.py +0 -0
  123. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dictionaries/dictionaries6.py +0 -0
  124. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dictionaries/dictionaries7.py +0 -0
  125. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dictionaries/dictionaries8.py +0 -0
  126. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/dictionaries/dictionaries9.py +0 -0
  127. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/enums/enums1.py +0 -0
  128. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/enums/enums2.py +0 -0
  129. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/enums/enums3.py +0 -0
  130. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/enums/enums4.py +0 -0
  131. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/enums/enums5.py +0 -0
  132. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/enums/enums6.py +0 -0
  133. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/exceptions/exceptions1.py +0 -0
  134. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/exceptions/exceptions10.py +0 -0
  135. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/exceptions/exceptions2.py +0 -0
  136. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/exceptions/exceptions3.py +0 -0
  137. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/exceptions/exceptions4.py +0 -0
  138. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/exceptions/exceptions5.py +0 -0
  139. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/exceptions/exceptions6.py +0 -0
  140. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/exceptions/exceptions7.py +0 -0
  141. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/exceptions/exceptions8.py +0 -0
  142. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/exceptions/exceptions9.py +0 -0
  143. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/file_io/file_io1.py +0 -0
  144. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/file_io/file_io10.py +0 -0
  145. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/file_io/file_io2.py +0 -0
  146. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/file_io/file_io3.py +0 -0
  147. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/file_io/file_io4.py +0 -0
  148. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/file_io/file_io5.py +0 -0
  149. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/file_io/file_io6.py +0 -0
  150. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/file_io/file_io7.py +0 -0
  151. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/file_io/file_io8.py +0 -0
  152. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/file_io/file_io9.py +0 -0
  153. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functional/functional1.py +0 -0
  154. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functional/functional10.py +0 -0
  155. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functional/functional2.py +0 -0
  156. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functional/functional3.py +0 -0
  157. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functional/functional4.py +0 -0
  158. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functional/functional5.py +0 -0
  159. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functional/functional6.py +0 -0
  160. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functional/functional7.py +0 -0
  161. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functional/functional8.py +0 -0
  162. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functional/functional9.py +0 -0
  163. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functions/functions1.py +0 -0
  164. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functions/functions10.py +0 -0
  165. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functions/functions2.py +0 -0
  166. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functions/functions3.py +0 -0
  167. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functions/functions4.py +0 -0
  168. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functions/functions5.py +0 -0
  169. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functions/functions6.py +0 -0
  170. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functions/functions7.py +0 -0
  171. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functions/functions8.py +0 -0
  172. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/functions/functions9.py +0 -0
  173. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/generators/generators1.py +0 -0
  174. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/generators/generators10.py +0 -0
  175. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/generators/generators2.py +0 -0
  176. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/generators/generators3.py +0 -0
  177. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/generators/generators4.py +0 -0
  178. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/generators/generators5.py +0 -0
  179. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/generators/generators6.py +0 -0
  180. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/generators/generators7.py +0 -0
  181. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/generators/generators8.py +0 -0
  182. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/generators/generators9.py +0 -0
  183. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/itertools/itertools1.py +0 -0
  184. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/itertools/itertools2.py +0 -0
  185. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/itertools/itertools3.py +0 -0
  186. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/itertools/itertools4.py +0 -0
  187. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/itertools/itertools5.py +0 -0
  188. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/itertools/itertools6.py +0 -0
  189. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/itertools/itertools7.py +0 -0
  190. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/itertools/itertools8.py +0 -0
  191. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/json/json1.py +0 -0
  192. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/json/json2.py +0 -0
  193. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/json/json3.py +0 -0
  194. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/json/json4.py +0 -0
  195. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/json/json5.py +0 -0
  196. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/json/json6.py +0 -0
  197. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/json/json7.py +0 -0
  198. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/json/json8.py +0 -0
  199. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/lists/lists1.py +0 -0
  200. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/lists/lists10.py +0 -0
  201. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/lists/lists2.py +0 -0
  202. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/lists/lists3.py +0 -0
  203. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/lists/lists4.py +0 -0
  204. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/lists/lists5.py +0 -0
  205. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/lists/lists6.py +0 -0
  206. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/lists/lists7.py +0 -0
  207. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/lists/lists8.py +0 -0
  208. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/lists/lists9.py +0 -0
  209. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/loops/loops1.py +0 -0
  210. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/loops/loops10.py +0 -0
  211. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/loops/loops2.py +0 -0
  212. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/loops/loops3.py +0 -0
  213. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/loops/loops4.py +0 -0
  214. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/loops/loops5.py +0 -0
  215. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/loops/loops6.py +0 -0
  216. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/loops/loops7.py +0 -0
  217. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/loops/loops8.py +0 -0
  218. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/loops/loops9.py +0 -0
  219. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/modules/modules1.py +0 -0
  220. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/modules/modules2.py +0 -0
  221. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/modules/modules3.py +0 -0
  222. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/modules/modules4.py +0 -0
  223. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/modules/modules5.py +0 -0
  224. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/modules/modules6.py +0 -0
  225. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/modules/modules7.py +0 -0
  226. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/modules/modules8.py +0 -0
  227. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/oop_advanced/oop_advanced1.py +0 -0
  228. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/oop_advanced/oop_advanced10.py +0 -0
  229. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/oop_advanced/oop_advanced11.py +0 -0
  230. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/oop_advanced/oop_advanced12.py +0 -0
  231. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/oop_advanced/oop_advanced2.py +0 -0
  232. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/oop_advanced/oop_advanced3.py +0 -0
  233. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/oop_advanced/oop_advanced4.py +0 -0
  234. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/oop_advanced/oop_advanced5.py +0 -0
  235. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/oop_advanced/oop_advanced6.py +0 -0
  236. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/oop_advanced/oop_advanced7.py +0 -0
  237. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/oop_advanced/oop_advanced8.py +0 -0
  238. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/oop_advanced/oop_advanced9.py +0 -0
  239. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/pathlib/pathlib1.py +0 -0
  240. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/pathlib/pathlib2.py +0 -0
  241. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/pathlib/pathlib3.py +0 -0
  242. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/pathlib/pathlib4.py +0 -0
  243. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/pathlib/pathlib5.py +0 -0
  244. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/pathlib/pathlib6.py +0 -0
  245. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/recursion/recursion1.py +0 -0
  246. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/recursion/recursion2.py +0 -0
  247. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/recursion/recursion3.py +0 -0
  248. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/recursion/recursion4.py +0 -0
  249. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/recursion/recursion5.py +0 -0
  250. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/recursion/recursion6.py +0 -0
  251. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/recursion/recursion7.py +0 -0
  252. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/recursion/recursion8.py +0 -0
  253. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/regex/regex1.py +0 -0
  254. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/regex/regex10.py +0 -0
  255. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/regex/regex2.py +0 -0
  256. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/regex/regex3.py +0 -0
  257. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/regex/regex4.py +0 -0
  258. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/regex/regex5.py +0 -0
  259. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/regex/regex6.py +0 -0
  260. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/regex/regex7.py +0 -0
  261. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/regex/regex8.py +0 -0
  262. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/regex/regex9.py +0 -0
  263. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/sets/sets1.py +0 -0
  264. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/sets/sets10.py +0 -0
  265. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/sets/sets2.py +0 -0
  266. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/sets/sets3.py +0 -0
  267. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/sets/sets4.py +0 -0
  268. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/sets/sets5.py +0 -0
  269. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/sets/sets6.py +0 -0
  270. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/sets/sets7.py +0 -0
  271. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/sets/sets8.py +0 -0
  272. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/sets/sets9.py +0 -0
  273. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/strings/strings1.py +0 -0
  274. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/strings/strings10.py +0 -0
  275. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/strings/strings2.py +0 -0
  276. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/strings/strings3.py +0 -0
  277. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/strings/strings4.py +0 -0
  278. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/strings/strings5.py +0 -0
  279. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/strings/strings6.py +0 -0
  280. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/strings/strings7.py +0 -0
  281. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/strings/strings8.py +0 -0
  282. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/strings/strings9.py +0 -0
  283. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/testing/testing1.py +0 -0
  284. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/testing/testing10.py +0 -0
  285. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/testing/testing11.py +0 -0
  286. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/testing/testing12.py +0 -0
  287. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/testing/testing2.py +0 -0
  288. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/testing/testing3.py +0 -0
  289. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/testing/testing4.py +0 -0
  290. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/testing/testing5.py +0 -0
  291. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/testing/testing6.py +0 -0
  292. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/testing/testing7.py +0 -0
  293. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/testing/testing8.py +0 -0
  294. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/testing/testing9.py +0 -0
  295. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/tuples/tuples1.py +0 -0
  296. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/tuples/tuples10.py +0 -0
  297. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/tuples/tuples2.py +0 -0
  298. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/tuples/tuples3.py +0 -0
  299. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/tuples/tuples4.py +0 -0
  300. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/tuples/tuples5.py +0 -0
  301. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/tuples/tuples6.py +0 -0
  302. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/tuples/tuples7.py +0 -0
  303. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/tuples/tuples8.py +0 -0
  304. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/tuples/tuples9.py +0 -0
  305. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/type_hints/type_hints1.py +0 -0
  306. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/type_hints/type_hints2.py +0 -0
  307. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/type_hints/type_hints3.py +0 -0
  308. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/type_hints/type_hints4.py +0 -0
  309. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/type_hints/type_hints5.py +0 -0
  310. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/type_hints/type_hints6.py +0 -0
  311. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/type_hints/type_hints7.py +0 -0
  312. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/type_hints/type_hints8.py +0 -0
  313. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/variables/variables1.py +0 -0
  314. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/variables/variables10.py +0 -0
  315. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/variables/variables2.py +0 -0
  316. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/variables/variables3.py +0 -0
  317. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/variables/variables4.py +0 -0
  318. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/variables/variables5.py +0 -0
  319. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/variables/variables6.py +0 -0
  320. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/variables/variables7.py +0 -0
  321. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/variables/variables8.py +0 -0
  322. {pythonlings-0.3.1 → pythonlings-0.4.0}/checks/variables/variables9.py +0 -0
  323. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/DEMO_GIF.md +0 -0
  324. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/RELEASE_PROCESS.md +0 -0
  325. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/assets/demos/pythonlings-demo.gif +0 -0
  326. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/assets/screenshots/coding-screen.png +0 -0
  327. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/assets/screenshots/docs-reference.png +0 -0
  328. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/assets/screenshots/topic-picker.png +0 -0
  329. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/demo.tape +0 -0
  330. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/roadmap/0.3.0.md +0 -0
  331. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/plans/2026-05-19-pylings-rustlings-ux.md +0 -0
  332. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/plans/2026-05-20-pylings-builtin-editor.md +0 -0
  333. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/plans/2026-05-20-pylings-hidden-checks.md +0 -0
  334. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/plans/2026-05-20-pylings-topics-and-curriculum.md +0 -0
  335. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/plans/2026-05-22-pylings-interaction-model-upgrade.md +0 -0
  336. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/plans/2026-05-23-pylings-roadmap-curriculum-completion.md +0 -0
  337. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/plans/2026-05-25-pylings-product-maturity.md +0 -0
  338. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/plans/2026-05-26-pylings-docs-site.md +0 -0
  339. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/specs/2026-05-19-pylings-rustlings-ux-design.md +0 -0
  340. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/specs/2026-05-20-pylings-builtin-editor-design.md +0 -0
  341. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/specs/2026-05-20-pylings-hidden-checks-design.md +0 -0
  342. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/specs/2026-05-20-pylings-topics-and-curriculum-design.md +0 -0
  343. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/specs/2026-05-22-pylings-interaction-model-upgrade-design.md +0 -0
  344. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/specs/2026-05-23-pylings-roadmap-curriculum-completion-design.md +0 -0
  345. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/specs/2026-05-26-pylings-docs-site-design.md +0 -0
  346. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs/superpowers/specs/2026-06-02-gap-audit-design.md +0 -0
  347. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs-site/CNAME +0 -0
  348. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs-site/contributing.md +0 -0
  349. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs-site/curriculum.md +0 -0
  350. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs-site/index.md +0 -0
  351. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs-site/interface.md +0 -0
  352. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs-site/local-docs.md +0 -0
  353. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs-site/quick-start.md +0 -0
  354. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs-site/roadmap.md +0 -0
  355. {pythonlings-0.3.1 → pythonlings-0.4.0}/docs-site/robots.txt +0 -0
  356. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/async/async1.py +0 -0
  357. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/async/async10.py +0 -0
  358. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/async/async2.py +0 -0
  359. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/async/async3.py +0 -0
  360. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/async/async4.py +0 -0
  361. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/async/async5.py +0 -0
  362. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/async/async6.py +0 -0
  363. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/async/async7.py +0 -0
  364. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/async/async8.py +0 -0
  365. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/async/async9.py +0 -0
  366. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/classes/classes1.py +0 -0
  367. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/classes/classes10.py +0 -0
  368. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/classes/classes11.py +0 -0
  369. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/classes/classes12.py +0 -0
  370. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/classes/classes2.py +0 -0
  371. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/classes/classes3.py +0 -0
  372. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/classes/classes4.py +0 -0
  373. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/classes/classes5.py +0 -0
  374. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/classes/classes6.py +0 -0
  375. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/classes/classes7.py +0 -0
  376. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/classes/classes8.py +0 -0
  377. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/classes/classes9.py +0 -0
  378. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/collections/collections1.py +0 -0
  379. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/collections/collections10.py +0 -0
  380. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/collections/collections2.py +0 -0
  381. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/collections/collections3.py +0 -0
  382. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/collections/collections4.py +0 -0
  383. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/collections/collections5.py +0 -0
  384. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/collections/collections6.py +0 -0
  385. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/collections/collections7.py +0 -0
  386. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/collections/collections8.py +0 -0
  387. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/collections/collections9.py +0 -0
  388. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/comprehensions/comprehensions1.py +0 -0
  389. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/comprehensions/comprehensions10.py +0 -0
  390. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/comprehensions/comprehensions2.py +0 -0
  391. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/comprehensions/comprehensions3.py +0 -0
  392. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/comprehensions/comprehensions4.py +0 -0
  393. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/comprehensions/comprehensions5.py +0 -0
  394. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/comprehensions/comprehensions6.py +0 -0
  395. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/comprehensions/comprehensions7.py +0 -0
  396. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/comprehensions/comprehensions8.py +0 -0
  397. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/comprehensions/comprehensions9.py +0 -0
  398. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/conditionals/conditionals1.py +0 -0
  399. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/conditionals/conditionals10.py +0 -0
  400. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/conditionals/conditionals2.py +0 -0
  401. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/conditionals/conditionals3.py +0 -0
  402. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/conditionals/conditionals4.py +0 -0
  403. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/conditionals/conditionals5.py +0 -0
  404. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/conditionals/conditionals6.py +0 -0
  405. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/conditionals/conditionals7.py +0 -0
  406. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/conditionals/conditionals8.py +0 -0
  407. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/conditionals/conditionals9.py +0 -0
  408. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/context_managers/context_managers1.py +0 -0
  409. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/context_managers/context_managers2.py +0 -0
  410. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/context_managers/context_managers3.py +0 -0
  411. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/context_managers/context_managers4.py +0 -0
  412. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/context_managers/context_managers5.py +0 -0
  413. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/context_managers/context_managers6.py +0 -0
  414. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/context_managers/context_managers7.py +0 -0
  415. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/context_managers/context_managers8.py +0 -0
  416. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dataclasses/dataclasses1.py +0 -0
  417. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dataclasses/dataclasses2.py +0 -0
  418. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dataclasses/dataclasses3.py +0 -0
  419. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dataclasses/dataclasses4.py +0 -0
  420. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dataclasses/dataclasses5.py +0 -0
  421. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dataclasses/dataclasses6.py +0 -0
  422. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dataclasses/dataclasses7.py +0 -0
  423. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dataclasses/dataclasses8.py +0 -0
  424. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/datetime/datetime1.py +0 -0
  425. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/datetime/datetime2.py +0 -0
  426. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/datetime/datetime3.py +0 -0
  427. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/datetime/datetime4.py +0 -0
  428. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/datetime/datetime5.py +0 -0
  429. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/datetime/datetime6.py +0 -0
  430. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/datetime/datetime7.py +0 -0
  431. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/datetime/datetime8.py +0 -0
  432. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/decorators/decorators1.py +0 -0
  433. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/decorators/decorators10.py +0 -0
  434. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/decorators/decorators2.py +0 -0
  435. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/decorators/decorators3.py +0 -0
  436. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/decorators/decorators4.py +0 -0
  437. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/decorators/decorators5.py +0 -0
  438. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/decorators/decorators6.py +0 -0
  439. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/decorators/decorators7.py +0 -0
  440. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/decorators/decorators8.py +0 -0
  441. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/decorators/decorators9.py +0 -0
  442. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dictionaries/dictionaries1.py +0 -0
  443. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dictionaries/dictionaries10.py +0 -0
  444. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dictionaries/dictionaries2.py +0 -0
  445. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dictionaries/dictionaries3.py +0 -0
  446. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dictionaries/dictionaries4.py +0 -0
  447. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dictionaries/dictionaries5.py +0 -0
  448. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dictionaries/dictionaries6.py +0 -0
  449. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dictionaries/dictionaries7.py +0 -0
  450. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dictionaries/dictionaries8.py +0 -0
  451. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/dictionaries/dictionaries9.py +0 -0
  452. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/enums/enums1.py +0 -0
  453. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/enums/enums2.py +0 -0
  454. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/enums/enums3.py +0 -0
  455. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/enums/enums4.py +0 -0
  456. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/enums/enums5.py +0 -0
  457. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/enums/enums6.py +0 -0
  458. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/exceptions/exceptions1.py +0 -0
  459. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/exceptions/exceptions10.py +0 -0
  460. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/exceptions/exceptions2.py +0 -0
  461. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/exceptions/exceptions3.py +0 -0
  462. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/exceptions/exceptions4.py +0 -0
  463. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/exceptions/exceptions5.py +0 -0
  464. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/exceptions/exceptions6.py +0 -0
  465. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/exceptions/exceptions7.py +0 -0
  466. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/exceptions/exceptions8.py +0 -0
  467. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/exceptions/exceptions9.py +0 -0
  468. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/file_io/file_io1.py +0 -0
  469. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/file_io/file_io10.py +0 -0
  470. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/file_io/file_io2.py +0 -0
  471. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/file_io/file_io3.py +0 -0
  472. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/file_io/file_io4.py +0 -0
  473. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/file_io/file_io5.py +0 -0
  474. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/file_io/file_io6.py +0 -0
  475. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/file_io/file_io7.py +0 -0
  476. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/file_io/file_io8.py +0 -0
  477. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/file_io/file_io9.py +0 -0
  478. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functional/functional1.py +0 -0
  479. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functional/functional10.py +0 -0
  480. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functional/functional2.py +0 -0
  481. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functional/functional3.py +0 -0
  482. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functional/functional4.py +0 -0
  483. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functional/functional5.py +0 -0
  484. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functional/functional6.py +0 -0
  485. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functional/functional7.py +0 -0
  486. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functional/functional8.py +0 -0
  487. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functional/functional9.py +0 -0
  488. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functions/functions1.py +0 -0
  489. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functions/functions10.py +0 -0
  490. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functions/functions2.py +0 -0
  491. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functions/functions3.py +0 -0
  492. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functions/functions4.py +0 -0
  493. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functions/functions5.py +0 -0
  494. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functions/functions6.py +0 -0
  495. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functions/functions7.py +0 -0
  496. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functions/functions8.py +0 -0
  497. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/functions/functions9.py +0 -0
  498. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/generators/generators1.py +0 -0
  499. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/generators/generators10.py +0 -0
  500. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/generators/generators2.py +0 -0
  501. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/generators/generators3.py +0 -0
  502. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/generators/generators4.py +0 -0
  503. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/generators/generators5.py +0 -0
  504. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/generators/generators6.py +0 -0
  505. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/generators/generators7.py +0 -0
  506. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/generators/generators8.py +0 -0
  507. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/generators/generators9.py +0 -0
  508. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/itertools/itertools1.py +0 -0
  509. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/itertools/itertools2.py +0 -0
  510. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/itertools/itertools3.py +0 -0
  511. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/itertools/itertools4.py +0 -0
  512. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/itertools/itertools5.py +0 -0
  513. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/itertools/itertools6.py +0 -0
  514. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/itertools/itertools7.py +0 -0
  515. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/itertools/itertools8.py +0 -0
  516. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/json/json1.py +0 -0
  517. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/json/json2.py +0 -0
  518. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/json/json3.py +0 -0
  519. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/json/json4.py +0 -0
  520. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/json/json5.py +0 -0
  521. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/json/json6.py +0 -0
  522. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/json/json7.py +0 -0
  523. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/json/json8.py +0 -0
  524. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/lists/lists1.py +0 -0
  525. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/lists/lists10.py +0 -0
  526. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/lists/lists2.py +0 -0
  527. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/lists/lists3.py +0 -0
  528. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/lists/lists4.py +0 -0
  529. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/lists/lists5.py +0 -0
  530. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/lists/lists6.py +0 -0
  531. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/lists/lists7.py +0 -0
  532. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/lists/lists8.py +0 -0
  533. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/lists/lists9.py +0 -0
  534. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/loops/loops1.py +0 -0
  535. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/loops/loops10.py +0 -0
  536. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/loops/loops2.py +0 -0
  537. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/loops/loops3.py +0 -0
  538. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/loops/loops4.py +0 -0
  539. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/loops/loops5.py +0 -0
  540. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/loops/loops6.py +0 -0
  541. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/loops/loops7.py +0 -0
  542. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/loops/loops8.py +0 -0
  543. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/loops/loops9.py +0 -0
  544. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/modules/modules1.py +0 -0
  545. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/modules/modules2.py +0 -0
  546. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/modules/modules3.py +0 -0
  547. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/modules/modules4.py +0 -0
  548. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/modules/modules5.py +0 -0
  549. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/modules/modules6.py +0 -0
  550. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/modules/modules7.py +0 -0
  551. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/modules/modules8.py +0 -0
  552. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/oop_advanced/oop_advanced1.py +0 -0
  553. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/oop_advanced/oop_advanced10.py +0 -0
  554. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/oop_advanced/oop_advanced11.py +0 -0
  555. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/oop_advanced/oop_advanced12.py +0 -0
  556. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/oop_advanced/oop_advanced2.py +0 -0
  557. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/oop_advanced/oop_advanced3.py +0 -0
  558. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/oop_advanced/oop_advanced4.py +0 -0
  559. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/oop_advanced/oop_advanced5.py +0 -0
  560. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/oop_advanced/oop_advanced6.py +0 -0
  561. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/oop_advanced/oop_advanced7.py +0 -0
  562. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/oop_advanced/oop_advanced8.py +0 -0
  563. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/oop_advanced/oop_advanced9.py +0 -0
  564. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/pathlib/pathlib1.py +0 -0
  565. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/pathlib/pathlib2.py +0 -0
  566. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/pathlib/pathlib3.py +0 -0
  567. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/pathlib/pathlib4.py +0 -0
  568. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/pathlib/pathlib5.py +0 -0
  569. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/pathlib/pathlib6.py +0 -0
  570. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/recursion/recursion1.py +0 -0
  571. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/recursion/recursion2.py +0 -0
  572. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/recursion/recursion3.py +0 -0
  573. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/recursion/recursion4.py +0 -0
  574. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/recursion/recursion5.py +0 -0
  575. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/recursion/recursion6.py +0 -0
  576. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/recursion/recursion7.py +0 -0
  577. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/recursion/recursion8.py +0 -0
  578. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/regex/regex1.py +0 -0
  579. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/regex/regex10.py +0 -0
  580. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/regex/regex2.py +0 -0
  581. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/regex/regex3.py +0 -0
  582. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/regex/regex4.py +0 -0
  583. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/regex/regex5.py +0 -0
  584. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/regex/regex6.py +0 -0
  585. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/regex/regex7.py +0 -0
  586. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/regex/regex8.py +0 -0
  587. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/regex/regex9.py +0 -0
  588. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/sets/sets1.py +0 -0
  589. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/sets/sets10.py +0 -0
  590. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/sets/sets2.py +0 -0
  591. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/sets/sets3.py +0 -0
  592. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/sets/sets4.py +0 -0
  593. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/sets/sets5.py +0 -0
  594. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/sets/sets6.py +0 -0
  595. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/sets/sets7.py +0 -0
  596. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/sets/sets8.py +0 -0
  597. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/sets/sets9.py +0 -0
  598. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/strings/strings1.py +0 -0
  599. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/strings/strings10.py +0 -0
  600. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/strings/strings2.py +0 -0
  601. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/strings/strings3.py +0 -0
  602. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/strings/strings4.py +0 -0
  603. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/strings/strings5.py +0 -0
  604. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/strings/strings6.py +0 -0
  605. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/strings/strings7.py +0 -0
  606. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/strings/strings8.py +0 -0
  607. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/strings/strings9.py +0 -0
  608. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/testing/testing1.py +0 -0
  609. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/testing/testing10.py +0 -0
  610. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/testing/testing11.py +0 -0
  611. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/testing/testing12.py +0 -0
  612. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/testing/testing2.py +0 -0
  613. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/testing/testing3.py +0 -0
  614. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/testing/testing4.py +0 -0
  615. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/testing/testing5.py +0 -0
  616. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/testing/testing6.py +0 -0
  617. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/testing/testing7.py +0 -0
  618. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/testing/testing8.py +0 -0
  619. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/testing/testing9.py +0 -0
  620. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/tuples/tuples1.py +0 -0
  621. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/tuples/tuples10.py +0 -0
  622. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/tuples/tuples2.py +0 -0
  623. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/tuples/tuples3.py +0 -0
  624. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/tuples/tuples4.py +0 -0
  625. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/tuples/tuples5.py +0 -0
  626. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/tuples/tuples6.py +0 -0
  627. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/tuples/tuples7.py +0 -0
  628. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/tuples/tuples8.py +0 -0
  629. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/tuples/tuples9.py +0 -0
  630. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/type_hints/type_hints1.py +0 -0
  631. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/type_hints/type_hints2.py +0 -0
  632. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/type_hints/type_hints3.py +0 -0
  633. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/type_hints/type_hints4.py +0 -0
  634. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/type_hints/type_hints5.py +0 -0
  635. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/type_hints/type_hints6.py +0 -0
  636. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/type_hints/type_hints7.py +0 -0
  637. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/type_hints/type_hints8.py +0 -0
  638. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/variables/variables1.py +0 -0
  639. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/variables/variables10.py +0 -0
  640. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/variables/variables2.py +0 -0
  641. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/variables/variables3.py +0 -0
  642. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/variables/variables4.py +0 -0
  643. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/variables/variables5.py +0 -0
  644. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/variables/variables6.py +0 -0
  645. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/variables/variables7.py +0 -0
  646. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/variables/variables8.py +0 -0
  647. {pythonlings-0.3.1 → pythonlings-0.4.0}/exercises/variables/variables9.py +0 -0
  648. {pythonlings-0.3.1 → pythonlings-0.4.0}/info.toml +0 -0
  649. {pythonlings-0.3.1 → pythonlings-0.4.0}/mkdocs.yml +0 -0
  650. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/__init__.py +0 -0
  651. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/__main__.py +0 -0
  652. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/app.py +0 -0
  653. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/core/__init__.py +0 -0
  654. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/core/docs.py +0 -0
  655. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/core/exercise.py +0 -0
  656. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/core/reset.py +0 -0
  657. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/core/runner.py +0 -0
  658. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/core/solutions.py +0 -0
  659. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/core/state.py +0 -0
  660. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/NOTICE.md +0 -0
  661. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/__init__.py +0 -0
  662. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/index.json +0 -0
  663. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/__init__.py +0 -0
  664. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/async.md +0 -0
  665. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/classes.md +0 -0
  666. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/collections.md +0 -0
  667. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/comprehensions.md +0 -0
  668. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/conditionals.md +0 -0
  669. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/context_managers.md +0 -0
  670. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/dataclasses.md +0 -0
  671. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/datetime.md +0 -0
  672. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/decorators.md +0 -0
  673. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/dictionaries.md +0 -0
  674. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/enums.md +0 -0
  675. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/exceptions.md +0 -0
  676. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/file_io.md +0 -0
  677. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/functional.md +0 -0
  678. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/functions.md +0 -0
  679. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/generators.md +0 -0
  680. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/itertools.md +0 -0
  681. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/json.md +0 -0
  682. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/lists.md +0 -0
  683. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/loops.md +0 -0
  684. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/modules.md +0 -0
  685. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/oop_advanced.md +0 -0
  686. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/pathlib.md +0 -0
  687. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/recursion.md +0 -0
  688. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/regex.md +0 -0
  689. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/sets.md +0 -0
  690. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/strings.md +0 -0
  691. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/testing.md +0 -0
  692. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/tuples.md +0 -0
  693. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/type_hints.md +0 -0
  694. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/docs/topics/variables.md +0 -0
  695. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/pythonlings.tcss +0 -0
  696. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/screens/__init__.py +0 -0
  697. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/screens/docs.py +0 -0
  698. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/screens/topic_picker.py +0 -0
  699. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/screens/track.py +0 -0
  700. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/widgets/__init__.py +0 -0
  701. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/widgets/editor_pane.py +0 -0
  702. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/widgets/exercise_tree.py +0 -0
  703. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/widgets/output_panel.py +0 -0
  704. {pythonlings-0.3.1 → pythonlings-0.4.0}/pythonlings/widgets/progress.py +0 -0
  705. {pythonlings-0.3.1 → pythonlings-0.4.0}/requirements-docs.txt +0 -0
  706. {pythonlings-0.3.1 → pythonlings-0.4.0}/scripts/fetch_python_docs.py +0 -0
  707. {pythonlings-0.3.1 → pythonlings-0.4.0}/scripts/generate_demo_gif.sh +0 -0
  708. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/.keep +0 -0
  709. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/_answers.py +0 -0
  710. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/async1.py +0 -0
  711. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/async10.py +0 -0
  712. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/async2.py +0 -0
  713. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/async3.py +0 -0
  714. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/async4.py +0 -0
  715. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/async5.py +0 -0
  716. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/async6.py +0 -0
  717. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/async7.py +0 -0
  718. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/async8.py +0 -0
  719. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/async9.py +0 -0
  720. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/classes1.py +0 -0
  721. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/classes10.py +0 -0
  722. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/classes11.py +0 -0
  723. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/classes12.py +0 -0
  724. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/classes2.py +0 -0
  725. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/classes3.py +0 -0
  726. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/classes4.py +0 -0
  727. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/classes5.py +0 -0
  728. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/classes6.py +0 -0
  729. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/classes7.py +0 -0
  730. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/classes8.py +0 -0
  731. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/classes9.py +0 -0
  732. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/collections1.py +0 -0
  733. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/collections10.py +0 -0
  734. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/collections2.py +0 -0
  735. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/collections3.py +0 -0
  736. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/collections4.py +0 -0
  737. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/collections5.py +0 -0
  738. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/collections6.py +0 -0
  739. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/collections7.py +0 -0
  740. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/collections8.py +0 -0
  741. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/collections9.py +0 -0
  742. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/comprehensions1.py +0 -0
  743. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/comprehensions10.py +0 -0
  744. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/comprehensions2.py +0 -0
  745. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/comprehensions3.py +0 -0
  746. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/comprehensions4.py +0 -0
  747. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/comprehensions5.py +0 -0
  748. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/comprehensions6.py +0 -0
  749. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/comprehensions7.py +0 -0
  750. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/comprehensions8.py +0 -0
  751. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/comprehensions9.py +0 -0
  752. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/conditionals1.py +0 -0
  753. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/conditionals10.py +0 -0
  754. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/conditionals2.py +0 -0
  755. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/conditionals3.py +0 -0
  756. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/conditionals4.py +0 -0
  757. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/conditionals5.py +0 -0
  758. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/conditionals6.py +0 -0
  759. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/conditionals7.py +0 -0
  760. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/conditionals8.py +0 -0
  761. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/conditionals9.py +0 -0
  762. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/context_managers1.py +0 -0
  763. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/context_managers2.py +0 -0
  764. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/context_managers3.py +0 -0
  765. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/context_managers4.py +0 -0
  766. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/context_managers5.py +0 -0
  767. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/context_managers6.py +0 -0
  768. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/context_managers7.py +0 -0
  769. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/context_managers8.py +0 -0
  770. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dataclasses1.py +0 -0
  771. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dataclasses2.py +0 -0
  772. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dataclasses3.py +0 -0
  773. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dataclasses4.py +0 -0
  774. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dataclasses5.py +0 -0
  775. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dataclasses6.py +0 -0
  776. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dataclasses7.py +0 -0
  777. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dataclasses8.py +0 -0
  778. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/datetime1.py +0 -0
  779. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/datetime2.py +0 -0
  780. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/datetime3.py +0 -0
  781. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/datetime4.py +0 -0
  782. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/datetime5.py +0 -0
  783. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/datetime6.py +0 -0
  784. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/datetime7.py +0 -0
  785. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/datetime8.py +0 -0
  786. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/decorators1.py +0 -0
  787. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/decorators10.py +0 -0
  788. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/decorators2.py +0 -0
  789. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/decorators3.py +0 -0
  790. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/decorators4.py +0 -0
  791. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/decorators5.py +0 -0
  792. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/decorators6.py +0 -0
  793. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/decorators7.py +0 -0
  794. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/decorators8.py +0 -0
  795. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/decorators9.py +0 -0
  796. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dictionaries1.py +0 -0
  797. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dictionaries10.py +0 -0
  798. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dictionaries2.py +0 -0
  799. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dictionaries3.py +0 -0
  800. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dictionaries4.py +0 -0
  801. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dictionaries5.py +0 -0
  802. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dictionaries6.py +0 -0
  803. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dictionaries7.py +0 -0
  804. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dictionaries8.py +0 -0
  805. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/dictionaries9.py +0 -0
  806. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/enums1.py +0 -0
  807. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/enums2.py +0 -0
  808. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/enums3.py +0 -0
  809. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/enums4.py +0 -0
  810. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/enums5.py +0 -0
  811. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/enums6.py +0 -0
  812. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/exceptions1.py +0 -0
  813. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/exceptions10.py +0 -0
  814. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/exceptions2.py +0 -0
  815. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/exceptions3.py +0 -0
  816. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/exceptions4.py +0 -0
  817. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/exceptions5.py +0 -0
  818. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/exceptions6.py +0 -0
  819. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/exceptions7.py +0 -0
  820. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/exceptions8.py +0 -0
  821. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/exceptions9.py +0 -0
  822. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/file_io1.py +0 -0
  823. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/file_io10.py +0 -0
  824. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/file_io2.py +0 -0
  825. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/file_io3.py +0 -0
  826. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/file_io4.py +0 -0
  827. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/file_io5.py +0 -0
  828. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/file_io6.py +0 -0
  829. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/file_io7.py +0 -0
  830. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/file_io8.py +0 -0
  831. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/file_io9.py +0 -0
  832. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functional1.py +0 -0
  833. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functional10.py +0 -0
  834. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functional2.py +0 -0
  835. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functional3.py +0 -0
  836. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functional4.py +0 -0
  837. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functional5.py +0 -0
  838. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functional6.py +0 -0
  839. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functional7.py +0 -0
  840. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functional8.py +0 -0
  841. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functional9.py +0 -0
  842. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functions1.py +0 -0
  843. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functions10.py +0 -0
  844. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functions2.py +0 -0
  845. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functions3.py +0 -0
  846. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functions4.py +0 -0
  847. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functions5.py +0 -0
  848. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functions6.py +0 -0
  849. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functions7.py +0 -0
  850. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functions8.py +0 -0
  851. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/functions9.py +0 -0
  852. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/generators1.py +0 -0
  853. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/generators10.py +0 -0
  854. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/generators2.py +0 -0
  855. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/generators3.py +0 -0
  856. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/generators4.py +0 -0
  857. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/generators5.py +0 -0
  858. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/generators6.py +0 -0
  859. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/generators7.py +0 -0
  860. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/generators8.py +0 -0
  861. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/generators9.py +0 -0
  862. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/itertools1.py +0 -0
  863. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/itertools2.py +0 -0
  864. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/itertools3.py +0 -0
  865. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/itertools4.py +0 -0
  866. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/itertools5.py +0 -0
  867. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/itertools6.py +0 -0
  868. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/itertools7.py +0 -0
  869. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/itertools8.py +0 -0
  870. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/json1.py +0 -0
  871. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/json2.py +0 -0
  872. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/json3.py +0 -0
  873. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/json4.py +0 -0
  874. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/json5.py +0 -0
  875. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/json6.py +0 -0
  876. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/json7.py +0 -0
  877. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/json8.py +0 -0
  878. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/lists1.py +0 -0
  879. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/lists10.py +0 -0
  880. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/lists2.py +0 -0
  881. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/lists3.py +0 -0
  882. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/lists4.py +0 -0
  883. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/lists5.py +0 -0
  884. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/lists6.py +0 -0
  885. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/lists7.py +0 -0
  886. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/lists8.py +0 -0
  887. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/lists9.py +0 -0
  888. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/loops1.py +0 -0
  889. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/loops10.py +0 -0
  890. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/loops2.py +0 -0
  891. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/loops3.py +0 -0
  892. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/loops4.py +0 -0
  893. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/loops5.py +0 -0
  894. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/loops6.py +0 -0
  895. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/loops7.py +0 -0
  896. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/loops8.py +0 -0
  897. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/loops9.py +0 -0
  898. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/modules1.py +0 -0
  899. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/modules2.py +0 -0
  900. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/modules3.py +0 -0
  901. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/modules4.py +0 -0
  902. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/modules5.py +0 -0
  903. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/modules6.py +0 -0
  904. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/modules7.py +0 -0
  905. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/modules8.py +0 -0
  906. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/oop_advanced1.py +0 -0
  907. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/oop_advanced10.py +0 -0
  908. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/oop_advanced11.py +0 -0
  909. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/oop_advanced12.py +0 -0
  910. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/oop_advanced2.py +0 -0
  911. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/oop_advanced3.py +0 -0
  912. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/oop_advanced4.py +0 -0
  913. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/oop_advanced5.py +0 -0
  914. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/oop_advanced6.py +0 -0
  915. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/oop_advanced7.py +0 -0
  916. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/oop_advanced8.py +0 -0
  917. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/oop_advanced9.py +0 -0
  918. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/pathlib1.py +0 -0
  919. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/pathlib2.py +0 -0
  920. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/pathlib3.py +0 -0
  921. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/pathlib4.py +0 -0
  922. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/pathlib5.py +0 -0
  923. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/pathlib6.py +0 -0
  924. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/recursion1.py +0 -0
  925. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/recursion2.py +0 -0
  926. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/recursion3.py +0 -0
  927. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/recursion4.py +0 -0
  928. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/recursion5.py +0 -0
  929. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/recursion6.py +0 -0
  930. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/recursion7.py +0 -0
  931. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/recursion8.py +0 -0
  932. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/regex1.py +0 -0
  933. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/regex10.py +0 -0
  934. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/regex2.py +0 -0
  935. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/regex3.py +0 -0
  936. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/regex4.py +0 -0
  937. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/regex5.py +0 -0
  938. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/regex6.py +0 -0
  939. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/regex7.py +0 -0
  940. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/regex8.py +0 -0
  941. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/regex9.py +0 -0
  942. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/sets1.py +0 -0
  943. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/sets10.py +0 -0
  944. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/sets2.py +0 -0
  945. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/sets3.py +0 -0
  946. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/sets4.py +0 -0
  947. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/sets5.py +0 -0
  948. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/sets6.py +0 -0
  949. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/sets7.py +0 -0
  950. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/sets8.py +0 -0
  951. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/sets9.py +0 -0
  952. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/strings1.py +0 -0
  953. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/strings10.py +0 -0
  954. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/strings2.py +0 -0
  955. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/strings3.py +0 -0
  956. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/strings4.py +0 -0
  957. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/strings5.py +0 -0
  958. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/strings6.py +0 -0
  959. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/strings7.py +0 -0
  960. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/strings8.py +0 -0
  961. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/strings9.py +0 -0
  962. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/testing1.py +0 -0
  963. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/testing10.py +0 -0
  964. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/testing11.py +0 -0
  965. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/testing12.py +0 -0
  966. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/testing2.py +0 -0
  967. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/testing3.py +0 -0
  968. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/testing4.py +0 -0
  969. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/testing5.py +0 -0
  970. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/testing6.py +0 -0
  971. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/testing7.py +0 -0
  972. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/testing8.py +0 -0
  973. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/testing9.py +0 -0
  974. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/tuples1.py +0 -0
  975. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/tuples10.py +0 -0
  976. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/tuples2.py +0 -0
  977. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/tuples3.py +0 -0
  978. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/tuples4.py +0 -0
  979. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/tuples5.py +0 -0
  980. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/tuples6.py +0 -0
  981. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/tuples7.py +0 -0
  982. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/tuples8.py +0 -0
  983. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/tuples9.py +0 -0
  984. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/type_hints1.py +0 -0
  985. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/type_hints2.py +0 -0
  986. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/type_hints3.py +0 -0
  987. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/type_hints4.py +0 -0
  988. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/type_hints5.py +0 -0
  989. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/type_hints6.py +0 -0
  990. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/type_hints7.py +0 -0
  991. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/type_hints8.py +0 -0
  992. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/variables1.py +0 -0
  993. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/variables10.py +0 -0
  994. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/variables2.py +0 -0
  995. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/variables3.py +0 -0
  996. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/variables4.py +0 -0
  997. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/variables5.py +0 -0
  998. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/variables6.py +0 -0
  999. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/variables7.py +0 -0
  1000. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/variables8.py +0 -0
  1001. {pythonlings-0.3.1 → pythonlings-0.4.0}/solutions/variables9.py +0 -0
  1002. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/__init__.py +0 -0
  1003. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/multi_topic/checks/alpha/a1.py +0 -0
  1004. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/multi_topic/checks/alpha/a2.py +0 -0
  1005. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/multi_topic/checks/beta/b1.py +0 -0
  1006. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/multi_topic/exercises/alpha/a1.py +0 -0
  1007. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/multi_topic/exercises/alpha/a2.py +0 -0
  1008. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/multi_topic/exercises/beta/b1.py +0 -0
  1009. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/multi_topic/info.toml +0 -0
  1010. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/passing_curriculum/checks/passing1.py +0 -0
  1011. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/passing_curriculum/checks/passing2.py +0 -0
  1012. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/passing_curriculum/exercises/passing1.py +0 -0
  1013. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/passing_curriculum/exercises/passing2.py +0 -0
  1014. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/passing_curriculum/info.toml +0 -0
  1015. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/tiny_curriculum/checks/asserts.py +0 -0
  1016. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/tiny_curriculum/checks/passing.py +0 -0
  1017. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/tiny_curriculum/checks/pending.py +0 -0
  1018. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/tiny_curriculum/checks/syntax.py +0 -0
  1019. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/tiny_curriculum/exercises/asserts.py +0 -0
  1020. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/tiny_curriculum/exercises/passing.py +0 -0
  1021. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/tiny_curriculum/exercises/pending.py +0 -0
  1022. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/tiny_curriculum/exercises/syntax.py +0 -0
  1023. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/fixtures/tiny_curriculum/info.toml +0 -0
  1024. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/integration/__init__.py +0 -0
  1025. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/integration/test_cli_cold_start.py +0 -0
  1026. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/integration/test_cli_dry_run.py +0 -0
  1027. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/integration/test_cli_hint.py +0 -0
  1028. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/integration/test_cli_reset.py +0 -0
  1029. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/integration/test_cli_run.py +0 -0
  1030. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/integration/test_cli_solution.py +0 -0
  1031. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/integration/test_cli_topics.py +0 -0
  1032. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/integration/test_cli_verify.py +0 -0
  1033. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/integration/test_installed_package.py +0 -0
  1034. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/integration/test_solution_verify.py +0 -0
  1035. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/tui/__init__.py +0 -0
  1036. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/tui/test_app_pilot.py +0 -0
  1037. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/tui/test_editor_pane.py +0 -0
  1038. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/tui/test_output_panel.py +0 -0
  1039. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/unit/__init__.py +0 -0
  1040. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/unit/test_docs.py +0 -0
  1041. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/unit/test_exercise.py +0 -0
  1042. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/unit/test_manifest.py +0 -0
  1043. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/unit/test_reset.py +0 -0
  1044. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/unit/test_runner.py +0 -0
  1045. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/unit/test_solution_coverage.py +0 -0
  1046. {pythonlings-0.3.1 → pythonlings-0.4.0}/tests/unit/test_state.py +0 -0
@@ -3,6 +3,26 @@
3
3
  All notable changes to this project are documented here. Pythonlings follows
4
4
  Semantic Versioning.
5
5
 
6
+ ## [0.4.0] - 2026-06-20
7
+
8
+ ### Added
9
+
10
+ - Zero-config first run: `pythonlings` with no workspace creates one at
11
+ `~/.pythonlings` and opens the first exercise — no `init`, no `--path`, no
12
+ `cd` required.
13
+ - `PYTHONLINGS_HOME` environment variable to point the default workspace
14
+ somewhere else.
15
+
16
+ ### Changed
17
+
18
+ - `pythonlings init` with no `--path` now targets `~/.pythonlings` instead of
19
+ the current directory, so it can no longer fail by landing in a folder full
20
+ of unrelated files.
21
+ - `init` is now idempotent on an existing workspace (a friendly note instead of
22
+ an error), and its non-empty-directory error explains how to proceed.
23
+ - Every command resolves its workspace the same way: an explicit `--root`, then
24
+ the current directory if it is a workspace, then `~/.pythonlings`.
25
+
6
26
  ## [0.3.1] - 2026-06-20
7
27
 
8
28
  ### Fixed
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pythonlings
3
- Version: 0.3.1
3
+ Version: 0.4.0
4
4
  Summary: Python learnings, Rustlings-style, in a terminal TUI.
5
5
  Project-URL: Homepage, https://github.com/abhiksark/pythonlings
6
6
  Project-URL: Repository, https://github.com/abhiksark/pythonlings
@@ -55,14 +55,13 @@ Python documentation snippets so learners can work without leaving the terminal.
55
55
  and [uv](https://docs.astral.sh/uv/):
56
56
 
57
57
  ```bash
58
- uvx pythonlings init --path ./learn-python
59
- cd learn-python && uvx pythonlings
58
+ uvx pythonlings
60
59
  ```
61
60
 
62
61
  How it works: **edit** the broken exercise in the built-in editor → checks
63
62
  rerun as you type and advance you to the next one. That's the whole loop.
64
63
 
65
- Status: `v0.3.1`, alpha — published on PyPI as `pythonlings`.
64
+ Status: `v0.4.0`, alpha — published on PyPI as `pythonlings`.
66
65
 
67
66
  ![Coding screen](docs/assets/screenshots/coding-screen.png)
68
67
 
@@ -84,8 +83,9 @@ Status: `v0.3.1`, alpha — published on PyPI as `pythonlings`.
84
83
 
85
84
  ## What Happens When You Run It
86
85
 
87
- 1. `pythonlings init` creates a self-contained learner workspace with exercises,
88
- hidden checks, local docs, and original snapshots for reset.
86
+ 1. `pythonlings` with no workspace creates a self-contained one at
87
+ `~/.pythonlings` (override with `PYTHONLINGS_HOME` or `pythonlings init
88
+ --path <dir>`) and opens the first exercise.
89
89
  2. `pythonlings` opens the first pending exercise in the terminal UI.
90
90
  3. You edit the broken code, remove `# I AM NOT DONE`, and checks rerun as you
91
91
  work.
@@ -20,14 +20,13 @@ Python documentation snippets so learners can work without leaving the terminal.
20
20
  and [uv](https://docs.astral.sh/uv/):
21
21
 
22
22
  ```bash
23
- uvx pythonlings init --path ./learn-python
24
- cd learn-python && uvx pythonlings
23
+ uvx pythonlings
25
24
  ```
26
25
 
27
26
  How it works: **edit** the broken exercise in the built-in editor → checks
28
27
  rerun as you type and advance you to the next one. That's the whole loop.
29
28
 
30
- Status: `v0.3.1`, alpha — published on PyPI as `pythonlings`.
29
+ Status: `v0.4.0`, alpha — published on PyPI as `pythonlings`.
31
30
 
32
31
  ![Coding screen](docs/assets/screenshots/coding-screen.png)
33
32
 
@@ -49,8 +48,9 @@ Status: `v0.3.1`, alpha — published on PyPI as `pythonlings`.
49
48
 
50
49
  ## What Happens When You Run It
51
50
 
52
- 1. `pythonlings init` creates a self-contained learner workspace with exercises,
53
- hidden checks, local docs, and original snapshots for reset.
51
+ 1. `pythonlings` with no workspace creates a self-contained one at
52
+ `~/.pythonlings` (override with `PYTHONLINGS_HOME` or `pythonlings init
53
+ --path <dir>`) and opens the first exercise.
54
54
  2. `pythonlings` opens the first pending exercise in the terminal UI.
55
55
  3. You edit the broken code, remove `# I AM NOT DONE`, and checks rerun as you
56
56
  work.