• Home
Name Date Size #Lines LOC

..--

clinic/04-Jul-2025-2,7272,240

icons/04-Jul-2025-88

layout/04-Jul-2025-1,9871,642

WinMain.cD04-Jul-2025492 1813

_testconsole.cD04-Jul-20254.4 KiB170103

_wmimodule.cppD04-Jul-202511 KiB393296

classicAppCompat.can.xmlD04-Jul-20256.9 KiB11

classicAppCompat.catD04-Jul-202510.7 KiB

classicAppCompat.sccdD04-Jul-202522.6 KiB4241

config.cD04-Jul-20255.9 KiB184152

config_minimal.cD04-Jul-20251.7 KiB6441

crtlicense.txtD04-Jul-20251.7 KiB4230

dl_nt.cD04-Jul-2025808 3720

errmap.hD04-Jul-20255 KiB144121

frozen_dllmain.cD04-Jul-20253.9 KiB13564

invalid_parameter_handler.cD04-Jul-2025549 2312

launcher-usage.txtD04-Jul-20251.1 KiB3222

launcher.cD04-Jul-202565.6 KiB2,0451,638

launcher2.cD04-Jul-202587 KiB2,8302,179

msvcrtmodule.cD04-Jul-202516.8 KiB675317

pyconfig.h.inD04-Jul-202522.3 KiB760597

pylauncher.rcD04-Jul-20251.6 KiB6760

pyshellext.cppD04-Jul-202518.3 KiB608499

pyshellext.defD04-Jul-2025120 65

pyshellext.rcD04-Jul-20251.2 KiB5146

python.manifestD04-Jul-20251.3 KiB3130

python3dll.cD04-Jul-202529.5 KiB919911

python_exe.rcD04-Jul-20251.3 KiB5547

python_nt.rcD04-Jul-20251.2 KiB5246

python_uwp.cppD04-Jul-20257.2 KiB288246

python_ver_rc.hD04-Jul-2025969 3523

pythonw_exe.rcD04-Jul-20251.3 KiB5547

readme.txtD04-Jul-20253.1 KiB7154

sqlite3.rcD04-Jul-20251.4 KiB5548

store_info.txtD04-Jul-20256.2 KiB157107

validate_ucrtbase.pyD04-Jul-20252.7 KiB9070

venvlauncher.cD04-Jul-202513.2 KiB511388

winreg.cD04-Jul-202566.4 KiB2,2191,406

winsound.cD04-Jul-20257.3 KiB266158

readme.txt

1Welcome to the "PC" subdirectory of the Python distribution
2***********************************************************
3
4This "PC" subdirectory contains complete project files to make
5several older PC ports of Python, as well as all the PC-specific
6Python source files.  It should be located in the root of the
7Python distribution, and there should be directories "Modules",
8"Objects", "Python", etc. in the parent directory of this "PC"
9subdirectory.  Be sure to read the documentation in the Python
10distribution.
11
12Python requires library files such as string.py to be available in
13one or more library directories.  The search path of libraries is
14set up when Python starts.  To see the current Python library search
15path, start Python and enter "import sys" and "print sys.path".
16
17All PC ports use this scheme to try to set up a module search path:
18
19  1) The script location; the current directory without script.
20  2) The PYTHONPATH variable, if set.
21  3) Paths specified in the Registry.
22  4) Default directories lib, lib/win, lib/test, lib/tkinter;
23     these are searched relative to the environment variable
24     PYTHONHOME, if set, or relative to the executable and its
25     ancestors, if a landmark file (Lib/string.py) is found ,
26     or the current directory (not useful).
27  5) The directory containing the executable.
28
29The best installation strategy is to put the Python executable and
30DLL in some convenient directory such as
31C:/python, and copy all library files and subdirectories (using XCOPY)
32to C:/python/lib.  Then you don't need to set PYTHONPATH.  Otherwise,
33set the environment variable PYTHONPATH to your Python search path.
34For example,
35   set PYTHONPATH=.;d:\python\lib;d:\python\lib\win;d:\python\lib\dos-8x3
36
37There are several add-in modules to build Python programs which use
38the native Windows operating environment.  The ports here just make
39"QuickWin" and DOS Python versions which support a character-mode
40(console) environment.  Look in www.python.org for Tkinter, PythonWin,
41WPY and wxPython.
42
43To make a Python port, start the Integrated Development Environment
44(IDE) of your compiler, and read in the native "project file"
45(or makefile) provided.  This will enable you to change any source
46files or build settings so you can make custom builds.
47
48pyconfig.h    An important configuration file specific to PC's.
49
50config.c    The list of C modules to include in the Python PC
51            version.  Manually edit this file to add or
52            remove Python modules.
53
54
55Additional files and subdirectories for 32-bit Windows
56======================================================
57
58python_nt.rc   Resource compiler input for python15.dll.
59
60dl_nt.c
61               Additional sources used for 32-bit Windows features.
62
63
64Note for Windows 3.x and DOS users
65==================================
66
67Neither Windows 3.x nor DOS is supported any more.  The last Python
68version that supported these was Python 1.5.2; the support files were
69present in Python 2.0 but weren't updated, and it is not our intention
70to support these platforms for Python 2.x.
71