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
Initialization of Helpers._get_default_encoding_func is corrected [py3.9] (#221)
Python 3.9 does not undestand the following code:
_get_default_encoding_func = _make_get_default_encoding_func()
ERROR - TypeError: 'staticmethod' object is not callable
https://app.travis-ci.com/github/postgrespro/testgres/jobs/631402370
The code:
_get_default_encoding_func = _make_get_default_encoding_func.__func__()
is processed without problems.
0 commit comments