Skip to content

Commit 0b7213f

Browse files
committed
Fix copyright headers in function fields
1 parent 443b754 commit 0b7213f

23 files changed

+130
-49
lines changed

src/sage/rings/function_field/constructor.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
``UniqueFactory``
2525
2626
"""
27-
#*****************************************************************************
27+
28+
# ****************************************************************************
2829
# Copyright (C) 2010 William Stein <[email protected]>
2930
# 2011 Maarten Derickx <[email protected]>
3031
# 2011-2014 Julian Rueth <[email protected]>
@@ -35,7 +36,7 @@
3536
# as published by the Free Software Foundation; either version 2 of
3637
# the License, or (at your option) any later version.
3738
# http://www.gnu.org/licenses/
38-
#*****************************************************************************
39+
# ****************************************************************************
3940

4041
from sage.structure.factory import UniqueFactory
4142

src/sage/rings/function_field/derivations.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
- Kwankyu Lee (2017-04-30): added higher derivations and completions
2121
2222
"""
23+
2324
# ****************************************************************************
2425
# Copyright (C) 2010 William Stein <[email protected]>
2526
# 2011-2017 Julian Rüth <[email protected]>

src/sage/rings/function_field/differential.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@
4545
- Kwankyu Lee (2017-04-30): initial version
4646
4747
"""
48-
#*****************************************************************************
48+
49+
# ****************************************************************************
4950
# Copyright (C) 2016-2019 Kwankyu Lee <[email protected]>
5051
# 2019 Brent Baccala
5152
# 2019 Travis Scrimshaw
@@ -54,7 +55,7 @@
5455
# as published by the Free Software Foundation; either version 2 of
5556
# the License, or (at your option) any later version.
5657
# http://www.gnu.org/licenses/
57-
#*****************************************************************************
58+
# ****************************************************************************
5859

5960
from sage.misc.latex import latex
6061

src/sage/rings/function_field/divisor.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,16 @@
3939
- Kwankyu Lee (2017-04-30): initial version
4040
4141
"""
42-
#*****************************************************************************
42+
43+
# ****************************************************************************
4344
# Copyright (C) 2016-2022 Kwankyu Lee <[email protected]>
4445
# 2019 Brent Baccala
4546
#
4647
# Distributed under the terms of the GNU General Public License (GPL)
4748
# as published by the Free Software Foundation; either version 2 of
4849
# the License, or (at your option) any later version.
4950
# http://www.gnu.org/licenses/
50-
#*****************************************************************************
51+
# ****************************************************************************
5152

5253
import random
5354

src/sage/rings/function_field/element.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ AUTHORS:
4747
- Kwankyu Lee (2017-04-30): added elements for global function fields
4848
4949
"""
50-
# ****************************************************************************
50+
# *****************************************************************************
5151
# Copyright (C) 2010 William Stein <[email protected]>
5252
# 2010 Robert Bradshaw <[email protected]>
5353
# 2011-2020 Julian Rueth <[email protected]>
@@ -63,7 +63,7 @@ AUTHORS:
6363
# as published by the Free Software Foundation; either version 2 of
6464
# the License, or (at your option) any later version.
6565
# https://www.gnu.org/licenses/
66-
# ****************************************************************************
66+
# *****************************************************************************
6767

6868
from sage.structure.element cimport FieldElement
6969
from sage.misc.cachefunc import cached_method

src/sage/rings/function_field/element_polymod.pyx

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,23 @@ r"""
33
Elements of function fields: extension
44
"""
55

6-
# ****************************************************************************
7-
# Copyright (C) 2023 Kwankyu Lee <[email protected]>
6+
# *****************************************************************************
7+
# Copyright (C) 2010 William Stein <[email protected]>
8+
# 2010 Robert Bradshaw <[email protected]>
9+
# 2011-2020 Julian Rueth <[email protected]>
10+
# 2011 Maarten Derickx <[email protected]>
11+
# 2015 Nils Bruin
12+
# 2016 Frédéric Chapoton
13+
# 2017-2019 Kwankyu Lee
14+
# 2018-2020 Travis Scrimshaw
15+
# 2019 Brent Baccala
16+
# 2021 Saher Amasha
817
#
918
# Distributed under the terms of the GNU General Public License (GPL)
1019
# as published by the Free Software Foundation; either version 2 of
1120
# the License, or (at your option) any later version.
1221
# https://www.gnu.org/licenses/
13-
# ****************************************************************************
22+
# *****************************************************************************
1423

1524
from sage.structure.richcmp cimport richcmp
1625
from sage.structure.element cimport FieldElement

src/sage/rings/function_field/element_rational.pyx

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,23 @@ r"""
22
Elements of function fields: rational
33
"""
44

5-
# ****************************************************************************
6-
# Copyright (C) 2023 Kwankyu Lee <[email protected]>
5+
# *****************************************************************************
6+
# Copyright (C) 2010 William Stein <[email protected]>
7+
# 2010 Robert Bradshaw <[email protected]>
8+
# 2011-2020 Julian Rueth <[email protected]>
9+
# 2011 Maarten Derickx <[email protected]>
10+
# 2015 Nils Bruin
11+
# 2016 Frédéric Chapoton
12+
# 2017-2019 Kwankyu Lee
13+
# 2018-2020 Travis Scrimshaw
14+
# 2019 Brent Baccala
15+
# 2021 Saher Amasha
716
#
817
# Distributed under the terms of the GNU General Public License (GPL)
918
# as published by the Free Software Foundation; either version 2 of
1019
# the License, or (at your option) any later version.
1120
# https://www.gnu.org/licenses/
12-
# ****************************************************************************
21+
# *****************************************************************************
1322

1423
from sage.structure.richcmp cimport richcmp, richcmp_not_equal
1524
from sage.structure.element cimport FieldElement

src/sage/rings/function_field/function_field.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@
210210
211211
"""
212212

