Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cspell.dict/cpython.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ stackdepth
stringlib
structseq
subparams
swappedbytes
ticketer
tok_oldval
tvars
Expand Down
9 changes: 1 addition & 8 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ cargo run -- script.py
cargo run

# With specific features
cargo run --features ssl
cargo run --features jit

# Release mode (recommended for better performance)
cargo run --release -- script.py
Expand Down Expand Up @@ -176,13 +176,6 @@ cargo build --target wasm32-wasip1 --no-default-features --features freeze-stdli
cargo run --features jit
```

### SSL Support

```bash
# Enable SSL support
cargo run --features ssl
```

## Test Code Modification Rules

**CRITICAL: Test code modification restrictions**
Expand Down
2 changes: 1 addition & 1 deletion Lib/ctypes/wintypes.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# The most useful windows datatypes
import ctypes

BYTE = ctypes.c_byte
BYTE = ctypes.c_ubyte
WORD = ctypes.c_ushort
DWORD = ctypes.c_ulong

Expand Down
Loading
Loading