mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-15 03:28:13 +01:00
30 lines
895 B
Python
30 lines
895 B
Python
|
# Copyright (c) 2012-2013 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr>
|
||
|
# Copyright (c) 2014 Google, Inc.
|
||
|
# Copyright (c) 2015-2016, 2018 Claudiu Popa <pcmanticore@gmail.com>
|
||
|
# Copyright (c) 2016 Ceridwen <ceridwenv@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)
|