summaryrefslogtreecommitdiffstats
path: root/libraries/ordereddict/README
diff options
context:
space:
mode:
author Dimitris Zlatanidis <d.zlatanidis@gmail.com>2014-02-17 14:37:50 +0700
committer Erik Hanson <erik@slackbuilds.org>2014-02-18 14:59:54 -0600
commitffead9a2c2d5ffd40fdf5a91eab286b54d8231a9 (patch)
tree4a2694c4d1492a0cf444b6418246c90011275a74 /libraries/ordereddict/README
parent05f1b4a064a1f4d4ff7500fbd1b8b94b2edbd026 (diff)
downloadslackbuilds-ffead9a2c2d5ffd40fdf5a91eab286b54d8231a9.tar.gz
slackbuilds-ffead9a2c2d5ffd40fdf5a91eab286b54d8231a9.tar.xz
libraries/ordereddict: Added (substitute for Py2.7's collections).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
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).