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_py2.py 325B

123456789
  1. """ Functional test for deprecated methods in Python 2 """
  2. # pylint: disable=no-member
  3. import os
  4. import xml.etree.ElementTree
  5. os.popen2('') # [deprecated-method]
  6. os.popen3('') # [deprecated-method]
  7. os.popen4('') # [deprecated-method]
  8. xml.etree.ElementTree.Element('elem').getchildren() # [deprecated-method]