m2m模型翻译
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
309 B

6 months ago
  1. import sys
  2. import io
  3. te_impl = 'lambda encoding, stacklevel=2, /: encoding'
  4. te_impl_37 = te_impl.replace(', /', '')
  5. _text_encoding = eval(te_impl) if sys.version_info > (3, 8) else eval(te_impl_37)
  6. text_encoding = (
  7. io.text_encoding if sys.version_info > (3, 10) else _text_encoding # type: ignore
  8. )