Show More
@@ -137,3 +137,13 def test_autocall_should_support_unicode(): | |||
|
137 | 137 | finally: |
|
138 | 138 | ip.run_line_magic("autocall", "0") |
|
139 | 139 | del ip.user_ns["π"] |
|
140 | ||
|
141 | ||
|
142 | def test_autocall_regression_gh_14513(): | |
|
143 | ip.run_line_magic("autocall", "2") | |
|
144 | ip.user_ns["foo"] = dict() | |
|
145 | try: | |
|
146 | assert ip.prefilter("foo") == "foo" | |
|
147 | finally: | |
|
148 | ip.run_line_magic("autocall", "0") | |
|
149 | del ip.user_ns["foo"] |
General Comments 0
You need to be logged in to leave comments.
Login now