ipython 8.32.0__tar.gz → 9.0.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 (516) hide show
  1. {ipython-8.32.0 → ipython-9.0.0}/IPython/__init__.py +14 -38
  2. {ipython-8.32.0 → ipython-9.0.0}/IPython/__main__.py +1 -2
  3. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/alias.py +3 -2
  4. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/application.py +1 -1
  5. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/autocall.py +1 -1
  6. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/builtin_trap.py +9 -2
  7. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/compilerop.py +0 -22
  8. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/completer.py +148 -135
  9. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/crashhandler.py +1 -5
  10. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/debugger.py +243 -151
  11. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/display.py +1 -108
  12. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/display_functions.py +2 -22
  13. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/displayhook.py +2 -2
  14. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/displaypub.py +29 -9
  15. ipython-9.0.0/IPython/core/doctb.py +444 -0
  16. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/events.py +1 -1
  17. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/getipython.py +0 -1
  18. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/guarded_eval.py +25 -27
  19. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/history.py +369 -157
  20. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/hooks.py +0 -15
  21. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/inputtransformer2.py +2 -18
  22. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/interactiveshell.py +143 -177
  23. ipython-9.0.0/IPython/core/latex_symbols.py +1306 -0
  24. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/logger.py +1 -1
  25. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/macro.py +1 -1
  26. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magic.py +4 -3
  27. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magic_arguments.py +5 -5
  28. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/auto.py +2 -2
  29. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/basic.py +11 -36
  30. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/code.py +1 -1
  31. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/execution.py +99 -74
  32. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/osm.py +7 -7
  33. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/oinspect.py +51 -124
  34. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/payloadpage.py +7 -17
  35. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/pylabtools.py +0 -27
  36. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/release.py +3 -3
  37. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/shellapp.py +7 -6
  38. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/splitinput.py +1 -1
  39. ipython-9.0.0/IPython/core/tbtools.py +548 -0
  40. ipython-9.0.0/IPython/core/tips.py +118 -0
  41. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/ultratb.py +464 -759
  42. {ipython-8.32.0 → ipython-9.0.0}/IPython/display.py +1 -4
  43. {ipython-8.32.0 → ipython-9.0.0}/IPython/extensions/autoreload.py +26 -1
  44. ipython-9.0.0/IPython/extensions/deduperreload/deduperreload.py +608 -0
  45. ipython-9.0.0/IPython/extensions/deduperreload/deduperreload_patching.py +141 -0
  46. ipython-9.0.0/IPython/extensions/tests/test_deduperreload.py +2272 -0
  47. ipython-9.0.0/IPython/external/pickleshare.py +361 -0
  48. {ipython-8.32.0 → ipython-9.0.0}/IPython/external/qt_for_kernel.py +1 -1
  49. {ipython-8.32.0 → ipython-9.0.0}/IPython/lib/backgroundjobs.py +4 -4
  50. {ipython-8.32.0 → ipython-9.0.0}/IPython/lib/demo.py +2 -2
  51. {ipython-8.32.0 → ipython-9.0.0}/IPython/lib/display.py +2 -2
  52. {ipython-8.32.0 → ipython-9.0.0}/IPython/lib/latextools.py +1 -1
  53. ipython-9.0.0/IPython/lib/lexers.py +32 -0
  54. {ipython-8.32.0 → ipython-9.0.0}/IPython/lib/pretty.py +5 -12
  55. {ipython-8.32.0 → ipython-9.0.0}/IPython/paths.py +1 -4
  56. {ipython-8.32.0 → ipython-9.0.0}/IPython/sphinxext/ipython_console_highlighting.py +7 -7
  57. {ipython-8.32.0 → ipython-9.0.0}/IPython/sphinxext/ipython_directive.py +3 -3
  58. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/debugger.py +0 -6
  59. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/embed.py +20 -11
  60. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/interactiveshell.py +190 -145
  61. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/ipapp.py +14 -6
  62. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/prompts.py +22 -9
  63. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/pt_inputhooks/asyncio.py +1 -24
  64. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/pt_inputhooks/gtk3.py +1 -2
  65. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/pt_inputhooks/pyglet.py +5 -4
  66. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/pt_inputhooks/qt.py +15 -17
  67. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/pt_inputhooks/tk.py +6 -3
  68. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/pt_inputhooks/wx.py +1 -1
  69. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/ptutils.py +34 -9
  70. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/shortcuts/__init__.py +5 -7
  71. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/shortcuts/auto_suggest.py +39 -47
  72. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/decorators.py +24 -80
  73. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/ipunittest.py +3 -2
  74. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/plugin/ipdoctest.py +1 -1
  75. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/plugin/pytest_ipdoctest.py +2 -1
  76. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/plugin/simple.py +3 -2
  77. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/tools.py +12 -49
  78. ipython-9.0.0/IPython/utils/PyColorize.py +516 -0
  79. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/_process_cli.py +1 -1
  80. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/_process_common.py +15 -6
  81. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/_process_posix.py +21 -46
  82. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/_process_win32.py +88 -56
  83. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/_process_win32_controller.py +6 -5
  84. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/_sysinfo.py +1 -1
  85. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/capture.py +3 -3
  86. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/contexts.py +2 -3
  87. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/dir2.py +1 -2
  88. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/encoding.py +28 -10
  89. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/generics.py +1 -2
  90. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/importstring.py +3 -3
  91. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/io.py +2 -20
  92. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/openpy.py +1 -2
  93. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/path.py +3 -56
  94. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/py3compat.py +1 -0
  95. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/sentinel.py +2 -4
  96. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/strdispatch.py +1 -1
  97. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/sysinfo.py +0 -23
  98. ipython-9.0.0/IPython/utils/syspathcontext.py +25 -0
  99. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/tempdir.py +3 -3
  100. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/terminal.py +1 -7
  101. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/text.py +3 -239
  102. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/tokenutil.py +82 -43
  103. {ipython-8.32.0 → ipython-9.0.0}/MANIFEST.in +3 -0
  104. {ipython-8.32.0 → ipython-9.0.0}/PKG-INFO +5 -22
  105. {ipython-8.32.0 → ipython-9.0.0}/docs/autogen_api.py +0 -12
  106. {ipython-8.32.0 → ipython-9.0.0}/docs/autogen_config.py +0 -9
  107. {ipython-8.32.0 → ipython-9.0.0}/docs/autogen_shortcuts.py +3 -3
  108. {ipython-8.32.0 → ipython-9.0.0}/docs/source/conf.py +25 -72
  109. {ipython-8.32.0 → ipython-9.0.0}/docs/source/config/details.rst +159 -23
  110. {ipython-8.32.0 → ipython-9.0.0}/docs/source/config/options/index.rst +5 -7
  111. {ipython-8.32.0 → ipython-9.0.0}/docs/source/coredev/index.rst +0 -15
  112. {ipython-8.32.0 → ipython-9.0.0}/docs/source/development/index.rst +0 -1
  113. {ipython-8.32.0 → ipython-9.0.0}/docs/source/interactive/python-ipython-diff.rst +5 -7
  114. {ipython-8.32.0 → ipython-9.0.0}/docs/source/interactive/reference.rst +2 -1
  115. {ipython-8.32.0 → ipython-9.0.0}/docs/source/sphinx.toml +13 -18
  116. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/index.rst +1 -0
  117. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/version2.0.rst +1 -2
  118. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/version8.rst +7 -7
  119. ipython-9.0.0/docs/source/whatsnew/version9.rst +166 -0
  120. {ipython-8.32.0 → ipython-9.0.0}/docs/sphinxext/apigen.py +1 -1
  121. {ipython-8.32.0 → ipython-9.0.0}/docs/sphinxext/configtraits.py +2 -2
  122. {ipython-8.32.0 → ipython-9.0.0}/examples/Embedding/embed_function.py +3 -3
  123. {ipython-8.32.0 → ipython-9.0.0}/examples/IPython Kernel/ipython-get-history.py +2 -1
  124. {ipython-8.32.0 → ipython-9.0.0}/examples/auto_suggest_llm.py +50 -5
  125. {ipython-8.32.0 → ipython-9.0.0}/examples/utils/cwd_prompt.py +4 -4
  126. {ipython-8.32.0 → ipython-9.0.0}/ipython.egg-info/PKG-INFO +5 -22
  127. {ipython-8.32.0 → ipython-9.0.0}/ipython.egg-info/SOURCES.txt +95 -154
  128. ipython-9.0.0/ipython.egg-info/entry_points.txt +3 -0
  129. {ipython-8.32.0 → ipython-9.0.0}/ipython.egg-info/requires.txt +3 -31
  130. {ipython-8.32.0 → ipython-9.0.0}/pyproject.toml +122 -55
  131. {ipython-8.32.0 → ipython-9.0.0}/setup.py +2 -10
  132. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/bad_all.py +7 -3
  133. {ipython-8.32.0/IPython → ipython-9.0.0/tests}/conftest.py +16 -22
  134. {ipython-8.32.0/IPython → ipython-9.0.0}/tests/cve.py +1 -1
  135. {ipython-8.32.0/IPython/core/tests/daft_extension → ipython-9.0.0/tests/fake_ext_dir}/daft_extension.py +3 -1
  136. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/refbug.py +10 -10
  137. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/simpleerr.py +10 -6
  138. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/tclass.py +7 -6
  139. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_alias.py +14 -12
  140. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_application.py +8 -6
  141. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_async_helpers.py +185 -62
  142. {ipython-8.32.0/IPython/lib → ipython-9.0.0}/tests/test_backgroundjobs.py +20 -18
  143. {ipython-8.32.0/IPython/utils → ipython-9.0.0}/tests/test_capture.py +30 -26
  144. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_compilerop.py +18 -17
  145. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_completer.py +21 -19
  146. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_completerlib.py +43 -40
  147. {ipython-8.32.0/IPython/terminal → ipython-9.0.0}/tests/test_debug_magic.py +24 -19
  148. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_debugger.py +25 -17
  149. {ipython-8.32.0/IPython/testing → ipython-9.0.0}/tests/test_decorators.py +30 -44
  150. ipython-8.32.0/IPython/utils/tests/test_decorators.py → ipython-9.0.0/tests/test_decorators_2.py +3 -2
  151. {ipython-8.32.0/IPython/lib → ipython-9.0.0}/tests/test_display.py +71 -63
  152. ipython-8.32.0/IPython/core/tests/test_display.py → ipython-9.0.0/tests/test_display_2.py +113 -122
  153. ipython-9.0.0/tests/test_displayhook.py +116 -0
  154. {ipython-8.32.0/IPython/lib → ipython-9.0.0}/tests/test_editorhooks.py +16 -10
  155. {ipython-8.32.0/IPython/terminal → ipython-9.0.0}/tests/test_embed.py +55 -44
  156. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_events.py +27 -25
  157. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_exceptiongroup_tb.py +2 -6
  158. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_extension.py +27 -26
  159. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_formatters.py +66 -31
  160. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_guarded_eval.py +1 -4
  161. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_handlers.py +13 -9
  162. {ipython-8.32.0/IPython/terminal → ipython-9.0.0}/tests/test_help.py +6 -0
  163. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_history.py +64 -24
  164. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_hooks.py +24 -12
  165. {ipython-8.32.0/IPython/utils → ipython-9.0.0}/tests/test_importstring.py +7 -6
  166. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_inputtransformer2.py +12 -20
  167. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_inputtransformer2_line.py +98 -32
  168. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_interactiveshell.py +197 -161
  169. {ipython-8.32.0/IPython/terminal → ipython-9.0.0}/tests/test_interactivshell.py +71 -66
  170. {ipython-8.32.0/IPython/utils → ipython-9.0.0}/tests/test_io.py +8 -7
  171. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_iplib.py +51 -50
  172. {ipython-8.32.0/IPython/testing → ipython-9.0.0}/tests/test_ipunittest.py +10 -6
  173. {ipython-8.32.0/IPython/lib → ipython-9.0.0}/tests/test_latextools.py +40 -23
  174. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_logger.py +3 -2
  175. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_magic.py +220 -152
  176. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_magic_arguments.py +18 -15
  177. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_magic_terminal.py +42 -38
  178. {ipython-8.32.0/IPython/utils → ipython-9.0.0}/tests/test_module_paths.py +12 -7
  179. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_oinspect.py +72 -57
  180. {ipython-8.32.0/IPython/utils → ipython-9.0.0}/tests/test_openpy.py +1 -1
  181. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_page.py +3 -2
  182. {ipython-8.32.0/IPython/utils → ipython-9.0.0}/tests/test_path.py +68 -47
  183. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_paths.py +83 -56
  184. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_prefilter.py +21 -16
  185. {ipython-8.32.0/IPython/lib → ipython-9.0.0}/tests/test_pretty.py +129 -102
  186. {ipython-8.32.0/IPython/utils → ipython-9.0.0}/tests/test_process.py +39 -32
  187. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_profile.py +14 -13
  188. {ipython-8.32.0/IPython/utils → ipython-9.0.0}/tests/test_pycolorize.py +14 -13
  189. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_pylabtools.py +167 -148
  190. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_run.py +69 -50
  191. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_shellapp.py +5 -5
  192. {ipython-8.32.0/IPython/terminal → ipython-9.0.0}/tests/test_shortcuts.py +0 -7
  193. {ipython-8.32.0/IPython/extensions → ipython-9.0.0}/tests/test_storemagic.py +1 -0
  194. {ipython-8.32.0/IPython/utils → ipython-9.0.0}/tests/test_sysinfo.py +0 -5
  195. {ipython-8.32.0/IPython/utils → ipython-9.0.0}/tests/test_tempdir.py +5 -4
  196. ipython-9.0.0/tests/test_text.py +141 -0
  197. ipython-9.0.0/tests/test_tips.py +12 -0
  198. ipython-9.0.0/tests/test_tokenutil.py +183 -0
  199. {ipython-8.32.0/IPython/testing → ipython-9.0.0}/tests/test_tools.py +32 -37
  200. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_ultratb.py +80 -55
  201. ipython-9.0.0/tests/test_wildcard.py +264 -0
  202. ipython-8.32.0/IPython/extensions/tests/test_autoreload.py → ipython-9.0.0/tests/test_zzz_autoreload.py +1 -2
  203. ipython-8.32.0/IPython/consoleapp.py +0 -12
  204. ipython-8.32.0/IPython/core/excolors.py +0 -192
  205. ipython-8.32.0/IPython/core/inputsplitter.py +0 -799
  206. ipython-8.32.0/IPython/core/inputtransformer.py +0 -577
  207. ipython-8.32.0/IPython/core/latex_symbols.py +0 -1301
  208. ipython-8.32.0/IPython/core/prompts.py +0 -23
  209. ipython-8.32.0/IPython/core/tests/test_displayhook.py +0 -112
  210. ipython-8.32.0/IPython/core/tests/test_imports.py +0 -52
  211. ipython-8.32.0/IPython/core/tests/test_inputsplitter.py +0 -643
  212. ipython-8.32.0/IPython/core/tests/test_inputtransformer.py +0 -469
  213. ipython-8.32.0/IPython/core/tests/test_prompts.py +0 -30
  214. ipython-8.32.0/IPython/lib/lexers.py +0 -540
  215. ipython-8.32.0/IPython/lib/tests/test_lexers.py +0 -184
  216. ipython-8.32.0/IPython/lib/tests/test_pygments.py +0 -26
  217. ipython-8.32.0/IPython/terminal/__init__.py +0 -0
  218. ipython-8.32.0/IPython/terminal/console.py +0 -19
  219. ipython-8.32.0/IPython/terminal/tests/__init__.py +0 -0
  220. ipython-8.32.0/IPython/testing/plugin/README.txt +0 -34
  221. ipython-8.32.0/IPython/testing/plugin/__init__.py +0 -0
  222. ipython-8.32.0/IPython/testing/tests/__init__.py +0 -10
  223. ipython-8.32.0/IPython/utils/PyColorize.py +0 -331
  224. ipython-8.32.0/IPython/utils/__init__.py +0 -0
  225. ipython-8.32.0/IPython/utils/colorable.py +0 -25
  226. ipython-8.32.0/IPython/utils/coloransi.py +0 -246
  227. ipython-8.32.0/IPython/utils/daemonize.py +0 -4
  228. ipython-8.32.0/IPython/utils/localinterfaces.py +0 -5
  229. ipython-8.32.0/IPython/utils/shimmodule.py +0 -89
  230. ipython-8.32.0/IPython/utils/signatures.py +0 -12
  231. ipython-8.32.0/IPython/utils/syspathcontext.py +0 -71
  232. ipython-8.32.0/IPython/utils/tests/__init__.py +0 -0
  233. ipython-8.32.0/IPython/utils/tests/test_deprecated.py +0 -7
  234. ipython-8.32.0/IPython/utils/tests/test_imports.py +0 -20
  235. ipython-8.32.0/IPython/utils/tests/test_shimmodule.py +0 -12
  236. ipython-8.32.0/IPython/utils/tests/test_text.py +0 -268
  237. ipython-8.32.0/IPython/utils/tests/test_tokenutil.py +0 -141
  238. ipython-8.32.0/IPython/utils/tests/test_wildcard.py +0 -143
  239. ipython-8.32.0/IPython/utils/traitlets.py +0 -6
  240. ipython-8.32.0/IPython/utils/tz.py +0 -82
  241. ipython-8.32.0/IPython/utils/ulinecache.py +0 -21
  242. ipython-8.32.0/IPython/utils/version.py +0 -43
  243. ipython-8.32.0/docs/source/development/lexer.rst +0 -64
  244. ipython-8.32.0/docs/source/interactive/figs/besselj.png +0 -0
  245. ipython-8.32.0/docs/source/interactive/figs/colors_dark.png +0 -0
  246. ipython-8.32.0/docs/source/interactive/figs/jn.html +0 -690
  247. ipython-8.32.0/docs/source/interactive/figs/jn.xhtml +0 -375
  248. ipython-8.32.0/examples/Embedding/Index.ipynb +0 -210
  249. ipython-8.32.0/examples/IPython Kernel/Animations Using clear_output.ipynb +0 -1359
  250. ipython-8.32.0/examples/IPython Kernel/Background Jobs.ipynb +0 -404
  251. ipython-8.32.0/examples/IPython Kernel/Beyond Plain Python.ipynb +0 -2522
  252. ipython-8.32.0/examples/IPython Kernel/Capturing Output.ipynb +0 -505
  253. ipython-8.32.0/examples/IPython Kernel/Cell Magics.ipynb +0 -688
  254. ipython-8.32.0/examples/IPython Kernel/Custom Display Logic.ipynb +0 -976
  255. ipython-8.32.0/examples/IPython Kernel/Importing Notebooks.ipynb +0 -763
  256. ipython-8.32.0/examples/IPython Kernel/Index.ipynb +0 -201
  257. ipython-8.32.0/examples/IPython Kernel/Plotting in the Notebook.ipynb +0 -2837
  258. ipython-8.32.0/examples/IPython Kernel/Raw Input in the Notebook.ipynb +0 -151
  259. ipython-8.32.0/examples/IPython Kernel/Rich Output.ipynb +0 -3313
  260. ipython-8.32.0/examples/IPython Kernel/Script Magics.ipynb +0 -466
  261. ipython-8.32.0/examples/IPython Kernel/SymPy.ipynb +0 -3980
  262. ipython-8.32.0/examples/IPython Kernel/Terminal Usage.ipynb +0 -285
  263. ipython-8.32.0/examples/IPython Kernel/Third Party Rich Output.ipynb +0 -540
  264. ipython-8.32.0/examples/IPython Kernel/Trapezoid Rule.ipynb +0 -971
  265. ipython-8.32.0/examples/IPython Kernel/Updating Displays.ipynb +0 -337
  266. ipython-8.32.0/examples/IPython Kernel/Working With External Code.ipynb +0 -691
  267. ipython-8.32.0/examples/IPython Kernel/data/flare.json +0 -380
  268. ipython-8.32.0/examples/IPython Kernel/nbpackage/__init__.py +0 -0
  269. ipython-8.32.0/examples/IPython Kernel/nbpackage/mynotebook.ipynb +0 -69
  270. ipython-8.32.0/examples/IPython Kernel/nbpackage/nbs/__init__.py +0 -0
  271. ipython-8.32.0/examples/IPython Kernel/nbpackage/nbs/other.ipynb +0 -44
  272. ipython-8.32.0/examples/Index.ipynb +0 -61
  273. ipython-8.32.0/examples/images/FrontendKernel.graffle/data.plist +0 -461
  274. ipython-8.32.0/examples/images/FrontendKernel.graffle/image1.png +0 -0
  275. ipython-8.32.0/examples/images/FrontendKernel.png +0 -0
  276. ipython-8.32.0/examples/images/animation.m4v +0 -0
  277. ipython-8.32.0/examples/images/ipython_logo.png +0 -0
  278. ipython-8.32.0/examples/images/python_logo.svg +0 -269
  279. ipython-8.32.0/ipython.egg-info/entry_points.txt +0 -8
  280. {ipython-8.32.0 → ipython-9.0.0}/.flake8 +0 -0
  281. {ipython-8.32.0 → ipython-9.0.0}/.mailmap +0 -0
  282. {ipython-8.32.0 → ipython-9.0.0}/.pre-commit-config.yaml +0 -0
  283. {ipython-8.32.0 → ipython-9.0.0}/COPYING.rst +0 -0
  284. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/__init__.py +0 -0
  285. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/async_helpers.py +0 -0
  286. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/completerlib.py +0 -0
  287. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/display_trap.py +0 -0
  288. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/error.py +0 -0
  289. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/extensions.py +0 -0
  290. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/formatters.py +0 -0
  291. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/historyapp.py +0 -0
  292. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/__init__.py +0 -0
  293. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/ast_mod.py +0 -0
  294. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/config.py +0 -0
  295. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/display.py +0 -0
  296. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/extension.py +0 -0
  297. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/history.py +0 -0
  298. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/logging.py +0 -0
  299. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/namespace.py +0 -0
  300. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/packaging.py +0 -0
  301. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/pylab.py +0 -0
  302. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/magics/script.py +0 -0
  303. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/page.py +0 -0
  304. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/payload.py +0 -0
  305. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/prefilter.py +0 -0
  306. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/profile/README_STARTUP +0 -0
  307. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/profileapp.py +0 -0
  308. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/profiledir.py +0 -0
  309. {ipython-8.32.0 → ipython-9.0.0}/IPython/core/usage.py +0 -0
  310. {ipython-8.32.0 → ipython-9.0.0}/IPython/extensions/__init__.py +0 -0
  311. {ipython-8.32.0 → ipython-9.0.0}/IPython/extensions/storemagic.py +0 -0
  312. {ipython-8.32.0 → ipython-9.0.0}/IPython/external/__init__.py +0 -0
  313. {ipython-8.32.0 → ipython-9.0.0}/IPython/external/qt_loaders.py +0 -0
  314. {ipython-8.32.0 → ipython-9.0.0}/IPython/lib/__init__.py +0 -0
  315. {ipython-8.32.0 → ipython-9.0.0}/IPython/lib/clipboard.py +0 -0
  316. {ipython-8.32.0 → ipython-9.0.0}/IPython/lib/deepreload.py +0 -0
  317. {ipython-8.32.0 → ipython-9.0.0}/IPython/lib/editorhooks.py +0 -0
  318. {ipython-8.32.0 → ipython-9.0.0}/IPython/lib/guisupport.py +0 -0
  319. {ipython-8.32.0 → ipython-9.0.0}/IPython/py.typed +0 -0
  320. {ipython-8.32.0/IPython/core/tests → ipython-9.0.0/IPython/sphinxext}/__init__.py +0 -0
  321. {ipython-8.32.0 → ipython-9.0.0}/IPython/sphinxext/custom_doctests.py +0 -0
  322. {ipython-8.32.0/IPython/extensions/tests → ipython-9.0.0/IPython/terminal}/__init__.py +0 -0
  323. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/magics.py +0 -0
  324. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/pt_inputhooks/__init__.py +0 -0
  325. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/pt_inputhooks/glut.py +0 -0
  326. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/pt_inputhooks/gtk.py +0 -0
  327. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/pt_inputhooks/gtk4.py +0 -0
  328. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/pt_inputhooks/osx.py +0 -0
  329. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/shortcuts/auto_match.py +0 -0
  330. {ipython-8.32.0 → ipython-9.0.0}/IPython/terminal/shortcuts/filters.py +0 -0
  331. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/__init__.py +0 -0
  332. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/globalipapp.py +0 -0
  333. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/plugin/Makefile +0 -0
  334. {ipython-8.32.0/IPython/external/tests → ipython-9.0.0/IPython/testing/plugin}/__init__.py +0 -0
  335. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/plugin/dtexample.py +0 -0
  336. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/plugin/setup.py +0 -0
  337. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/plugin/simplevars.py +0 -0
  338. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/plugin/test_combo.txt +0 -0
  339. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/plugin/test_example.txt +0 -0
  340. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/plugin/test_exampleip.txt +0 -0
  341. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/plugin/test_ipdoctest.py +0 -0
  342. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/plugin/test_refs.py +0 -0
  343. {ipython-8.32.0 → ipython-9.0.0}/IPython/testing/skipdoctest.py +0 -0
  344. {ipython-8.32.0/IPython/lib/tests → ipython-9.0.0/IPython/utils}/__init__.py +0 -0
  345. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/_process_emscripten.py +0 -0
  346. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/data.py +0 -0
  347. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/decorators.py +0 -0
  348. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/docs.py +0 -0
  349. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/eventful.py +0 -0
  350. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/frame.py +0 -0
  351. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/ipstruct.py +0 -0
  352. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/jsonutil.py +0 -0
  353. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/log.py +0 -0
  354. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/module_paths.py +0 -0
  355. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/process.py +0 -0
  356. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/timing.py +0 -0
  357. {ipython-8.32.0 → ipython-9.0.0}/IPython/utils/wildcard.py +0 -0
  358. {ipython-8.32.0 → ipython-9.0.0}/LICENSE +0 -0
  359. {ipython-8.32.0 → ipython-9.0.0}/README.rst +0 -0
  360. {ipython-8.32.0 → ipython-9.0.0}/_build_meta.py +0 -0
  361. {ipython-8.32.0 → ipython-9.0.0}/docs/Makefile +0 -0
  362. {ipython-8.32.0 → ipython-9.0.0}/docs/README.rst +0 -0
  363. {ipython-8.32.0 → ipython-9.0.0}/docs/autogen_magics.py +0 -0
  364. {ipython-8.32.0 → ipython-9.0.0}/docs/make.cmd +0 -0
  365. {ipython-8.32.0 → ipython-9.0.0}/docs/man/ipython.1 +0 -0
  366. {ipython-8.32.0 → ipython-9.0.0}/docs/requirements.txt +0 -0
  367. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/2.0/running-crop.png +0 -0
  368. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/2.0/running.png +0 -0
  369. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/2.0/treeview.png +0 -0
  370. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/2.0/user-interface.png +0 -0
  371. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/2.0/widgets.png +0 -0
  372. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/8.0/auto_suggest_1_prompt_no_text.png +0 -0
  373. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/8.0/auto_suggest_2_print_hello_suggest.png +0 -0
  374. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/8.0/auto_suggest_3_print_hello_suggest.png +0 -0
  375. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/8.0/auto_suggest_4_print_hello.png +0 -0
  376. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/8.0/auto_suggest_d_completions.png +0 -0
  377. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/8.0/auto_suggest_d_phantom.png +0 -0
  378. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/8.0/auto_suggest_def_completions.png +0 -0
  379. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/8.0/auto_suggest_def_phantom.png +0 -0
  380. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/8.0/auto_suggest_match_parens.png +0 -0
  381. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/8.0/auto_suggest_second_prompt.png +0 -0
  382. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/8.0/pathlib_pathlib_everywhere.jpg +0 -0
  383. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/autosuggest.gif +0 -0
  384. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/ipy_013_dashboard.png +0 -0
  385. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/ipy_013_dashboard_cluster.png +0 -0
  386. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/ipy_013_notebook_cythonmagic.png +0 -0
  387. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/ipy_013_notebook_long_out.png +0 -0
  388. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/ipy_013_notebook_octavemagic.png +0 -0
  389. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/ipy_013_notebook_rmagic.png +0 -0
  390. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/ipy_013_notebook_script_cells.png +0 -0
  391. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/ipy_013_notebook_spectrogram.png +0 -0
  392. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/ipy_013_notebook_tooltip.png +0 -0
  393. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/ipy_013_par_tb.png +0 -0
  394. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/ipy_013_qtconsole_baboon.png +0 -0
  395. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/ipy_013_qtconsole_completer.png +0 -0
  396. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/ipython-6-screenshot.png +0 -0
  397. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/jedi_type_inference_60.png +0 -0
  398. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/kernel_selector_screenshot.png +0 -0
  399. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/ms_visual_studio.png +0 -0
  400. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/notebook_specgram.png +0 -0
  401. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/ptshell_features.png +0 -0
  402. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/qtconsole.png +0 -0
  403. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/qtconsole_tabbed.png +0 -0
  404. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_images/unicode_completion.png +0 -0
  405. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_static/favicon.ico +0 -0
  406. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_static/logo.png +0 -0
  407. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_static/theme_overrides.css +0 -0
  408. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_templates/breadcrumbs.html +0 -0
  409. {ipython-8.32.0 → ipython-9.0.0}/docs/source/_templates/notebook_redirect.html +0 -0
  410. {ipython-8.32.0 → ipython-9.0.0}/docs/source/about/history.rst +0 -0
  411. {ipython-8.32.0 → ipython-9.0.0}/docs/source/about/index.rst +0 -0
  412. {ipython-8.32.0 → ipython-9.0.0}/docs/source/about/license_and_copyright.rst +0 -0
  413. {ipython-8.32.0 → ipython-9.0.0}/docs/source/api/index.rst +0 -0
  414. {ipython-8.32.0 → ipython-9.0.0}/docs/source/config/callbacks.rst +0 -0
  415. {ipython-8.32.0 → ipython-9.0.0}/docs/source/config/custommagics.rst +0 -0
  416. {ipython-8.32.0 → ipython-9.0.0}/docs/source/config/eventloops.rst +0 -0
  417. {ipython-8.32.0 → ipython-9.0.0}/docs/source/config/extensions/autoreload.rst +0 -0
  418. {ipython-8.32.0 → ipython-9.0.0}/docs/source/config/extensions/index.rst +0 -0
  419. {ipython-8.32.0 → ipython-9.0.0}/docs/source/config/extensions/storemagic.rst +0 -0
  420. {ipython-8.32.0 → ipython-9.0.0}/docs/source/config/index.rst +0 -0
  421. {ipython-8.32.0 → ipython-9.0.0}/docs/source/config/inputtransforms.rst +0 -0
  422. {ipython-8.32.0 → ipython-9.0.0}/docs/source/config/integrating.rst +0 -0
  423. {ipython-8.32.0 → ipython-9.0.0}/docs/source/config/intro.rst +0 -0
  424. {ipython-8.32.0 → ipython-9.0.0}/docs/source/config/shell_mimerenderer.rst +0 -0
  425. {ipython-8.32.0 → ipython-9.0.0}/docs/source/config/shortcuts/index.rst +0 -0
  426. {ipython-8.32.0 → ipython-9.0.0}/docs/source/development/config.rst +0 -0
  427. {ipython-8.32.0 → ipython-9.0.0}/docs/source/development/execution.rst +0 -0
  428. {ipython-8.32.0 → ipython-9.0.0}/docs/source/development/figs/ipy_kernel_and_terminal.png +0 -0
  429. {ipython-8.32.0 → ipython-9.0.0}/docs/source/development/figs/ipy_kernel_and_terminal.svg +0 -0
  430. {ipython-8.32.0 → ipython-9.0.0}/docs/source/development/figs/other_kernels.png +0 -0
  431. {ipython-8.32.0 → ipython-9.0.0}/docs/source/development/figs/other_kernels.svg +0 -0
  432. {ipython-8.32.0 → ipython-9.0.0}/docs/source/development/how_ipython_works.rst +0 -0
  433. {ipython-8.32.0 → ipython-9.0.0}/docs/source/development/inputhook_app.rst +0 -0
  434. {ipython-8.32.0 → ipython-9.0.0}/docs/source/development/kernels.rst +0 -0
  435. {ipython-8.32.0 → ipython-9.0.0}/docs/source/development/messaging.rst +0 -0
  436. {ipython-8.32.0 → ipython-9.0.0}/docs/source/development/pycompat.rst +0 -0
  437. {ipython-8.32.0 → ipython-9.0.0}/docs/source/development/wrapperkernels.rst +0 -0
  438. {ipython-8.32.0 → ipython-9.0.0}/docs/source/index.rst +0 -0
  439. {ipython-8.32.0 → ipython-9.0.0}/docs/source/install/index.rst +0 -0
  440. {ipython-8.32.0 → ipython-9.0.0}/docs/source/install/install.rst +0 -0
  441. {ipython-8.32.0 → ipython-9.0.0}/docs/source/install/kernel_install.rst +0 -0
  442. {ipython-8.32.0 → ipython-9.0.0}/docs/source/interactive/autoawait.rst +0 -0
  443. {ipython-8.32.0 → ipython-9.0.0}/docs/source/interactive/index.rst +0 -0
  444. {ipython-8.32.0 → ipython-9.0.0}/docs/source/interactive/magics.rst +0 -0
  445. {ipython-8.32.0 → ipython-9.0.0}/docs/source/interactive/plotting.rst +0 -0
  446. {ipython-8.32.0 → ipython-9.0.0}/docs/source/interactive/shell.rst +0 -0
  447. {ipython-8.32.0 → ipython-9.0.0}/docs/source/interactive/tips.rst +0 -0
  448. {ipython-8.32.0 → ipython-9.0.0}/docs/source/interactive/tutorial.rst +0 -0
  449. {ipython-8.32.0 → ipython-9.0.0}/docs/source/links.txt +0 -0
  450. {ipython-8.32.0 → ipython-9.0.0}/docs/source/overview.rst +0 -0
  451. {ipython-8.32.0 → ipython-9.0.0}/docs/source/parallel/index.rst +0 -0
  452. {ipython-8.32.0 → ipython-9.0.0}/docs/source/sphinxext.rst +0 -0
  453. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/development.rst +0 -0
  454. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/github-stats-0.11.rst +0 -0
  455. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/github-stats-0.12.rst +0 -0
  456. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/github-stats-0.13.rst +0 -0
  457. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/github-stats-1.0.rst +0 -0
  458. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/github-stats-2.0.rst +0 -0
  459. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/github-stats-3.rst +0 -0
  460. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/github-stats-4.rst +0 -0
  461. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/github-stats-5.rst +0 -0
  462. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/github-stats-6.rst +0 -0
  463. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/github-stats-7.rst +0 -0
  464. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/github-stats-8.rst +0 -0
  465. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/pr/README.md +0 -0
  466. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/pr/antigravity-feature.rst +0 -0
  467. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/pr/incompat-switching-to-perl.rst +0 -0
  468. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/version0.10.rst +0 -0
  469. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/version0.11.rst +0 -0
  470. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/version0.12.rst +0 -0
  471. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/version0.13.rst +0 -0
  472. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/version0.8.rst +0 -0
  473. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/version0.9.rst +0 -0
  474. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/version1.0.rst +0 -0
  475. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/version3.rst +0 -0
  476. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/version3_widget_migration.rst +0 -0
  477. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/version4.rst +0 -0
  478. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/version5.rst +0 -0
  479. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/version6.rst +0 -0
  480. {ipython-8.32.0 → ipython-9.0.0}/docs/source/whatsnew/version7.rst +0 -0
  481. {ipython-8.32.0 → ipython-9.0.0}/docs/sphinxext/github.py +0 -0
  482. {ipython-8.32.0 → ipython-9.0.0}/docs/sphinxext/magics.py +0 -0
  483. {ipython-8.32.0 → ipython-9.0.0}/examples/Embedding/embed_class_long.py +0 -0
  484. {ipython-8.32.0 → ipython-9.0.0}/examples/Embedding/embed_class_short.py +0 -0
  485. {ipython-8.32.0 → ipython-9.0.0}/examples/Embedding/start_ipython_config.py +0 -0
  486. {ipython-8.32.0 → ipython-9.0.0}/examples/IPython Kernel/example-demo.py +0 -0
  487. {ipython-8.32.0 → ipython-9.0.0}/examples/IPython Kernel/gui/gui-glut.py +0 -0
  488. {ipython-8.32.0 → ipython-9.0.0}/examples/IPython Kernel/gui/gui-gtk4.py +0 -0
  489. {ipython-8.32.0 → ipython-9.0.0}/examples/IPython Kernel/gui/gui-qt.py +0 -0
  490. {ipython-8.32.0 → ipython-9.0.0}/examples/IPython Kernel/ipython-completion.bash +0 -0
  491. {ipython-8.32.0 → ipython-9.0.0}/examples/IPython Kernel/ipython.desktop +0 -0
  492. {ipython-8.32.0 → ipython-9.0.0}/examples/utils/list_pyfiles.ipy +0 -0
  493. {ipython-8.32.0 → ipython-9.0.0}/examples/utils/list_subdirs.ipy +0 -0
  494. {ipython-8.32.0 → ipython-9.0.0}/ipython.egg-info/dependency_links.txt +0 -0
  495. {ipython-8.32.0 → ipython-9.0.0}/ipython.egg-info/not-zip-safe +0 -0
  496. {ipython-8.32.0 → ipython-9.0.0}/ipython.egg-info/top_level.txt +0 -0
  497. {ipython-8.32.0 → ipython-9.0.0}/long_description.rst +0 -0
  498. {ipython-8.32.0 → ipython-9.0.0}/scripts/ipython.ico +0 -0
  499. {ipython-8.32.0 → ipython-9.0.0}/scripts/ipython_nb.ico +0 -0
  500. {ipython-8.32.0 → ipython-9.0.0}/setup.cfg +0 -0
  501. {ipython-8.32.0 → ipython-9.0.0}/setupbase.py +0 -0
  502. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/2x2.jpg +0 -0
  503. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/2x2.png +0 -0
  504. {ipython-8.32.0/IPython/sphinxext → ipython-9.0.0/tests}/__init__.py +0 -0
  505. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/nonascii.py +0 -0
  506. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/nonascii2.py +0 -0
  507. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/print_argv.py +0 -0
  508. {ipython-8.32.0/IPython/lib → ipython-9.0.0}/tests/test.wav +0 -0
  509. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_autocall.py +0 -0
  510. {ipython-8.32.0/IPython/lib → ipython-9.0.0}/tests/test_clipboard.py +0 -0
  511. {ipython-8.32.0/IPython/lib → ipython-9.0.0}/tests/test_deepreload.py +0 -0
  512. {ipython-8.32.0/IPython/utils → ipython-9.0.0}/tests/test_dir2.py +0 -0
  513. {ipython-8.32.0/IPython/lib → ipython-9.0.0}/tests/test_imports.py +0 -0
  514. {ipython-8.32.0/IPython/terminal → ipython-9.0.0}/tests/test_pt_inputhooks.py +0 -0
  515. {ipython-8.32.0/IPython/external → ipython-9.0.0}/tests/test_qt_loaders.py +0 -0
  516. {ipython-8.32.0/IPython/core → ipython-9.0.0}/tests/test_splitinput.py +0 -0
