improve the "package" command
@DanGrayson is already working on this.
Since Jun 6, 2018.
- Dominant language
- Macaulay2
- Stars
- 435
- Forks
- 297
- Avg merge
- 4d 20h
- Merged PRs (30d)
- 11
Description
... because after reloading a package, the old things are now regarded as not belonging to a package:
```
i23 : sin
o23 = sin
o23 : Symbol
i24 : package oo
o24 = Foo
o24 : Package
i25 : loadPackage ("Foo", Reload=>true)
--warning: symbol "resultant" in Elimination.Dictionary is shadowed by a symbol in Foo.Dictionary
-- use the synonym Elimination$resultant
--warning: symbol "ringFromFractions" in IntegralClosure.Dictionary is shadowed by a symbol in Foo.Dictionary
-- use the synonym IntegralClosure$ringFromFractions
--warning: symbol "sin" in Core.Dictionary is shadowed by a symbol in Foo.Dictionary
-- use the synonym Core$sin
o25 = Foo
o25 : Package
i26 : package o23
i27 :
```
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.