Opened 6 years ago
Closed 6 years ago
#21674 closed enhancement (fixed)
Doctest continuation marked / rings, misc
Reported by: | jmantysalo | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | sage-7.5 |
Component: | documentation | Keywords: | |
Cc: | tscrim | Merged in: | |
Authors: | Jori Mäntysalo | Reviewers: | Travis Scrimshaw |
Report Upstream: | N/A | Work issues: | |
Branch: | 14ac865 (Commits, GitHub, GitLab) | Commit: | 14ac8654e922ca52b55025e235b476399a07bf91 |
Dependencies: | Stopgaps: |
Description
Every grepping of source code is easier if there is just one way to do something. Also some user might wonder if there is a difference between ...
and ....:
. Hence I suggest mass change from old-style doctest continuation lines.
This part does that in rings and misc folder.
Done by
find src/sage/rings src/sage/misc -name '*.py' -or -name '*.pyx' | xargs perl -e 's|^( *)\.\.\. |\1....:|g;' -p -i.bak
Change History (6)
comment:1 Changed 6 years ago by
Branch: | → u/jmantysalo/linecont-rings-misc |
---|
comment:2 Changed 6 years ago by
Commit: | → 14ac8654e922ca52b55025e235b476399a07bf91 |
---|
comment:5 Changed 6 years ago by
Reviewers: | → Travis Scrimshaw |
---|---|
Status: | needs_review → positive_review |
Now to hope for no conflicts.
comment:6 Changed 6 years ago by
Branch: | u/jmantysalo/linecont-rings-misc → 14ac8654e922ca52b55025e235b476399a07bf91 |
---|---|
Resolution: | → fixed |
Status: | positive_review → closed |
Note: See
TracTickets for help on using
tickets.
To be tested, not ready for review.
New commits:
Doctest continuation / rings, misc.