@@ -20,15 +20,17 @@ https://ipython.org
20
20
  #-----------------------------------------------------------------------------
21
21
 
22
22
  import sys
23
+ import warnings
23
24
 
24
25
  #-----------------------------------------------------------------------------
25
26
  # Setup everything
26
27
  #-----------------------------------------------------------------------------
27
28
 
28
29
  # Don't forget to also update setup.py when this changes!
29
- if sys.version_info < (3, 10):
30
+ if sys.version_info < (3, 11):
30
31
  raise ImportError(
31
32
  """
33
+ IPython 8.31+ supports Python 3.11 and above, following SPEC0
32
34
  IPython 8.19+ supports Python 3.10 and above, following SPEC0.
33
35
  IPython 8.13+ supports Python 3.9 and above, following NEP 29.
34
36
  IPython 8.0-8.12 supports Python 3.8 and above, following NEP 29.
@@ -58,7 +60,7 @@ from .core.interactiveshell import InteractiveShell
58
60
  from .utils.sysinfo import sys_info
59
61
  from .utils.frame import extract_module_locals
60
62
 
61
- __all__ = ["start_ipython", "embed", "start_kernel", "embed_kernel"]
63
+ __all__ = ["start_ipython", "embed", "embed_kernel"]
62
64
 
63
65
  # Release data
64
66
  __author__ = '%s <%s>' % (release.author, release.author_email)
@@ -87,15 +89,22 @@ def embed_kernel(module=None, local_ns=None, **kwargs):
87
89
  **kwargs : various, optional
88
90
  Further keyword args are relayed to the IPKernelApp constructor,
89
91
  such as `config`, a traitlets :class:`Config` object (see :ref:`configure_start_ipython`),
90
- allowing configuration of the kernel (see :ref:`kernel_options`). Will only have an effect
92
+ allowing configuration of the kernel. Will only have an effect
91
93
  on the first embed_kernel call for a given process.
92
94
  """
93
-
95
+
96
+ warnings.warn(
97
+ "import embed_kernel from ipykernel.embed directly (since 2013)."
98
+ " Importing from IPython will be removed in the future",
99
+ DeprecationWarning,
100
+ stacklevel=2,
101
+ )
102
+
94
103
  (caller_module, caller_locals) = extract_module_locals(1)
95
104
  if module is None:
96
105
  module = caller_module
97
106
  if local_ns is None:
98
- local_ns = caller_locals
107
+ local_ns = dict(**caller_locals)
99
108
 
100
109
  # Only import .zmq when we really need it
101
110
  from ipykernel.embed import embed_kernel as real_embed_kernel
@@ -128,36 +137,3 @@ def start_ipython(argv=None, **kwargs):
128
137
  """
129
138
  from IPython.terminal.ipapp import launch_new_instance
130
139
  return launch_new_instance(argv=argv, **kwargs)
131
-
132
- def start_kernel(argv=None, **kwargs):
133
- """Launch a normal IPython kernel instance (as opposed to embedded)
134
-
135
- `IPython.embed_kernel()` puts a shell in a particular calling scope,
136
- such as a function or method for debugging purposes,
137
- which is often not desirable.
138
-
139
- `start_kernel()` does full, regular IPython initialization,
140
- including loading startup files, configuration, etc.
141
- much of which is skipped by `embed_kernel()`.
142
-
143
- Parameters
144
- ----------
145
- argv : list or None, optional
146
- If unspecified or None, IPython will parse command-line options from sys.argv.
147
- To prevent any command-line parsing, pass an empty list: `argv=[]`.
148
- user_ns : dict, optional
149
- specify this dictionary to initialize the IPython user namespace with particular values.
150
- **kwargs : various, optional
151
- Any other kwargs will be passed to the Application constructor,
152
- such as `config`, a traitlets :class:`Config` object (see :ref:`configure_start_ipython`),
153
- allowing configuration of the kernel (see :ref:`kernel_options`).
154
- """
155
- import warnings
156
-
157
- warnings.warn(
158
- "start_kernel is deprecated since IPython 8.0, use from `ipykernel.kernelapp.launch_new_instance`",
159
- DeprecationWarning,
160
- stacklevel=2,
161
- )
162
- from ipykernel.kernelapp import launch_new_instance
163
- return launch_new_instance(argv=argv, **kwargs)
@@ -1,7 +1,6 @@
1
1
  # PYTHON_ARGCOMPLETE_OK
2
2
  # encoding: utf-8
3
- """Terminal-based IPython entry point.
4
- """
3
+ """Terminal-based IPython entry point."""
5
4
  # -----------------------------------------------------------------------------
6
5
  # Copyright (c) 2012, IPython Development Team.
7
6
  #
@@ -120,7 +120,8 @@ class AliasError(Exception):
120
120
  class InvalidAliasError(AliasError):
121
121
  pass
122
122
 
123
- class Alias(object):
123
+
124
+ class Alias:
124
125
  """Callable object storing the details of one alias.
125
126
 
126
127
  Instances are registered as magic functions to allow use of aliases.
@@ -212,7 +213,7 @@ class AliasManager(Configurable):
212
213
  if (
213
214
  cmd.startswith("ls ")
214
215
  and self.shell is not None
215
- and self.shell.colors == "NoColor"
216
+ and self.shell.colors == "nocolor"
216
217
  ):
217
218
  cmd = cmd.replace(" --color", "")
218
219
  self.soft_define_alias(name, cmd)
@@ -342,7 +342,7 @@ class BaseIPythonApplication(Application):
342
342
  try:
343
343
  if suppress_errors is not None:
344
344
  old_value = Application.raise_config_file_errors
345
- Application.raise_config_file_errors = not suppress_errors;
345
+ Application.raise_config_file_errors = not suppress_errors
346
346
  Application.load_config_file(
347
347
  self,
348
348
  base_config,
@@ -28,7 +28,7 @@ Notes
28
28
  # Code
29
29
  #-----------------------------------------------------------------------------
30
30
 
31
- class IPyAutocall(object):
31
+ class IPyAutocall:
32
32
  """ Instances of this class are always autocalled
33
33
 
34
34
  This happens regardless of 'autocall' variable state. Use this to
@@ -10,10 +10,17 @@ from traitlets.config.configurable import Configurable
10
10
  from traitlets import Instance
11
11
 
12
12
 
13
- class __BuiltinUndefined(object): pass
13
+ class __BuiltinUndefined:
14
+ pass
15
+
16
+
14
17
  BuiltinUndefined = __BuiltinUndefined()
15
18
 
16
- class __HideBuiltin(object): pass
19
+
20
+ class __HideBuiltin:
21
+ pass
22
+
23
+
17
24
  HideBuiltin = __HideBuiltin()
18
25
 
19
26
 
@@ -190,25 +190,3 @@ class CachingCompiler(codeop.Compile):
190
190
  # turn off only the bits we turned on so that something like
191
191
  # __future__ that set flags stays.
192
192
  self.flags &= ~turn_on_bits
193
-
194
-
195
- def check_linecache_ipython(*args):
196
- """Deprecated since IPython 8.6. Call linecache.checkcache() directly.
197
-
198
- It was already not necessary to call this function directly. If no
199
- CachingCompiler had been created, this function would fail badly. If
200
- an instance had been created, this function would've been monkeypatched
201
- into place.
202
-
203
- As of IPython 8.6, the monkeypatching has gone away entirely. But there
204
- were still internal callers of this function, so maybe external callers
205
- also existed?
206
- """
207
- import warnings
208
-
209
- warnings.warn(
210
- "Deprecated Since IPython 8.6, Just call linecache.checkcache() directly.",
211
- DeprecationWarning,
212
- stacklevel=2,
213
- )
214
- linecache.checkcache()