0
0
mirror of https://github.com/python/cpython.git synced 2024-11-24 00:38:00 +01:00
cpython/PC
Benjamin Peterson 3e9543e407
[3.10] Update copyright years to 2023. (gh-100850)
* [3.10] Update copyright years to 2023. (gh-100848).
(cherry picked from commit 11f99323c2)

Co-authored-by: Benjamin Peterson <benjamin@python.org>

* Update additional copyright years to 2023.

Co-authored-by: Ned Deily <nad@python.org>
2023-01-08 17:00:24 -06:00
..
clinic [3.10] gh-97728: Argument Clinic: Fix uninitialized variable in the Py_UNICODE converter (GH-97729) (GH-97760) 2022-10-03 16:59:21 +03:00
icons Optimize images by IMGbot (GH-21348) 2022-02-04 16:31:21 +09:00
layout bpo-46638: Makes registry virtualisation setting stable when building MSIX packages (GH-31130) 2022-02-07 09:31:32 -08:00
_msi.c gh-96577: Fixes buffer overrun in _msi module (GH-96633) 2022-09-07 12:46:15 -07:00
_testconsole.c bpo-30555: Fix WindowsConsoleIO fails in the presence of fd redirection (GH-1927) 2021-04-23 23:00:27 +01:00
classicAppCompat.can.xml bpo-46629: Update classicAppCompat.sccd for new signing certificate (GH-31111) 2022-02-04 08:34:12 -08:00
classicAppCompat.cat
classicAppCompat.sccd bpo-46629: Update classicAppCompat.sccd for new signing certificate (GH-31111) 2022-02-04 08:34:12 -08:00
config.c bpo-40939: Remove the old parser (GH-20768) 2020-06-11 17:30:46 +01:00
crtlicense.txt Implement Windows release builds in Azure Pipelines (GH-14065) 2019-06-14 08:29:20 -07:00
dl_nt.c bpo-41054: Simplify resource compilation on Windows (GH-21004) 2020-06-23 20:05:57 +01:00
empty.c
errmap.h bpo-37705: Improve the implementation of winerror_to_errno() (GH-15623) 2019-09-09 02:35:08 -07:00
errmap.mak
frozen_dllmain.c
getpathp.c bpo-45720: Drop references to shlwapi.dll on Windows (GH-29417) 2021-11-06 00:25:29 +00:00
invalid_parameter_handler.c
launcher.c gh-90844: Allow virtual environments to correctly launch when they have spaces in the path (GH-94903) 2022-07-16 10:07:39 -07:00
msvcrtmodule.c bpo-30555: Fix WindowsConsoleIO fails in the presence of fd redirection (GH-1927) 2021-04-23 23:00:27 +01:00
pyconfig.h bpo-43179: Generalise alignment for optimised string routines (GH-24624) 2021-03-31 12:12:39 +02:00
pylauncher.rc bpo-45220: Ensure RT_MANIFEST is defined when compiling Windows resource files (GH-29501) 2021-11-09 12:43:12 -08:00
pyshellext.cpp bpo-41070: Simplify pyshellext.dll build (GH-21037) 2020-06-24 00:32:23 +01:00
pyshellext.def bpo-41070: Simplify pyshellext.dll build (GH-21037) 2020-06-24 00:32:23 +01:00
pyshellext.rc bpo-45220: Ensure RT_MANIFEST is defined when compiling Windows resource files (GH-29501) 2021-11-09 12:43:12 -08:00
python3dll.c bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194) (GH-28199) 2021-09-07 12:43:33 +01:00
python_exe.rc bpo-45220: Ensure RT_MANIFEST is defined when compiling Windows resource files (GH-29501) 2021-11-09 12:43:12 -08:00
python_nt.rc bpo-45220: Ensure RT_MANIFEST is defined when compiling Windows resource files (GH-29501) 2021-11-09 12:43:12 -08:00
python_uwp.cpp Use faster APIs to calculate paths at startup for Store packaged Python on Windows (GH-99345) 2022-11-23 12:15:16 -08:00
python_ver_rc.h [3.10] Update copyright years to 2023. (gh-100850) 2023-01-08 17:00:24 -06:00
python.manifest
pythonw_exe.rc bpo-45220: Ensure RT_MANIFEST is defined when compiling Windows resource files (GH-29501) 2021-11-09 12:43:12 -08:00
readme.txt [3.10] gh-76773: Update docs mentioning no-longer-supported Windows versions & features (GH-92529) (GH-92609) 2022-05-10 02:28:22 -07:00
sqlite3.rc bpo-45220: Ensure RT_MANIFEST is defined when compiling Windows resource files (GH-29501) 2021-11-09 12:43:12 -08:00
store_info.txt bpo-44740: Lowercase "internet" and "web" where appropriate. (GH-27378) (GH-27380) 2021-07-27 00:34:32 +02:00
testpy.py
validate_ucrtbase.py
WinMain.c
winreg.c bpo-43984: Allow winreg.SetValueEx to set -1 without treating it as an error (GH-25775) 2022-12-09 05:17:25 -08:00
winsound.c

