Coverage for /private/tmp/im/impacket/impacket/__init__.py : 56%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# Copyright (c) 2003-2016 CORE Security Technologies # # This software is provided under under a slightly modified version # of the Apache Software License. See the accompanying LICENSE file # for more information. # # Author: Alberto Solino (@agsolino) #
# Set default logging handler to avoid "No handler found" warnings. except ImportError: class NullHandler(logging.Handler): def emit(self, record): pass
# All modules inside this library MUST use this logger (impacket) # It is up to the library consumer to do whatever is wanted # with the logger output. By default it is forwarded to the # upstream logger
|