Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
src/sage/geometry/polyhedron/palp_database.py: Relax doctest pattern …
Browse files Browse the repository at this point in the history
…for python 3.9
  • Loading branch information
mkoeppe committed Sep 18, 2020
1 parent 4a9362e commit 49eccd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/geometry/polyhedron/palp_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def _palp_Popen(self):
sage: from sage.geometry.polyhedron.palp_database import PALPreader
sage: polygons = PALPreader(2)
sage: polygons._palp_Popen()
<subprocess.Popen object at 0x...>
<...Popen...>
"""

return Popen(["class.x", "-b2a", "-di", self._data_basename],
Expand Down Expand Up @@ -458,7 +458,7 @@ def _palp_Popen(self):
sage: from sage.geometry.polyhedron.palp_database import Reflexive4dHodge
sage: polygons = Reflexive4dHodge(1, 101) # optional - polytopes_db_4d
sage: polygons._palp_Popen() # optional - polytopes_db_4d
<subprocess.Popen object at 0x...>
<...Popen...>
"""

return Popen(['class-4d.x', '-He',
Expand Down

0 comments on commit 49eccd9

Please sign in to comment.