diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2023-11-15 09:28:54 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2023-11-15 10:14:41 +0300 |
commit | 351c5f640a103d19f8f45c3f2087c4d7a4858299 (patch) | |
tree | 1b5f3f01458a148537e209a8496ccf0ec01fb825 /contrib/python/ipython/py3/IPython | |
parent | 6918eac78225162084b3dc2af468f5614975cc29 (diff) | |
download | ydb-351c5f640a103d19f8f45c3f2087c4d7a4858299.tar.gz |
Update contrib/python/ipython/py3 to 8.17.2
Diffstat (limited to 'contrib/python/ipython/py3/IPython')
4 files changed, 8 insertions, 4 deletions
diff --git a/contrib/python/ipython/py3/IPython/core/events.py b/contrib/python/ipython/py3/IPython/core/events.py index 90ff8f746d..ef39c4fd0a 100644 --- a/contrib/python/ipython/py3/IPython/core/events.py +++ b/contrib/python/ipython/py3/IPython/core/events.py @@ -82,7 +82,11 @@ class EventManager(object): func(*args, **kwargs) except (Exception, KeyboardInterrupt): if self.print_on_error: - print("Error in callback {} (for {}):".format(func, event)) + print( + "Error in callback {} (for {}), with arguments args {},kwargs {}:".format( + func, event, args, kwargs + ) + ) self.shell.showtraceback() # event_name -> prototype mapping diff --git a/contrib/python/ipython/py3/IPython/core/release.py b/contrib/python/ipython/py3/IPython/core/release.py index ee0042d081..8a349a17c6 100644 --- a/contrib/python/ipython/py3/IPython/core/release.py +++ b/contrib/python/ipython/py3/IPython/core/release.py @@ -17,7 +17,7 @@ # version _version_major = 8 _version_minor = 17 -_version_patch = 1 +_version_patch = 2 _version_extra = ".dev" # _version_extra = "rc1" _version_extra = "" # Uncomment this for full releases diff --git a/contrib/python/ipython/py3/IPython/extensions/autoreload.py b/contrib/python/ipython/py3/IPython/extensions/autoreload.py index 0025ad519f..98c9a0d01a 100644 --- a/contrib/python/ipython/py3/IPython/extensions/autoreload.py +++ b/contrib/python/ipython/py3/IPython/extensions/autoreload.py @@ -701,7 +701,7 @@ class AutoreloadMagics(Magics): # Inject module to user namespace self.shell.push({top_name: top_module}) - def pre_run_cell(self): + def pre_run_cell(self, info): if self._reloader.enabled: try: self._reloader.check() diff --git a/contrib/python/ipython/py3/IPython/utils/_sysinfo.py b/contrib/python/ipython/py3/IPython/utils/_sysinfo.py index 8d771a843f..602452db2d 100644 --- a/contrib/python/ipython/py3/IPython/utils/_sysinfo.py +++ b/contrib/python/ipython/py3/IPython/utils/_sysinfo.py @@ -1,2 +1,2 @@ # GENERATED BY setup.py -commit = "0cfced36e" +commit = "ef3bae307" |