summaryrefslogtreecommitdiffstats
path: root/libraries/ordereddict/README
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/ordereddict/README')
-rw-r--r--libraries/ordereddict/README5
1 files changed, 5 insertions, 0 deletions
diff --git a/libraries/ordereddict/README b/libraries/ordereddict/README
new file mode 100644
index 0000000000..412d9e4f1c
--- /dev/null
+++ b/libraries/ordereddict/README
@@ -0,0 +1,5 @@
+Drop-in substitute for Py2.7's new collections.OrderedDict.
+
+The recipe has big-oh performance that matches regular dictionaries
+(amortized O(1) insertion/deletion/lookup and O(n)
+iteration/repr/copy/equality_testing).