213-
# ****************************************************************************
213+
# *****************************************************************************
214214
# Copyright (C) 2010 William Stein <[email protected]>
215215
# 2010 Robert Bradshaw <[email protected]>
216216
# 2011-2018 Julian Rüth <[email protected]>
@@ -231,7 +231,7 @@
231231
# as published by the Free Software Foundation; either version 2 of
232232
# the License, or (at your option) any later version.
233233
# https://www.gnu.org/licenses/
234-
# ****************************************************************************
234+
# *****************************************************************************
235235

236236
from sage.misc.cachefunc import cached_method
237237
from sage.misc.lazy_import import LazyImport

src/sage/rings/function_field/function_field_polymod.py

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,28 @@
33
Function Fields: extension
44
"""
55

6-
#*****************************************************************************
7-
# Copyright (C) 2023 Kwankyu Lee <[email protected]>
6+
# *****************************************************************************
7+
# Copyright (C) 2010 William Stein <[email protected]>
8+
# 2010 Robert Bradshaw <[email protected]>
9+
# 2011-2018 Julian Rüth <[email protected]>
10+
# 2011 Maarten Derickx <[email protected]>
11+
# 2011 Syed Ahmad Lavasani
12+
# 2013-2014 Simon King
13+
# 2017 Dean Bisogno
14+
# 2017 Alyson Deines
15+
# 2017-2019 David Roe
16+
# 2017-2022 Kwankyu Lee
17+
# 2018 Marc Mezzarobba
18+
# 2018 Wilfried Luebbe
19+
# 2019 Brent Baccala
20+
# 2022 Frédéric Chapoton
21+
# 2022 Gonzalo Tornaría
822
#
923
# Distributed under the terms of the GNU General Public License (GPL)
1024
# as published by the Free Software Foundation; either version 2 of
1125
# the License, or (at your option) any later version.
1226
# http://www.gnu.org/licenses/
13-
#*****************************************************************************
27+
# *****************************************************************************
1428

1529
from sage.arith.functions import lcm
1630
from sage.misc.cachefunc import cached_method

src/sage/rings/function_field/function_field_rational.py

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,28 @@
22
Function Fields: rational
33
"""
44

5-
#*****************************************************************************
6-
# Copyright (C) 2023 Kwankyu Lee <[email protected]>
5+
# *****************************************************************************
6+
# Copyright (C) 2010 William Stein <[email protected]>
7+
# 2010 Robert Bradshaw <[email protected]>
8+
# 2011-2018 Julian Rüth <[email protected]>
9+
# 2011 Maarten Derickx <[email protected]>
10+
# 2011 Syed Ahmad Lavasani
11+
# 2013-2014 Simon King
12+
# 2017 Dean Bisogno
13+
# 2017 Alyson Deines
14+
# 2017-2019 David Roe
15+
# 2017-2022 Kwankyu Lee
16+
# 2018 Marc Mezzarobba
17+
# 2018 Wilfried Luebbe
18+
# 2019 Brent Baccala
19+
# 2022 Frédéric Chapoton
20+
# 2022 Gonzalo Tornaría
721
#
822
# Distributed under the terms of the GNU General Public License (GPL)
923
# as published by the Free Software Foundation; either version 2 of
1024
# the License, or (at your option) any later version.
1125
# http://www.gnu.org/licenses/
12-
#*****************************************************************************
26+
# *****************************************************************************
1327

1428
from sage.arith.functions import lcm
1529
from sage.misc.cachefunc import cached_method

0 commit comments

Comments
 (0)