From 141eb88c9c4ab810d7988f0ebd17c83a6c11a8b7 Mon Sep 17 00:00:00 2001 From: Sergey B Kirpichev Date: Sat, 6 Jan 2024 11:17:32 +0300 Subject: [PATCH] Update copyright --- docs/conf.py | 2 +- src/gmpy2.c | 2 +- src/gmpy2.h | 2 +- src/gmpy2_abs.c | 2 +- src/gmpy2_abs.h | 2 +- src/gmpy2_add.c | 2 +- src/gmpy2_add.h | 2 +- src/gmpy2_binary.c | 2 +- src/gmpy2_binary.h | 2 +- src/gmpy2_cache.c | 2 +- src/gmpy2_cache.h | 2 +- src/gmpy2_cmp.c | 2 +- src/gmpy2_cmp.h | 2 +- src/gmpy2_const.c | 2 +- src/gmpy2_const.h | 2 +- src/gmpy2_context.c | 2 +- src/gmpy2_context.h | 2 +- src/gmpy2_convert.c | 2 +- src/gmpy2_convert.h | 2 +- src/gmpy2_convert_gmp.c | 2 +- src/gmpy2_convert_gmp.h | 2 +- src/gmpy2_convert_mpc.c | 2 +- src/gmpy2_convert_mpc.h | 2 +- src/gmpy2_convert_mpfr.c | 2 +- src/gmpy2_convert_mpfr.h | 2 +- src/gmpy2_convert_utils.c | 2 +- src/gmpy2_convert_utils.h | 2 +- src/gmpy2_divmod.c | 2 +- src/gmpy2_divmod.h | 2 +- src/gmpy2_floordiv.c | 2 +- src/gmpy2_floordiv.h | 2 +- src/gmpy2_format.c | 2 +- src/gmpy2_format.h | 2 +- src/gmpy2_fused.c | 2 +- src/gmpy2_fused.h | 2 +- src/gmpy2_hash.c | 2 +- src/gmpy2_hash.h | 2 +- src/gmpy2_macros.h | 2 +- src/gmpy2_math.c | 2 +- src/gmpy2_math.h | 2 +- src/gmpy2_minus.c | 2 +- src/gmpy2_minus.h | 2 +- src/gmpy2_misc.c | 2 +- src/gmpy2_misc.h | 2 +- src/gmpy2_mod.c | 2 +- src/gmpy2_mod.h | 2 +- src/gmpy2_mpc.c | 2 +- src/gmpy2_mpc.h | 2 +- src/gmpy2_mpc_misc.c | 2 +- src/gmpy2_mpc_misc.h | 2 +- src/gmpy2_mpfr.c | 2 +- src/gmpy2_mpfr.h | 2 +- src/gmpy2_mpfr_misc.c | 2 +- src/gmpy2_mpfr_misc.h | 2 +- src/gmpy2_mpmath.c | 2 +- src/gmpy2_mpq.c | 2 +- src/gmpy2_mpq.h | 2 +- src/gmpy2_mpq_misc.c | 2 +- src/gmpy2_mpq_misc.h | 2 +- src/gmpy2_mpz.c | 2 +- src/gmpy2_mpz.h | 2 +- src/gmpy2_mpz_bitops.c | 2 +- src/gmpy2_mpz_bitops.h | 2 +- src/gmpy2_mpz_divmod.c | 2 +- src/gmpy2_mpz_divmod.h | 2 +- src/gmpy2_mpz_divmod2exp.c | 2 +- src/gmpy2_mpz_divmod2exp.h | 2 +- src/gmpy2_mpz_misc.c | 2 +- src/gmpy2_mpz_misc.h | 2 +- src/gmpy2_mpz_pack.c | 2 +- src/gmpy2_mpz_pack.h | 2 +- src/gmpy2_mul.c | 2 +- src/gmpy2_mul.h | 2 +- src/gmpy2_muldiv_2exp.c | 2 +- src/gmpy2_muldiv_2exp.h | 2 +- src/gmpy2_plus.c | 2 +- src/gmpy2_plus.h | 2 +- src/gmpy2_pow.c | 2 +- src/gmpy2_pow.h | 2 +- src/gmpy2_predicate.c | 2 +- src/gmpy2_predicate.h | 2 +- src/gmpy2_random.c | 2 +- src/gmpy2_random.h | 2 +- src/gmpy2_richcompare.c | 2 +- src/gmpy2_richcompare.h | 2 +- src/gmpy2_sign.c | 2 +- src/gmpy2_sign.h | 2 +- src/gmpy2_square.c | 2 +- src/gmpy2_square.h | 2 +- src/gmpy2_sub.c | 2 +- src/gmpy2_sub.h | 2 +- src/gmpy2_truediv.c | 2 +- src/gmpy2_truediv.h | 2 +- src/gmpy2_types.h | 2 +- src/gmpy2_vector.c | 2 +- src/gmpy2_vector.h | 2 +- src/gmpy2_xmpz.c | 2 +- src/gmpy2_xmpz.h | 2 +- src/gmpy2_xmpz_inplace.c | 2 +- src/gmpy2_xmpz_inplace.h | 2 +- src/gmpy2_xmpz_misc.c | 2 +- src/gmpy2_xmpz_misc.h | 2 +- src/gmpy_mpz_lucas.c | 2 +- src/gmpy_mpz_lucas.h | 2 +- src/gmpy_mpz_prp.c | 2 +- src/gmpy_mpz_prp.h | 2 +- 106 files changed, 106 insertions(+), 106 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 91cdf837..882c4194 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,7 +48,7 @@ # General information about the project. project = gmpy2.__package__ -copyright = '2012 - 2023, Case Van Horsen' +copyright = '2012 - 2024, Case Van Horsen' gmpy2_version = packaging.version.parse(gmpy2.__version__) diff --git a/src/gmpy2.c b/src/gmpy2.c index 8f0326e0..aab8c22d 100644 --- a/src/gmpy2.c +++ b/src/gmpy2.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2.h b/src/gmpy2.h index d09ae8ca..03a8443d 100644 --- a/src/gmpy2.h +++ b/src/gmpy2.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_abs.c b/src/gmpy2_abs.c index a9c51e4e..566370a4 100644 --- a/src/gmpy2_abs.c +++ b/src/gmpy2_abs.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_abs.h b/src/gmpy2_abs.h index 36918770..d7957ddc 100644 --- a/src/gmpy2_abs.h +++ b/src/gmpy2_abs.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_add.c b/src/gmpy2_add.c index 53a81fb4..b74c1ec3 100644 --- a/src/gmpy2_add.c +++ b/src/gmpy2_add.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_add.h b/src/gmpy2_add.h index 062187de..bee4f127 100644 --- a/src/gmpy2_add.h +++ b/src/gmpy2_add.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_binary.c b/src/gmpy2_binary.c index 9b043bbc..d46e2d22 100644 --- a/src/gmpy2_binary.c +++ b/src/gmpy2_binary.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_binary.h b/src/gmpy2_binary.h index be342a1f..624f5def 100644 --- a/src/gmpy2_binary.h +++ b/src/gmpy2_binary.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_cache.c b/src/gmpy2_cache.c index 65169c31..8df8349b 100644 --- a/src/gmpy2_cache.c +++ b/src/gmpy2_cache.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_cache.h b/src/gmpy2_cache.h index 16d77e11..028a0677 100644 --- a/src/gmpy2_cache.h +++ b/src/gmpy2_cache.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_cmp.c b/src/gmpy2_cmp.c index dd595b4d..01039a9d 100644 --- a/src/gmpy2_cmp.c +++ b/src/gmpy2_cmp.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_cmp.h b/src/gmpy2_cmp.h index ac6b19ed..5d18214d 100644 --- a/src/gmpy2_cmp.h +++ b/src/gmpy2_cmp.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_const.c b/src/gmpy2_const.c index e650ce92..348026ac 100644 --- a/src/gmpy2_const.c +++ b/src/gmpy2_const.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_const.h b/src/gmpy2_const.h index 22b25a53..28554a7b 100644 --- a/src/gmpy2_const.h +++ b/src/gmpy2_const.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_context.c b/src/gmpy2_context.c index d5aa844d..f33b8069 100644 --- a/src/gmpy2_context.c +++ b/src/gmpy2_context.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_context.h b/src/gmpy2_context.h index d70fb791..6fa82c20 100644 --- a/src/gmpy2_context.h +++ b/src/gmpy2_context.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_convert.c b/src/gmpy2_convert.c index 535e9589..79059aab 100644 --- a/src/gmpy2_convert.c +++ b/src/gmpy2_convert.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_convert.h b/src/gmpy2_convert.h index 51bdb397..40e59e05 100644 --- a/src/gmpy2_convert.h +++ b/src/gmpy2_convert.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_convert_gmp.c b/src/gmpy2_convert_gmp.c index 72a5bda0..7321affd 100644 --- a/src/gmpy2_convert_gmp.c +++ b/src/gmpy2_convert_gmp.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * * * GMPY2 is free software: you can redistribute it and/or modify it under * diff --git a/src/gmpy2_convert_gmp.h b/src/gmpy2_convert_gmp.h index b7ec57ab..8d73d060 100644 --- a/src/gmpy2_convert_gmp.h +++ b/src/gmpy2_convert_gmp.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_convert_mpc.c b/src/gmpy2_convert_mpc.c index 308ead6a..ebd27b27 100644 --- a/src/gmpy2_convert_mpc.c +++ b/src/gmpy2_convert_mpc.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_convert_mpc.h b/src/gmpy2_convert_mpc.h index e5a9001e..fca78adf 100644 --- a/src/gmpy2_convert_mpc.h +++ b/src/gmpy2_convert_mpc.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_convert_mpfr.c b/src/gmpy2_convert_mpfr.c index e76d1f77..43176387 100644 --- a/src/gmpy2_convert_mpfr.c +++ b/src/gmpy2_convert_mpfr.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_convert_mpfr.h b/src/gmpy2_convert_mpfr.h index c910ca54..9f4d2f89 100644 --- a/src/gmpy2_convert_mpfr.h +++ b/src/gmpy2_convert_mpfr.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_convert_utils.c b/src/gmpy2_convert_utils.c index f711d82b..824eb174 100644 --- a/src/gmpy2_convert_utils.c +++ b/src/gmpy2_convert_utils.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_convert_utils.h b/src/gmpy2_convert_utils.h index f3bad553..23d12955 100644 --- a/src/gmpy2_convert_utils.h +++ b/src/gmpy2_convert_utils.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_divmod.c b/src/gmpy2_divmod.c index 0c98ce56..2792602f 100644 --- a/src/gmpy2_divmod.c +++ b/src/gmpy2_divmod.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_divmod.h b/src/gmpy2_divmod.h index 9cc46927..6f665683 100644 --- a/src/gmpy2_divmod.h +++ b/src/gmpy2_divmod.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_floordiv.c b/src/gmpy2_floordiv.c index 503e2862..9988976f 100644 --- a/src/gmpy2_floordiv.c +++ b/src/gmpy2_floordiv.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_floordiv.h b/src/gmpy2_floordiv.h index f10fa025..fd04d695 100644 --- a/src/gmpy2_floordiv.h +++ b/src/gmpy2_floordiv.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_format.c b/src/gmpy2_format.c index c99640b4..3c9565eb 100644 --- a/src/gmpy2_format.c +++ b/src/gmpy2_format.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_format.h b/src/gmpy2_format.h index 2715ca53..47ad82bb 100644 --- a/src/gmpy2_format.h +++ b/src/gmpy2_format.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_fused.c b/src/gmpy2_fused.c index 8a710117..3c737e00 100644 --- a/src/gmpy2_fused.c +++ b/src/gmpy2_fused.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_fused.h b/src/gmpy2_fused.h index bcd5f8b3..ad3ddc66 100644 --- a/src/gmpy2_fused.h +++ b/src/gmpy2_fused.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_hash.c b/src/gmpy2_hash.c index 054ff89f..d8d045cd 100644 --- a/src/gmpy2_hash.c +++ b/src/gmpy2_hash.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_hash.h b/src/gmpy2_hash.h index 02a1e164..510e192b 100644 --- a/src/gmpy2_hash.h +++ b/src/gmpy2_hash.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_macros.h b/src/gmpy2_macros.h index 5fb441b9..5e5a0268 100644 --- a/src/gmpy2_macros.h +++ b/src/gmpy2_macros.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_math.c b/src/gmpy2_math.c index a4c01485..deac8c37 100644 --- a/src/gmpy2_math.c +++ b/src/gmpy2_math.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_math.h b/src/gmpy2_math.h index 999288bb..89530fb6 100644 --- a/src/gmpy2_math.h +++ b/src/gmpy2_math.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_minus.c b/src/gmpy2_minus.c index 2ed02b2e..805c443f 100644 --- a/src/gmpy2_minus.c +++ b/src/gmpy2_minus.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_minus.h b/src/gmpy2_minus.h index ea8fee2d..4fb98fcf 100644 --- a/src/gmpy2_minus.h +++ b/src/gmpy2_minus.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_misc.c b/src/gmpy2_misc.c index e383290d..658f6454 100644 --- a/src/gmpy2_misc.c +++ b/src/gmpy2_misc.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_misc.h b/src/gmpy2_misc.h index 0458dacf..3001fdf6 100644 --- a/src/gmpy2_misc.h +++ b/src/gmpy2_misc.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mod.c b/src/gmpy2_mod.c index 2a65469a..7b17fff1 100644 --- a/src/gmpy2_mod.c +++ b/src/gmpy2_mod.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mod.h b/src/gmpy2_mod.h index bba58f4d..943c8d67 100644 --- a/src/gmpy2_mod.h +++ b/src/gmpy2_mod.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpc.c b/src/gmpy2_mpc.c index a73fb6ae..790fab64 100644 --- a/src/gmpy2_mpc.c +++ b/src/gmpy2_mpc.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpc.h b/src/gmpy2_mpc.h index d469596a..bc3d4d58 100644 --- a/src/gmpy2_mpc.h +++ b/src/gmpy2_mpc.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpc_misc.c b/src/gmpy2_mpc_misc.c index 74644c6b..5e30c454 100644 --- a/src/gmpy2_mpc_misc.c +++ b/src/gmpy2_mpc_misc.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpc_misc.h b/src/gmpy2_mpc_misc.h index 7bdd0abc..47f7956f 100644 --- a/src/gmpy2_mpc_misc.h +++ b/src/gmpy2_mpc_misc.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpfr.c b/src/gmpy2_mpfr.c index ec05008e..ec4e4574 100644 --- a/src/gmpy2_mpfr.c +++ b/src/gmpy2_mpfr.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpfr.h b/src/gmpy2_mpfr.h index 0d4c6e13..b51ed5fa 100644 --- a/src/gmpy2_mpfr.h +++ b/src/gmpy2_mpfr.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpfr_misc.c b/src/gmpy2_mpfr_misc.c index ccdfa8a0..94aa7b9b 100644 --- a/src/gmpy2_mpfr_misc.c +++ b/src/gmpy2_mpfr_misc.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpfr_misc.h b/src/gmpy2_mpfr_misc.h index 04ecbed7..236ae497 100644 --- a/src/gmpy2_mpfr_misc.h +++ b/src/gmpy2_mpfr_misc.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpmath.c b/src/gmpy2_mpmath.c index 9c1ab1e3..7258ff69 100644 --- a/src/gmpy2_mpmath.c +++ b/src/gmpy2_mpmath.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpq.c b/src/gmpy2_mpq.c index 186609e9..5b3f8063 100644 --- a/src/gmpy2_mpq.c +++ b/src/gmpy2_mpq.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpq.h b/src/gmpy2_mpq.h index f33ab711..d66d9372 100644 --- a/src/gmpy2_mpq.h +++ b/src/gmpy2_mpq.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpq_misc.c b/src/gmpy2_mpq_misc.c index 4ace75b1..f546aa6f 100644 --- a/src/gmpy2_mpq_misc.c +++ b/src/gmpy2_mpq_misc.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpq_misc.h b/src/gmpy2_mpq_misc.h index 1c6197c9..56959127 100644 --- a/src/gmpy2_mpq_misc.h +++ b/src/gmpy2_mpq_misc.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpz.c b/src/gmpy2_mpz.c index ab4a0c92..5e8067ec 100644 --- a/src/gmpy2_mpz.c +++ b/src/gmpy2_mpz.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpz.h b/src/gmpy2_mpz.h index 423a6dde..e55623fd 100644 --- a/src/gmpy2_mpz.h +++ b/src/gmpy2_mpz.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpz_bitops.c b/src/gmpy2_mpz_bitops.c index 610892c9..c18e6098 100644 --- a/src/gmpy2_mpz_bitops.c +++ b/src/gmpy2_mpz_bitops.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpz_bitops.h b/src/gmpy2_mpz_bitops.h index b70427cb..b18c6837 100644 --- a/src/gmpy2_mpz_bitops.h +++ b/src/gmpy2_mpz_bitops.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpz_divmod.c b/src/gmpy2_mpz_divmod.c index 3be7bd2d..3e18ac30 100644 --- a/src/gmpy2_mpz_divmod.c +++ b/src/gmpy2_mpz_divmod.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpz_divmod.h b/src/gmpy2_mpz_divmod.h index b7539dec..8153cbe7 100644 --- a/src/gmpy2_mpz_divmod.h +++ b/src/gmpy2_mpz_divmod.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpz_divmod2exp.c b/src/gmpy2_mpz_divmod2exp.c index 13880e52..968996a5 100644 --- a/src/gmpy2_mpz_divmod2exp.c +++ b/src/gmpy2_mpz_divmod2exp.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpz_divmod2exp.h b/src/gmpy2_mpz_divmod2exp.h index 7984c3bf..99ad732b 100644 --- a/src/gmpy2_mpz_divmod2exp.h +++ b/src/gmpy2_mpz_divmod2exp.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpz_misc.c b/src/gmpy2_mpz_misc.c index d38fed4a..8c9fd497 100644 --- a/src/gmpy2_mpz_misc.c +++ b/src/gmpy2_mpz_misc.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpz_misc.h b/src/gmpy2_mpz_misc.h index a4b388ff..193ed471 100644 --- a/src/gmpy2_mpz_misc.h +++ b/src/gmpy2_mpz_misc.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpz_pack.c b/src/gmpy2_mpz_pack.c index e6be7cdc..fc1fd0a9 100644 --- a/src/gmpy2_mpz_pack.c +++ b/src/gmpy2_mpz_pack.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mpz_pack.h b/src/gmpy2_mpz_pack.h index a185033e..6aa5d2b5 100644 --- a/src/gmpy2_mpz_pack.h +++ b/src/gmpy2_mpz_pack.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mul.c b/src/gmpy2_mul.c index 20b229dd..790e35be 100644 --- a/src/gmpy2_mul.c +++ b/src/gmpy2_mul.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_mul.h b/src/gmpy2_mul.h index 263e4e94..41d9cbf9 100644 --- a/src/gmpy2_mul.h +++ b/src/gmpy2_mul.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_muldiv_2exp.c b/src/gmpy2_muldiv_2exp.c index 16ee1fc9..937b1d6e 100644 --- a/src/gmpy2_muldiv_2exp.c +++ b/src/gmpy2_muldiv_2exp.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_muldiv_2exp.h b/src/gmpy2_muldiv_2exp.h index af84936b..f49f68c7 100644 --- a/src/gmpy2_muldiv_2exp.h +++ b/src/gmpy2_muldiv_2exp.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_plus.c b/src/gmpy2_plus.c index 8f732923..b2357014 100644 --- a/src/gmpy2_plus.c +++ b/src/gmpy2_plus.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_plus.h b/src/gmpy2_plus.h index 7c9815ce..07fdc5ad 100644 --- a/src/gmpy2_plus.h +++ b/src/gmpy2_plus.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_pow.c b/src/gmpy2_pow.c index c5226d4b..c191bdd6 100644 --- a/src/gmpy2_pow.c +++ b/src/gmpy2_pow.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_pow.h b/src/gmpy2_pow.h index 6f713b7c..9d2ddece 100644 --- a/src/gmpy2_pow.h +++ b/src/gmpy2_pow.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_predicate.c b/src/gmpy2_predicate.c index c7bf40cb..fd7dd898 100644 --- a/src/gmpy2_predicate.c +++ b/src/gmpy2_predicate.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_predicate.h b/src/gmpy2_predicate.h index 99150e76..474fa5b0 100644 --- a/src/gmpy2_predicate.h +++ b/src/gmpy2_predicate.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_random.c b/src/gmpy2_random.c index 5eb12cc2..2134a807 100644 --- a/src/gmpy2_random.c +++ b/src/gmpy2_random.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_random.h b/src/gmpy2_random.h index fef655ed..212bc89c 100644 --- a/src/gmpy2_random.h +++ b/src/gmpy2_random.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_richcompare.c b/src/gmpy2_richcompare.c index af94c69b..046fad1d 100644 --- a/src/gmpy2_richcompare.c +++ b/src/gmpy2_richcompare.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_richcompare.h b/src/gmpy2_richcompare.h index fc6bb53c..aa84657f 100644 --- a/src/gmpy2_richcompare.h +++ b/src/gmpy2_richcompare.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_sign.c b/src/gmpy2_sign.c index 3c5e8549..59a6a65e 100644 --- a/src/gmpy2_sign.c +++ b/src/gmpy2_sign.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_sign.h b/src/gmpy2_sign.h index b6f4c441..feba436c 100644 --- a/src/gmpy2_sign.h +++ b/src/gmpy2_sign.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_square.c b/src/gmpy2_square.c index d81eea41..dbdd9b19 100644 --- a/src/gmpy2_square.c +++ b/src/gmpy2_square.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_square.h b/src/gmpy2_square.h index 8e739838..f38daa25 100644 --- a/src/gmpy2_square.h +++ b/src/gmpy2_square.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_sub.c b/src/gmpy2_sub.c index 16fc3428..5302f935 100644 --- a/src/gmpy2_sub.c +++ b/src/gmpy2_sub.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_sub.h b/src/gmpy2_sub.h index 422e3109..83bd6433 100644 --- a/src/gmpy2_sub.h +++ b/src/gmpy2_sub.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_truediv.c b/src/gmpy2_truediv.c index f581d48b..e0dadbaf 100644 --- a/src/gmpy2_truediv.c +++ b/src/gmpy2_truediv.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_truediv.h b/src/gmpy2_truediv.h index d17d2af2..7386ff3e 100644 --- a/src/gmpy2_truediv.h +++ b/src/gmpy2_truediv.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_types.h b/src/gmpy2_types.h index eff60e1a..32337771 100644 --- a/src/gmpy2_types.h +++ b/src/gmpy2_types.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_vector.c b/src/gmpy2_vector.c index 066550d4..2c0fa54e 100644 --- a/src/gmpy2_vector.c +++ b/src/gmpy2_vector.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_vector.h b/src/gmpy2_vector.h index 5097fcd9..21ad2cb2 100644 --- a/src/gmpy2_vector.h +++ b/src/gmpy2_vector.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_xmpz.c b/src/gmpy2_xmpz.c index 440e368e..0db07fc0 100644 --- a/src/gmpy2_xmpz.c +++ b/src/gmpy2_xmpz.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_xmpz.h b/src/gmpy2_xmpz.h index 5945e601..136bf8f1 100644 --- a/src/gmpy2_xmpz.h +++ b/src/gmpy2_xmpz.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_xmpz_inplace.c b/src/gmpy2_xmpz_inplace.c index c864fd83..5ea82aca 100644 --- a/src/gmpy2_xmpz_inplace.c +++ b/src/gmpy2_xmpz_inplace.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_xmpz_inplace.h b/src/gmpy2_xmpz_inplace.h index 99cf921b..f52737b9 100644 --- a/src/gmpy2_xmpz_inplace.h +++ b/src/gmpy2_xmpz_inplace.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_xmpz_misc.c b/src/gmpy2_xmpz_misc.c index aa4a6d6e..f5eb6b32 100644 --- a/src/gmpy2_xmpz_misc.c +++ b/src/gmpy2_xmpz_misc.c @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy2_xmpz_misc.h b/src/gmpy2_xmpz_misc.h index b8f6962a..8d3065af 100644 --- a/src/gmpy2_xmpz_misc.h +++ b/src/gmpy2_xmpz_misc.h @@ -6,7 +6,7 @@ * * * Copyright 2000 - 2009 Alex Martelli * * * - * Copyright 2008 - 2023 Case Van Horsen * + * Copyright 2008 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy_mpz_lucas.c b/src/gmpy_mpz_lucas.c index 5e2748c8..a45ab954 100644 --- a/src/gmpy_mpz_lucas.c +++ b/src/gmpy_mpz_lucas.c @@ -6,7 +6,7 @@ * * * Copyright 2011 David Cleaver * * * - * Copyright 2012 - 2023 Case Van Horsen * + * Copyright 2012 - 2024 Case Van Horsen * * * * The original file is available at: * * * diff --git a/src/gmpy_mpz_lucas.h b/src/gmpy_mpz_lucas.h index 197d1e12..537c1010 100644 --- a/src/gmpy_mpz_lucas.h +++ b/src/gmpy_mpz_lucas.h @@ -4,7 +4,7 @@ * Python interface to the GMP, MPFR, and MPC multiple precision * * libraries. * * * - * Copyright 2012 - 2023 Case Van Horsen * + * Copyright 2012 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * * diff --git a/src/gmpy_mpz_prp.c b/src/gmpy_mpz_prp.c index cad50ab9..c28452f6 100644 --- a/src/gmpy_mpz_prp.c +++ b/src/gmpy_mpz_prp.c @@ -6,7 +6,7 @@ * * * Copyright 2011 David Cleaver * * * - * Copyright 2012 - 2023 Case Van Horsen * + * Copyright 2012 - 2024 Case Van Horsen * * * * The original file is available at: * * * diff --git a/src/gmpy_mpz_prp.h b/src/gmpy_mpz_prp.h index 1775fce7..5d91a118 100644 --- a/src/gmpy_mpz_prp.h +++ b/src/gmpy_mpz_prp.h @@ -4,7 +4,7 @@ * Python interface to the GMP, MPFR, and MPC multiple precision * * libraries. * * * - * Copyright 2012 - 2023 Case Van Horsen * + * Copyright 2012 - 2024 Case Van Horsen * * * * This file is part of GMPY2. * * *