You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of the tests in test_gateway have encoding parameter passed to json.loads. This is ignored and deprecated to be removed in Python 3.9.
>>> json.loads(json.dumps({1: 1}), encoding='utf-8')
<stdin>:1: DeprecationWarning: 'encoding' is ignored and deprecated. It will be removed in Python 3.9
{'1': 1}
Some of the tests in test_gateway have encoding parameter passed to
json.loads
. This is ignored and deprecated to be removed in Python 3.9.notebook/notebook/tests/test_gateway.py
Line 189 in 7b5248d
The text was updated successfully, but these errors were encountered: