Files
Joshua Root 3173d46b9a python312: stable release replacing python312-devel
Also added py312 subports to dependencies needed for pep517 build of
py312-gdbm and py312-tkinter, and defaulting to pep517 for all versions
supported by py-installer.
2023-10-03 05:28:49 +11:00

12 lines
507 B
Diff

--- Lib/sysconfig.py.orig 2021-03-02 03:48:59.000000000 +1100
+++ Lib/sysconfig.py 2021-03-18 00:19:40.000000000 +1100
@@ -429,7 +429,7 @@
f.write('# system configuration generated and used by'
' the sysconfig module\n')
f.write('build_time_vars = ')
- pprint.pprint(vars, stream=f)
+ pprint.pprint(vars, stream=f, width=4000)
# Create file used for sys.path fixup -- see Modules/getpath.c
with open('pybuilddir.txt', 'w', encoding='utf8') as f: