Development of an internal social media platform with personalised dashboards for students
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.

__init__.py 332B

1234567891011121314151617181920
  1. try:
  2. import copy_reg as copyreg
  3. except ImportError:
  4. import copyreg
  5. from .utils import identity
  6. copyreg.constructor(identity)
  7. try:
  8. from .cext import Proxy
  9. from .cext import identity
  10. except ImportError:
  11. from .slots import Proxy
  12. else:
  13. copyreg.constructor(identity)
  14. __version__ = "1.3.1"
  15. __all__ = "Proxy",