24 lines
712 B
Python
24 lines
712 B
Python
# Copyright (c) 2015-2016 Claudiu Popa <pcmanticore@gmail.com>
|
|
|
|
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
|
|
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER
|
|
|
|
from astroid import MANAGER, register_module_extender
|
|
from astroid.builder import AstroidBuilder
|
|
|
|
def mechanize_transform():
|
|
return AstroidBuilder(MANAGER).string_build('''
|
|
|
|
class Browser(object):
|
|
def open(self, url, data=None, timeout=None):
|
|
return None
|
|
def open_novisit(self, url, data=None, timeout=None):
|
|
return None
|
|
def open_local_file(self, filename):
|
|
return None
|
|
|
|
''')
|
|
|
|
|
|
register_module_extender(MANAGER, 'mechanize', mechanize_transform)
|