From f07bb12fc5c59430e995a64956b36331ce3629b9 Mon Sep 17 00:00:00 2001 From: hut Date: Fri, 25 Dec 2009 21:55:04 +0100 Subject: updated pydoc pages --- doc/ranger.container.keybuffer.html | 76 +++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 doc/ranger.container.keybuffer.html (limited to 'doc/ranger.container.keybuffer.html') diff --git a/doc/ranger.container.keybuffer.html b/doc/ranger.container.keybuffer.html new file mode 100644 index 00000000..4990a3fc --- /dev/null +++ b/doc/ranger.container.keybuffer.html @@ -0,0 +1,76 @@ + +Python: module ranger.container.keybuffer + + + + + +
 
+ 
ranger.container.keybuffer
index
/home/hut/work/ranger/ranger/container/keybuffer.py
+

+

+ + + + + +
 
+Classes
       
+
builtins.object +
+
+
KeyBuffer +
+
+
+

+ + + + + +
 
+class KeyBuffer(builtins.object)
    Methods defined here:
+
__init__(self)
+ +
__str__(self)
returns a concatenation of all characters
+ +
append(self, key)
Append a key to the keybuffer, or initial numbers to
+the number attribute.
+ +
clear(self)
Clear the keybuffer and restore the initial state
+ +
tuple_with_numbers(self)
Get a tuple of ascii codes.
+ +
tuple_without_numbers(self)
Get a tuple of ascii codes.
+If the keybuffer starts with numbers, those will
+be left out. To access them, use keybuffer.number
+ +
+Data descriptors defined here:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+

+ + + + + +
 
+Functions
       
to_string(i)
+

+ + + + + +
 
+Data
       NINE = 57
+ZERO = 48
+ \ No newline at end of file -- cgit 1.4.1-2-gfad0 ; 2015-06-21 23:53:17 -0700 1618' href='/akkartik/mu/commit/screen.mu?h=hlt&id=290fe117c444399495a83266d602e2f4fc3fc099'>290fe117 ^

a63ebc92 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27