# HG changeset patch
# User Nathann Cohen <nathann.cohen@gmail.com>
# Date 1369430722 -7200
# Node ID 23bf47250549ebc20ee5e6852b3f87b351bc8b86
# Parent e1b91a8bf558133486b38bf41bff86a3c788d9c8
Arrangements of pseudolines -- last patch
diff --git a/sage/geometry/pseudolines.py b/sage/geometry/pseudolines.py
a
|
b
|
|
263 | 263 | (encoding == "auto" and (len(seq[0]) == len(seq)-1) and max(seq[0]) > 1)): |
264 | 264 | |
265 | 265 | self._n = len(seq) |
266 | | self._permutations = deepcopy(seq) |
| 266 | self._permutations = map(list,seq) |
267 | 267 | |
268 | 268 | if max(map(max, seq)) != self._n -1 : |
269 | 269 | raise ValueError("Are the lines really numbered from 0 to n-1?") |