[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: import: pypi: Remove unused procedure.
From: |
Ludovic Courtès |
Subject: |
01/01: import: pypi: Remove unused procedure. |
Date: |
Mon, 05 Oct 2015 21:12:18 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit e3302fec18c00f8e21f9c4df9d5728925835ff74
Author: Ludovic Courtès <address@hidden>
Date: Sun Oct 4 19:23:21 2015 +0200
import: pypi: Remove unused procedure.
* guix/import/pypi.scm (join): Remove.
---
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 06d21fe..d04a685 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."