From 7548e6e8cfbeb0983133edfe6ec712dae3b7415a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Chapoton?= Date: Tue, 23 Aug 2016 20:34:29 +0200 Subject: [PATCH] trac 21069 fixing a doctest in Dyck words --- src/sage/combinat/dyck_word.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sage/combinat/dyck_word.py b/src/sage/combinat/dyck_word.py index 1c68aecee7a..6f4bf094aec 100644 --- a/src/sage/combinat/dyck_word.py +++ b/src/sage/combinat/dyck_word.py @@ -1742,7 +1742,7 @@ def list_parking_functions(self): sage: DyckWord([1,1,1,0,0,0]).list_parking_functions() Permutations of the multi-set [1, 1, 1] sage: DyckWord([1,0,1,0,1,0]).list_parking_functions() - Permutations of the set [1, 2, 3] + Standard permutations of 3 """ alist = self.to_area_sequence() return Permutations([i - alist[i]+1 for i in range(len(alist))])