diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-10-04 19:23:21 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-10-05 23:10:14 +0200 |
commit | e3302fec18c00f8e21f9c4df9d5728925835ff74 (patch) | |
tree | a96dba9e8342dd4544913e66d9f311a4fb63458e | |
parent | 025cc9a1ed08373c68b7926223900708dcabd0a3 (diff) | |
download | guix-e3302fec18c00f8e21f9c4df9d5728925835ff74.tar.gz guix-e3302fec18c00f8e21f9c4df9d5728925835ff74.zip |
import: pypi: Remove unused procedure.
* guix/import/pypi.scm (join): Remove.
-rw-r--r-- | guix/import/pypi.scm | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/guix/import/pypi.scm b/guix/import/pypi.scm index 06d21fea45..d04a68524d 100644 --- a/guix/import/pypi.scm +++ b/guix/import/pypi.scm @@ -37,16 +37,6 @@ #:use-module (gnu packages python) #:export (pypi->guix-package)) -(define (join lst delimiter) - "Return a list that contains the elements of LST, each separated by -DELIMETER." - (match lst - (() '()) - ((elem) - (list elem)) - ((elem . rest) - (cons* elem delimiter (join rest delimiter))))) - (define (pypi-fetch name) "Return an alist representation of the PyPI metadata for the package NAME, or #f on failure." |