@@ -173,24 +173,27 @@ library which are implemented in C; each one builds a DLL (renamed to
173
173
* _asyncio
174
174
* _ctypes
175
175
* _ctypes_test
176
- * _zoneinfo
177
176
* _decimal
178
177
* _elementtree
179
178
* _hashlib
180
179
* _multiprocessing
181
180
* _overlapped
181
+ * _queue
182
+ * _remote_debugging
182
183
* _socket
183
184
* _testbuffer
184
185
* _testcapi
185
- * _testlimitedcapi
186
- * _testinternalcapi
187
186
* _testclinic
188
187
* _testclinic_limited
189
188
* _testconsole
190
189
* _testimportmultiple
190
+ * _testinternalcapi
191
+ * _testlimitedcapi
191
192
* _testmultiphase
192
193
* _testsinglephase
193
- * _tkinter
194
+ * _uuid
195
+ * _wmi
196
+ * _zoneinfo
194
197
* pyexpat
195
198
* select
196
199
* unicodedata
@@ -202,18 +205,22 @@ interpreter, but they do implement several major features. See the
202
205
"Getting External Sources" section below for additional information
203
206
about getting the source for building these libraries. The sub-projects
204
207
are:
208
+
205
209
_bz2
206
210
Python wrapper for version 1.0.8 of the libbzip2 compression library
207
211
Homepage:
208
212
http://www.bzip.org/
213
+
209
214
_lzma
210
- Python wrapper for version 5.2.2 of the liblzma compression library
215
+ Python wrapper for version 5.2.2 of the liblzma compression library,
216
+ which is itself built by liblzma.vcxproj.
211
217
Homepage:
212
218
https://tukaani.org/xz/
219
+
213
220
_ssl
214
221
Python wrapper for version 3.0.15 of the OpenSSL secure sockets
215
- library, which is downloaded from our binaries repository at
216
- https://github.com/python/cpython-bin-deps.
222
+ library, which is itself downloaded from our binaries repository at
223
+ https://github.com/python/cpython-bin-deps and built by openssl.vcxproj .
217
224
218
225
Homepage:
219
226
https://www.openssl.org/
@@ -233,6 +240,7 @@ _sqlite3
233
240
Wraps SQLite 3.49.1, which is itself built by sqlite3.vcxproj
234
241
Homepage:
235
242
https://www.sqlite.org/
243
+
236
244
_tkinter
237
245
Wraps version 8.6.15 of the Tk windowing system, which is downloaded
238
246
from our binaries repository at
@@ -245,13 +253,20 @@ _tkinter
245
253
PCbuild\prepare_tcltk.bat. This will retrieve the version of the
246
254
sources matched to the current commit from the Tcl and Tk branches
247
255
in our source repository at
248
- https://github.com/python/cpython-source-deps.
256
+ https://github.com/python/cpython-source-deps and build them via the
257
+ tcl.vcxproj and tk.vcxproj sub-projects.
249
258
250
259
The two projects install their respective components in a
251
260
directory alongside the source directories called "tcltk" on
252
261
Win32 and "tcltk64" on x64. They also copy the Tcl and Tk DLLs
253
262
into the current output directory, which should ensure that Tkinter
254
263
is able to load Tcl/Tk without having to change your PATH.
264
+
265
+ _zstd
266
+ Python wrapper for version 1.5.7 of the zstd compression library
267
+ Homepage:
268
+ https://facebook.github.io/zstd/
269
+
255
270
zlib-ng
256
271
Compiles zlib-ng as a static library, which is later included by
257
272
pythoncore.vcxproj. This was generated using CMake against zlib-ng
0 commit comments