From 240483d72f74f6f380d4df861fe78fda255daf73 Mon Sep 17 00:00:00 2001 From: Amr Hassan Date: Fri, 30 Sep 2011 23:02:43 +0200 Subject: [PATCH] Closes Issue #71 --- .build | 2 +- MANIFEST.in | 6 ++++++ pylast.py | 2 -- 3 files changed, 7 insertions(+), 3 deletions(-) create mode 100755 MANIFEST.in diff --git a/.build b/.build index 9d60796..da2d398 100644 --- a/.build +++ b/.build @@ -1 +1 @@ -11 \ No newline at end of file +14 \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100755 index 0000000..9e84b8c --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,6 @@ +include pylast.py +include setup.py +include README +include COPYING +include INSTALL +include .build diff --git a/pylast.py b/pylast.py index aac62d9..a4e0c0e 100644 --- a/pylast.py +++ b/pylast.py @@ -352,8 +352,6 @@ class _Network(object): def enable_caching(self, file_path = None): """Enables caching request-wide for all cachable calls. - In choosing the backend used for caching, it will try _SqliteCacheBackend first if - the module sqlite3 is present. If not, it will fallback to _ShelfCacheBackend which uses shelve.Shelf objects. * file_path: A file path for the backend storage file. If None set, a temp file would probably be created, according the backend.