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.

deprecated_methods_py36.py 309B

123456
  1. """ Functional tests for method deprecation. """
  2. import unittest
  3. from importlib.machinery import SourceFileLoader, SourcelessFileLoader
  4. SourceFileLoader('unittest', unittest.__file__).load_module() # [deprecated-method]
  5. SourcelessFileLoader('unittest', unittest.__file__).load_module() # [deprecated-method]