mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-06 03:15:23 +01:00
Change Python -> python
(lowercase convention)
This commit is contained in:
parent
a4d1a445ac
commit
6ec368ce37
46 changed files with 30 additions and 30 deletions
20
sysc/python-3.8.16/patches/maxgroups.patch
Normal file
20
sysc/python-3.8.16/patches/maxgroups.patch
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
|
||||
|
||||
SPDX-License-Identifier: PSF-2.0
|
||||
|
||||
MAXGROUPS constant was introduced in this upgrade. Hardcode it
|
||||
from a "normal" system. This seems particularly unproblematic
|
||||
if it is wrong, since it does next to nothing.
|
||||
|
||||
--- Lib/sre_constants.py 2022-12-20 12:05:01.176104156 +1100
|
||||
+++ Lib/sre_constants.py 2022-12-20 12:05:21.710376396 +1100
|
||||
@@ -15,7 +15,8 @@
|
||||
|
||||
MAGIC = 20171005
|
||||
|
||||
-from _sre import MAXREPEAT, MAXGROUPS
|
||||
+from _sre import MAXREPEAT
|
||||
+MAXGROUPS = 1073741823
|
||||
|
||||
# SRE standard exception (access as sre.error)
|
||||
# should this really be here?
|
||||
Loading…
Add table
Add a link
Reference in a new issue