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/core | |
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/core')
-rw-r--r-- | contrib/python/ipython/py3/IPython/core/events.py | 6 | ||||
-rw-r--r-- | contrib/python/ipython/py3/IPython/core/release.py | 2 |
2 files changed, 6 insertions, 2 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 |