Serhiy Storchaka
6a7b3a77b4
Issue #26778 : Fixed "a/an/and" typos in code comment and documentation.
10 years ago
Steve Dower
a7a222fde7
Closes #26624 : Adds validation of ucrtbase[d].dll version with warning for old versions.
10 years ago
Steve Dower
b0660582cc
Adds version info to all signed binaries on Windows.
10 years ago
Victor Stinner
3aac0adfe0
Cleanup regrtest "main()" function
* Rename libregrtest.main_in_temp_cwd() to libregrtest.main()
* Add regrtest.main_in_temp_cwd() alias to libregrtest.main()
* Move old main_in_temp_cwd() code into libregrtest.Regrtest.main()
* Update multiple scripts to call libregrtest.main()
10 years ago
Victor Stinner
e985726553
_msi.c: try to fix compiler warnings
10 years ago
Victor Stinner
ccb1f8cb1a
getpathp.c: fix compiler warning
wcsnlen_s() result type is size_t.
10 years ago
Steve Dower
332334f1ab
Issue #26071 : bdist_wininst created binaries fail to start and find 32bit Python
10 years ago
Steve Dower
87fb7f64d8
Issue #26073 : Update the list of magic numbers in launcher
10 years ago
Mark Hammond
32d1e56bda
Issue #26070 : py.exe launcher fails to find in-place built binaries from earlier Python versions.
10 years ago
Mark Hammond
ce543fd795
Issue #26070 : py.exe launcher fails to find in-place built binaries from earlier Python versions.
10 years ago
Benjamin Peterson
75e3630c60
2016 will be another year of writing copyrighted code
10 years ago
Vinay Sajip
a5892abf23
Fixes #25360 : Search for pythonw.exe when in pyw.exe.
10 years ago
Vinay Sajip
aab9f46c6d
Closes #25789 : Improved buffering behaviour in launcher.
10 years ago
Serhiy Storchaka
29e2aa696d
Test UTF-32LE before UTF-16LE since UTF-16LE BOM is a prefix of UTF-32LE BOM.
10 years ago
Serhiy Storchaka
f8ed0044f6
Issue #25889 : Got rid of warning about mixing signed/unsigned char pointers.
10 years ago
Serhiy Storchaka
e0cb9da9d6
Issue #25893 : Removed unused variable reqdSize.
Added test for return code for the last RegQueryValueExW.
10 years ago
Vinay Sajip
999d0f9af0
Fixes #25844 : Corrected =/== typo potentially leading to crash in launcher.
10 years ago
Vinay Sajip
abeb6479bd
Fixes #25844 : Corrected =/== typo potentially leading to crash in launcher.
10 years ago
Martin Panter
b4ce1fc31b
Issue #5319 : New Py_FinalizeEx() API to exit with status 120 on failure
10 years ago
Benjamin Peterson
669ff66c32
remove duplicated imports ( closes #25502 )
10 years ago
Martin Panter
9955a373a8
Various minor typos in documentation and comments
10 years ago
Steve Dower
5f62112db4
Issues #25112 : py.exe launcher is missing icons
10 years ago
Steve Dower
3a0f471e5f
Issue #25213 : Restores requestedExecutionLevel to manifest to disable UAC virtualization.
10 years ago
Victor Stinner
ba45295938
ssue #25207 : fix ICC compiler warning in msvcrtmodule.c
10 years ago
Zachary Ware
b54a068204
Issue #25022 : Remove PC/example_nt/
It was very much outdated, and the topic is better covered elsewhere.
10 years ago
Zachary Ware
7503ca7b16
Issue #24953 : Include ICC version in sys.version string when bulit with ICC on Windows
11 years ago
Serhiy Storchaka
d741a88049
Fixed indentation of Python examples in C comments.
11 years ago
Eric Snow
06a6a83826
Issue #16991 : Use the correct version for master.
11 years ago
Eric Snow
f3b73ad51d
Issue #16991 : Add PyODict* to Windows builds.
11 years ago
Yury Selivanov
7aa5341164
Reverting my previous commit.
Something went horribly wrong when I was doing `hg rebase`.
11 years ago
Zachary Ware
41a6a625d4
Update Windows build for 3.6
11 years ago
Steve Dower
f64b9d5c71
Fixes handling of long values of PYTHONPATH on Windows.
11 years ago
Steve Dower
11d7b1423f
Issue #24268 : Adds PyModuleDef_Init and PyModuleDef_Type to python3.def (stable ABI)
11 years ago
Nick Coghlan
d5cacbb1d9
PEP 489: Multi-phase extension module initialization
Known limitations of the current implementation:
- documentation changes are incomplete
- there's a reference leak I haven't tracked down yet
The leak is most visible by running:
./python -m test -R3:3 test_importlib
However, you can also see it by running:
./python -X showrefcount
Importing the array or _testmultiphase modules, and
then deleting them from both sys.modules and the local
namespace shows significant increases in the total
number of active references each cycle. By contrast,
with _testcapi (which continues to use single-phase
initialisation) the global refcounts stabilise after
a couple of cycles.
11 years ago
Steve Dower
4a7fe7e397
Issue #23955 : Add pyvenv.cfg option to suppress registry/environment lookup for generating sys.path.
Also cleans up and secures getpathp.c
11 years ago
Zachary Ware
0a29e898cd
Issue #21931 : Fix error handling in msilib.FCICreate().
Patch by Jeffrey Armstrong.
11 years ago
Steve Dower
71f574f707
Issue #23995 : Removes _WCONIO_DEFINED check as the wchar_t console functions are always available.
11 years ago
Zachary Ware
77772c0e7b
Issue #20172 : Update clinicizations to current clinic.
11 years ago
Zachary Ware
4552089617
Issue #20172 : Convert the msvcrt module to Argument Clinic.
11 years ago
Zachary Ware
fd2d482272
Issue #20172 : Convert the winreg module to Argument Clinic.
11 years ago
Zachary Ware
73f8cfb040
Issue #20172 : Convert the winsound module to Argument Clinic.
11 years ago
Steve Dower
8fc8980c96
Issue #23524 : Replace _PyVerify_fd function with calls to _set_thread_local_invalid_parameter_handler.
11 years ago
Serhiy Storchaka
bfbfc8deb2
Removed unintentional trailing spaces in text files.
11 years ago
Serhiy Storchaka
009b811d67
Removed unintentional trailing spaces in non-external and non-generated C files.
11 years ago
Steve Dower
13be8c2691
Removes unused format string insertion in launcher.c.
11 years ago
Steve Dower
d81431f587
Issue #23524 : Replace _PyVerify_fd function with calling _set_thread_local_invalid_parameter_handler on every thread.
11 years ago
Steve Dower
3e96f324dc
Issue #23451 : Update pyconfig.h for Windows to require Vista headers and remove unnecessary version checks.
11 years ago
Steve Dower
76998fef2c
Issue #23465 : Implement PEP 486 - Make the Python Launcher aware of virtual environments (patch by Paul Moore)
11 years ago
Steve Dower
f63dab5a84
Back-out wcstok deprecation suppression and updates calls to use wcstok_s.
11 years ago
Steve Dower
d671213744
Closes #23018 : Replace copyright symbol with escape.
11 years ago