From ee03aa68a60847c8a9b196fe9fe194ce84103928 Mon Sep 17 00:00:00 2001 From: Kostas Date: Tue, 20 Aug 2013 21:58:58 -0400 Subject: [PATCH 1/2] - rename to avoid clash with stdlib collections --- __init__.py | 6 +++--- collections.py => qcollections.py | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename collections.py => qcollections.py (100%) diff --git a/__init__.py b/__init__.py index bfa65ad..67564e0 100644 --- a/__init__.py +++ b/__init__.py @@ -1,6 +1,6 @@ -from collections import q_list as list -from collections import table -from collections import q_dict as dict +from qcollections import q_list as list +from qcollections import table +from qcollections import q_dict as dict from qtypes import q_str as str from qtypes import month, date, datetime, time, minute, second from conn import conn diff --git a/collections.py b/qcollections.py similarity index 100% rename from collections.py rename to qcollections.py From fcfe6070ef7d41cc1beb8dcbd7460df105bd39a5 Mon Sep 17 00:00:00 2001 From: Kostas Date: Tue, 20 Aug 2013 22:01:35 -0400 Subject: [PATCH 2/2] - update doc --- README | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README b/README index abe1686..6b380b1 100644 --- a/README +++ b/README @@ -1,3 +1,6 @@ +- updated to avoid clash with stdlib collections, this surfaced when + using together with numpy. + == ABOUT == The q package is a q connection library implemented in Python.