about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorFlorent Monjalet <florent.monjalet@gmail.com>2015-12-04 18:06:08 +0100
committerFlorent Monjalet <florent.monjalet@gmail.com>2016-01-18 14:02:31 +0100
commita0b1777080556713e64c2f2236e99ada98c400c4 (patch)
tree434306bc1601bb2c98b6aad8d8153c4ba48afb56
parentbd85479c0c7aba2d9ec9aeb2e6b2c4bb4b54d3e0 (diff)
downloadmiasm-a0b1777080556713e64c2f2236e99ada98c400c4.tar.gz
miasm-a0b1777080556713e64c2f2236e99ada98c400c4.zip
MemStruct: little MemType doc addition
Diffstat (limited to '')
-rw-r--r--miasm2/core/types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/core/types.py b/miasm2/core/types.py
index 86e49e5c..6558b60b 100644
--- a/miasm2/core/types.py
+++ b/miasm2/core/types.py
@@ -994,7 +994,7 @@ class _MetaMemStruct(_MetaMemType):
 
 class MemType(object):
     """Base class for classes that allow to map python objects to C types in
-    virtual memory.
+    virtual memory. Represents an lvalue of a given type.
 
     Globally, MemTypes are not meant to be used directly: specialized
     subclasses are generated by Type(...).lval and should be used instead.