Skip to content
Merged
Changes from 1 commit
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
Next Next commit
mark RustPython as free-threaded
  • Loading branch information
youknowone committed Jan 1, 2026
commit 052dfe01363a65b476a631f1bc15f8fdcddfbeb0
2 changes: 1 addition & 1 deletion crates/vm/src/stdlib/sys.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ mod sys {
const RUSTPYTHON_DEBUGBUILD: bool = cfg!(debug_assertions);

#[pyattr(name = "abiflags")]
pub(crate) const ABIFLAGS: &str = "";
pub(crate) const ABIFLAGS: &str = "t"; // 't' for free-threaded (no GIL)
#[pyattr(name = "api_version")]
const API_VERSION: u32 = 0x0; // what C api?
#[pyattr(name = "copyright")]
Expand Down