Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 303148 Details for
Bug 443416
Fixes for pychecker2/main.py
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
patch for pychecker
main.py (text/plain), 4.55 KB, created by
MERCIER Jonathan
on 2008-04-21 13:58:33 UTC
(
hide
)
Description:
patch for pychecker
Filename:
MIME Type:
Creator:
MERCIER Jonathan
Created:
2008-04-21 13:58:33 UTC
Size:
4.55 KB
patch
obsolete
>import sys >from os.path import dirname, realpath > >#---Patched by Stani http://pythonide.stani.be (begin) >import os >def userPath(dirname=''): > """'safer' function to find user path.""" > # 'safer' function to find user path: look for one of these directories > try: > path = os.path.expanduser("~") > if os.path.isdir(path): > return os.path.join(path, dirname) > except: > pass > for evar in ('HOME', 'USERPROFILE', 'TMP'): > try: > path = os.environ[evar] > if os.path.isdir(path): > return os.path.join(path, dirname) > except: > pass > #if no match found, use module directory > return os.path.join(os.path.dirname(os.path.abspath(__file__)), dirname) > >CACHE_FILE = userPath(".pychecker_cache") >#Patched by Stani http://pythonide.stani.be (end) >sys.path.append(dirname(dirname(realpath(sys.argv[0])))) > >from pychecker2.Check import CheckList > >from pychecker2 import Options >from pychecker2 import ParseChecks >from pychecker2 import OpChecks >from pychecker2 import VariableChecks >from pychecker2 import ScopeChecks >from pychecker2 import ImportChecks >from pychecker2 import ClassChecks >from pychecker2 import ReachableChecks >from pychecker2 import ReturnChecks >from pychecker2 import ConditionalChecks >from pychecker2 import FormatStringChecks > > >def print_warnings(f, out): > if not f.warnings: > return 0 > f.warnings.sort() > last_line = -1 > last_msg = None > for line, warning, args in f.warnings: > if warning.value: > msg = warning.message % args > if msg != last_msg or line != last_line: > print >>out, \ > '%s:%s %s' % (f.name, line or '[unknown line]', msg) > last_msg, last_line = msg, line > if last_msg: > print >>out > return 1 > >def create_checklist(options): > > checks = [ ParseChecks.ParseCheck(), > OpChecks.OpCheck(), > OpChecks.ExceptCheck(), > OpChecks.CompareCheck(), > ReachableChecks.ReachableCheck(), > ConditionalChecks.ConstantCheck(), > ClassChecks.ReprCheck(), > ImportChecks.ImportCheck(), > FormatStringChecks.FormatStringCheck(), > VariableChecks.ShadowCheck(), > VariableChecks.UnpackCheck(), > VariableChecks.UnusedCheck(), > VariableChecks.UnknownCheck(), > VariableChecks.SelfCheck(), > VariableChecks.UsedBeforeSetCheck(), > ReturnChecks.MixedReturnCheck(), > ClassChecks.AttributeCheck(), > ClassChecks.SpecialCheck(), > ClassChecks.InitCheck(), > ScopeChecks.RedefineCheck(), > ] > for checker in checks: > checker.get_warnings(options) > checker.get_options(options) > return CheckList(checks) > >def main(): > import cPickle > > options = Options.Options() > try: > checker = cPickle.load(open(CACHE_FILE, 'rb')) > #---Patched by Stani http://pythonide.stani.be (added ImportError) > except (EOFError, IOError, ImportError): > checker = create_checklist(options) > > try: > files = options.process_options(sys.argv[1:]) > except Options.Error, detail: > print >> sys.stderr, "Error: %s" % detail > options.usage(sys.argv[0], sys.stderr) > return 1 > > #---Patched by Stani http://pythonide.stani.be (begin) > sys_path = sys.path[:] > for f in files: > f_dir = dirname(f.name) > sys.path= sys_path[:] > if f_dir not in sys.path: > sys.path.insert(0,f_dir) > checker.check_file(f) > if options.incremental and not options.profile: > print_warnings(f, sys.stdout) > sys.path = sys_path > #Patched by Stani http://pythonide.stani.be (end) > > result = 0 > if not options.incremental and not options.profile: > files.sort() > for f in files: > result |= print_warnings(f, sys.stdout) > > if not result and options.verbose: > print >>sys.stdout, None > > fp = open(CACHE_FILE, 'wb') > cPickle.dump(checker, fp, 1) > fp.close() > > return result > >if __name__ == "__main__": > if '--profile' in sys.argv: > print 'profiling' > import hotshot.stats > import time > hs = hotshot.Profile('logfile.dat') > now = time.time() > hs.run('main()') > print 'total run time', time.time() - now > hs.close() > stats = hotshot.stats.load('logfile.dat') > stats.sort_stats('time', 'cum').print_stats(50) > else: > sys.exit(main())
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 443416
: 303148