fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
bugfix
[redakcja.git]
/
apps
/
wiki
/
helpers.py
diff --git
a/apps/wiki/helpers.py
b/apps/wiki/helpers.py
index
2cdb916
..
f072ef9
100644
(file)
--- a/
apps/wiki/helpers.py
+++ b/
apps/wiki/helpers.py
@@
-62,19
+62,19
@@
def ajax_require_permission(permission):
import collections
def recursive_groupby(iterable):
import collections
def recursive_groupby(iterable):
- """
+ """
# >>> recursive_groupby([1,2,3,4,5])
# [1, 2, 3, 4, 5]
# >>> recursive_groupby([1,2,3,4,5])
# [1, 2, 3, 4, 5]
-
+
>>> recursive_groupby([[1]])
[1]
>>> recursive_groupby([[1]])
[1]
-
+
>>> recursive_groupby([('a', 1),('a', 2), 3, ('b', 4), 5])
['a', [1, 2], 3, 'b', [4], 5]
>>> recursive_groupby([('a', 1),('a', 2), 3, ('b', 4), 5])
['a', [1, 2], 3, 'b', [4], 5]
-
+
>>> recursive_groupby([('a', 'x', 1),('a', 'x', 2), ('a', 'x', 3)])
['a', ['x', [1, 2, 3]]]
>>> recursive_groupby([('a', 'x', 1),('a', 'x', 2), ('a', 'x', 3)])
['a', ['x', [1, 2, 3]]]
-
+
"""
def _generator(iterator):
"""
def _generator(iterator):