graphite-project / carbon

Use of a deprecated module detected PYL-W0402
Bug risk
Major
8 months ago4 years old
Use of deprecated module 'distutils.core', consider replacing it with 'setuptools'
 54  from setuptools import setup
 55  setup_kwargs = dict(zip_safe=0)
 56else:
 57  from distutils.core import setup 58  setup_kwargs = dict()
 59
 60
Uses of a deprecated module 'optparse'
 18import errno
 19
 20from os.path import join, dirname, normpath, exists, isdir
 21from optparse import OptionParser 22
 23try:
 24    from ConfigParser import ConfigParser
Uses of a deprecated module 'optparse'
 18"""
 19import os
 20import time
 21from optparse import OptionParser 22
 23from twisted.internet.defer import inlineCallbacks
 24from twisted.internet import reactor
Uses of a deprecated module 'optparse'
 34
 35import os
 36import socket
 37from optparse import OptionParser 38
 39from twisted.internet.defer import inlineCallbacks
 40from twisted.internet import reactor