about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/ext/flatten.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/ranger/ext/flatten.py b/ranger/ext/flatten.py
new file mode 100644
index 00000000..19342efe
--- /dev/null
+++ b/ranger/ext/flatten.py
@@ -0,0 +1,27 @@
+# Copyright (c) 2009, 2010 hut <hut@lavabit.com>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+def flatten(lst):
+	"""
+	Flatten an iterable.
+
+	All contained tuples, lists and sets are replaced by their
+	elements and flattened as well.
+	"""
+	for elem in lst:
+		if isinstance(elem, (tuple, list, set)):
+			for subelem in flatten(elem):
+				yield subelem
+		else:
+			yield elem
0 4891' href='/akkartik/mu/commit/html/subx/examples/ex12.subx.html?h=hlt&id=08a0eed699b8ea07d37163aba610c8e04feee003'>08a0eed6 ^
14a38052 ^
ac07e589 ^
3350c34a ^
60338448 ^
695f9bf8 ^
e0610e39 ^
ac07e589 ^
5a2cb154 ^















695f9bf8 ^
5a2cb154 ^















3350c34a ^
5a2cb154 ^
14a38052 ^
c56d803c ^

60338448 ^
3350c34a ^

c56d803c ^
5a2cb154 ^
a0d3cac4 ^
14a38052 ^


5a2cb154 ^
695f9bf8 ^
a0d3cac4 ^

3350c34a ^
a0d3cac4 ^





3350c34a ^
a0d3cac4 ^

695f9bf8 ^
a0d3cac4 ^















5a2cb154 ^



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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104