about summary refs log tree commit diff
path: root/misc/notes.txt
diff options
context:
space:
mode:
Diffstat (limited to 'misc/notes.txt')
-rw-r--r--misc/notes.txt13
1 files changed, 7 insertions, 6 deletions
diff --git a/misc/notes.txt b/misc/notes.txt
index b0c0762c..306cadeb 100644
--- a/misc/notes.txt
+++ b/misc/notes.txt
@@ -57,12 +57,6 @@ unset SSH_ASKPASS
 
 ===========================================
 
-Python stuff:
-
-Classes should always inherit "object"
-
-===========================================
-
 htop: Gives information on processes, cpu/memory load, etc
 dstat: Also gives various system information, resource usage, etc
 df: Reports file system disk space usage
@@ -78,4 +72,11 @@ ps -ax - View processes
 
 kill (process #)
 
+===========================================
+
+Python stuff:
+
+Classes should always inherit "object"
+To iterate through dictionary items: for X, Y in MyDictionary.items():
+