This repository was archived by the owner on Feb 1, 2023. It is now read-only.
Commit 4275b27
Release Manager
Trac #31530: New subs bug caused by #30378
As reported in https://trac.sagemath.org/ticket/30378#comment:49
Observed:
{{{
sage: a, b, epsilon = SR.var('a, b, epsilon')
sage: (a + b*epsilon).series(epsilon, 2).subs(a=a, b=b)
b*epsilon
}}}
Expected:
{{{
sage: a, b, epsilon = SR.var('a, b, epsilon')
sage: (a + b*epsilon).series(epsilon, 2).subs(a=a, b=b)
(a) + (b)*x + Order(x^2)
}}}
URL: https://trac.sagemath.org/31530
Reported by: mkoeppe
Ticket author(s): Dave Morris
Reviewer(s): Matthias KoeppeFile tree
6 files changed
+27
-28
lines changed- build/pkgs
- configure
- pynac
- patches
- src/sage
- symbolic
- tests/books/computational-mathematics-with-sagemath
6 files changed
+27
-28
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
3 | | - | |
4 | | - | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5489 | 5489 | | |
5490 | 5490 | | |
5491 | 5491 | | |
| 5492 | + | |
| 5493 | + | |
| 5494 | + | |
| 5495 | + | |
| 5496 | + | |
| 5497 | + | |
5492 | 5498 | | |
5493 | 5499 | | |
5494 | 5500 | | |
| |||
5509 | 5515 | | |
5510 | 5516 | | |
5511 | 5517 | | |
5512 | | - | |
5513 | | - | |
5514 | | - | |
5515 | | - | |
5516 | | - | |
5517 | | - | |
5518 | | - | |
5519 | | - | |
5520 | | - | |
5521 | | - | |
5522 | | - | |
5523 | | - | |
5524 | | - | |
5525 | | - | |
5526 | | - | |
5527 | | - | |
5528 | | - | |
5529 | | - | |
5530 | | - | |
5531 | | - | |
5532 | | - | |
5533 | | - | |
5534 | 5518 | | |
5535 | 5519 | | |
5536 | 5520 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
149 | 149 | | |
150 | 150 | | |
151 | 151 | | |
152 | | - | |
| 152 | + | |
153 | 153 | | |
154 | 154 | | |
155 | 155 | | |
| |||
0 commit comments