Welcome to the "PC" subdirectory of the Python distribution
***********************************************************

This "PC" subdirectory contains complete project files to make
several older PC ports of Python, as well as all the PC-specific
Python source files.  It should be located in the root of the
Python distribution, and there should be directories "Modules",
"Objects", "Python", etc. in the parent directory of this "PC"
subdirectory.  Be sure to read the documentation in the Python
distribution.

Python requires library files such as string.py to be available in
one or more library directories.  The search path of libraries is
set up when Python starts.  To see the current Python library search
path, start Python and enter "import sys" and "print sys.path".

All PC ports use this scheme to try to set up a module search path:

  1) The script location; the current directory without script.
  2) The PYTHONPATH variable, if set.
  3) Paths specified in the Registry.
  4) Default directories lib, lib/win, lib/test, lib/tkinter;
     these are searched relative to the environment variable
     PYTHONHOME, if set, or relative to the executable and its
     ancestors, if a landmark file (Lib/string.py) is found ,
     or the current directory (not useful).
  5) The directory containing the executable.

The best installation strategy is to put the Python executable and
DLL in some convenient directory such as
C:/python, and copy all library files and subdirectories (using XCOPY)
to C:/python/lib.  Then you don't need to set PYTHONPATH.  Otherwise,
set the environment variable PYTHONPATH to your Python search path.
For example,
   set PYTHONPATH=.;d:\python\lib;d:\python\lib\win;d:\python\lib\dos-8x3

There are several add-in modules to build Python programs which use
the native Windows operating environment.  The ports here just make
"QuickWin" and DOS Python versions which support a character-mode
(console) environment.  Look in www.python.org for Tkinter, PythonWin,
WPY and wxPython.

To make a Python port, start the Integrated Development Environment
(IDE) of your compiler, and read in the native "project file"
(or makefile) provided.  This will enable you to change any source
files or build settings so you can make custom builds.

pyconfig.h    An important configuration file specific to PC's.

config.c    The list of C modules to include in the Python PC
            version.  Manually edit this file to add or
            remove Python modules.

testpy.py   A Python test program.  Run this to test your
            Python port.  It should produce copious output,
	    ending in a report on how many tests were OK, how many
	    failed, and how many were skipped.  Don't worry about
	    skipped tests (these test unavailable optional features).


Additional files and subdirectories for 32-bit Windows
======================================================

python_nt.rc   Resource compiler input for python15.dll.

dl_nt.c
               Additional sources used for 32-bit Windows features.

getpathp.c     Default sys.path calculations (for all PC platforms).

dllbase_nt.txt A (manually maintained) list of base addresses for
               various DLLs, to avoid run-time relocation.


Note for Windows 3.x and DOS users
==================================

Neither Windows 3.x nor DOS is supported any more.  The last Python
version that supported these was Python 1.5.2; the support files were
present in Python 2.0 but weren't updated, and it is not our intention
to support these platforms for Python 2.x.