From 6bcf147a8e741039ae858a90437c2458d441c663 Mon Sep 17 00:00:00 2001 From: moculus Date: Fri, 14 Mar 2008 21:17:04 +0000 Subject: [PATCH] --HG-- branch : pmacs2 --- aes.py | 2 +- buffer.py | 4 ++-- bufferlist.py | 4 ++-- completer.py | 2 +- highlight.py | 2 +- ispell.py | 2 +- keyinput.py | 2 +- lex.py | 6 +++--- method/__init__.py | 4 ++-- tab.py | 4 ++-- 10 files changed, 16 insertions(+), 16 deletions(-) diff --git a/aes.py b/aes.py index c61fd0e..0065b59 100755 --- a/aes.py +++ b/aes.py @@ -3,7 +3,7 @@ # by Erik Osheim import os, popen2 -class Cipher: +class Cipher(object): '''Cipher represents a particular hashing strategy (password, seed, and type). Cipher can encrypt or decrypt data.''' def __init__(self, password, seed='aes.py', hashtype='rmd160'): self.password = password diff --git a/buffer.py b/buffer.py index 3491a5f..1761466 100644 --- a/buffer.py +++ b/buffer.py @@ -9,7 +9,7 @@ ACT_REDO = 2 STACK_LIMIT = 1024 # used for undo/redo stacks when text will need to be added back -class AddMove: +class AddMove(object): def __init__(self, buffer, p, lines): self.buffer = buffer self.p = p @@ -21,7 +21,7 @@ class AddMove: return self.p # used for undo/redo stacks when text will need to be removed -class DelMove: +class DelMove(object): def __init__(self, buffer, p1, p2): self.buffer = buffer self.p1 = p1 diff --git a/bufferlist.py b/bufferlist.py index 8581653..e252652 100644 --- a/bufferlist.py +++ b/bufferlist.py @@ -1,7 +1,7 @@ import sets import window -class Slot: +class Slot(object): def __init__(self, height, width, offset): self.height = height self.width = width @@ -26,7 +26,7 @@ class Slot: else: return None -class BufferList: +class BufferList(object): def __init__(self, height, width, buffers=()): self.height = height self.width = width diff --git a/completer.py b/completer.py index 17c459a..b850fb5 100644 --- a/completer.py +++ b/completer.py @@ -17,7 +17,7 @@ def find_common_string(candidates): index += 1 return test -class Completer: +class Completer(object): def get_candidates(self, s): assert "Not implemented" def tab_string(self, s, w=None): diff --git a/highlight.py b/highlight.py index 99d30d2..a76a5ea 100644 --- a/highlight.py +++ b/highlight.py @@ -31,7 +31,7 @@ def token_vmatch2(self, token, *pairs): return True return False -class Highlighter: +class Highlighter(object): def __init__(self, lexer): self.lexer = lexer self.tokens = [] diff --git a/ispell.py b/ispell.py index 09dec6b..f6614c3 100644 --- a/ispell.py +++ b/ispell.py @@ -11,7 +11,7 @@ def get_speller(): global _speller return _speller -class Speller: +class Speller(object): def __init__(self, cmd='ispell'): self.pipe = None self.cache = cache.CacheDict() diff --git a/keyinput.py b/keyinput.py index 3b031b8..e4edec3 100644 --- a/keyinput.py +++ b/keyinput.py @@ -113,7 +113,7 @@ def disable_control_chars(): termios.tcsetattr(sys.stdin, termios.TCSANOW, attr) -class Handler: +class Handler(object): def __init__(self): self.tokens = [] self.unset_meta() diff --git a/lex.py b/lex.py index 6c9ac41..649caf0 100755 --- a/lex.py +++ b/lex.py @@ -60,7 +60,7 @@ class Token(object): fields = (self.fqname(), self.rule, self.y, self.x, s) return "" % fields -class Rule: +class Rule(object): reflags = 0 def __init__(self, name): assert regex.valid_token_name.match(name), 'invalid name %r' % name @@ -353,11 +353,11 @@ class RegionRule(Rule): class NocaseRegionRule(RegionRule): reflags = re.IGNORECASE -class Grammar: +class Grammar(object): rules = [] grammar = Grammar() -class Lexer: +class Lexer(object): def __init__(self, mode, grammar): self.mode = mode self.mstack = [] diff --git a/method/__init__.py b/method/__init__.py index f47d8fa..204937e 100644 --- a/method/__init__.py +++ b/method/__init__.py @@ -14,7 +14,7 @@ DATATYPES = { class MethodError(Exception): pass -class Argument: +class Argument(object): def __init__(self, name, type=type(""), datatype=None, prompt=None, help="", default=default.none, load_default=False): self.name = name @@ -64,7 +64,7 @@ class Argument: if starting_value: app.mini_buffer.set_data(starting_value) -class Method: +class Method(object): _is_method = True args = [] def __init__(self): diff --git a/tab.py b/tab.py index a3215e5..ec6670e 100644 --- a/tab.py +++ b/tab.py @@ -1,14 +1,14 @@ import regex, util from point import Point -class Marker: +class Marker(object): def __init__(self, name, level): self.name = name self.level = level def __repr__(self): return '' % (self.name, self.level) -class Tabber: +class Tabber(object): wsre = regex.whitespace wst = ('null', 'eol',) sre = regex.space