From 8ef95afaa0a6794c8595473e6455def9e3cb344e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 28 Dec 2025 23:02:35 +0000 Subject: [PATCH] Fix remaining issues in STUBS.md: terminology, file paths, and formatting Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com> --- STUBS.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/STUBS.md b/STUBS.md index 5c006a5..ea0be58 100644 --- a/STUBS.md +++ b/STUBS.md @@ -14,7 +14,7 @@ All stubs are implemented in: `Python/frozen_stubs.c` **Stubs Created**: - `_PyImport_FrozenBootstrap` - Bootstrap frozen modules -- `_PyImport_FrozenStdlib` - Standard library frozen modules +- `_PyImport_FrozenStdlib` - Standard library frozen modules - `_PyImport_FrozenTest` - Test frozen modules - `PyImport_FrozenModules` - Main frozen modules array - `_PyImport_FrozenAliases` - Frozen module aliases @@ -78,7 +78,7 @@ All stubs are implemented in: `Python/frozen_stubs.c` **Stubs Created**: - `plock()` - Process memory locking (Solaris-specific) -**Implementation**: Returns -1 with errno set to `ENOSYS` (not implemented). Also removed `HAVE_PLOCK` from pyconfig.h. +**Implementation**: Returns -1 with errno set to `ENOSYS` (not implemented). Also commented out `HAVE_PLOCK` in `Include/pyconfig.h`. **Note**: `plock()` is a legacy Solaris function not available on modern Linux systems. @@ -86,7 +86,7 @@ All stubs are implemented in: `Python/frozen_stubs.c` ### pyconfig.h Modifications -The following configuration define was commented out: +The following configuration define was commented out in `Include/pyconfig.h`: ```c /* plock is not available on modern Linux systems */