disable cspell from files with a bunch of OS jargons

This commit is contained in:
Jeong YunWon
2025-03-27 01:43:45 +09:00
parent 5f6f6cce92
commit 372e683063
22 changed files with 40 additions and 0 deletions

View File

@@ -187,6 +187,7 @@
"warningregistry",
"warnopts",
"weakproxy",
"winver",
"xopts",
// RustPython
"baseclass",

View File

@@ -1,3 +1,4 @@
// cspell:disable
// TODO: we can move more os-specific bindings/interfaces from stdlib::{os, posix, nt} to here
use std::{io, str::Utf8Error};

View File

@@ -1,3 +1,4 @@
// cspell:disable
//! mmap module
pub(crate) use mmap::make_module;

View File

@@ -1,3 +1,5 @@
// cspell:disable
pub(crate) use _overlapped::make_module;
#[allow(non_snake_case)]

View File

@@ -1,3 +1,5 @@
// cspell:disable
use crate::vm::{
builtins::PyListRef,
function::ArgSequence,

View File

@@ -1,3 +1,5 @@
// cspell:disable
pub(crate) use resource::make_module;
#[pymodule]

View File

@@ -1,3 +1,5 @@
// cspell:disable
use crate::vm::{
PyObject, PyObjectRef, PyRef, PyResult, TryFromObject, VirtualMachine, builtins::PyListRef,
builtins::PyModule,

View File

@@ -1,3 +1,5 @@
// cspell:disable
use crate::vm::{PyRef, VirtualMachine, builtins::PyModule};
#[cfg(feature = "ssl")]
pub(super) use _socket::{PySocket, SelectKind, sock_select, timeout_error_msg};

View File

@@ -1,3 +1,5 @@
// cspell:disable
use crate::vm::{PyRef, VirtualMachine, builtins::PyModule};
use openssl_probe::ProbeResult;

View File

@@ -1,3 +1,5 @@
// cspell:disable
pub(crate) use self::termios::make_module;
#[pymodule]

View File

@@ -1,3 +1,5 @@
// cspell:disable
pub(crate) mod array;
pub(crate) mod base;
pub(crate) mod function;

View File

@@ -1,3 +1,5 @@
// cspell:disable
use crate::builtins::{PyStr, PyTupleRef, PyTypeRef};
use crate::convert::ToPyObject;
use crate::function::FuncArgs;

View File

@@ -1,3 +1,5 @@
// cspell:disable
use crate::{PyRef, VirtualMachine, builtins::PyModule};
#[pymodule]

View File

@@ -1,3 +1,5 @@
// cspell:disable
pub use msvcrt::*;
#[pymodule]

View File

@@ -1,3 +1,5 @@
// cspell:disable
use crate::{PyRef, VirtualMachine, builtins::PyModule};
pub use module::raw_set_handle_inheritable;

View File

@@ -1,3 +1,5 @@
// cspell:disable
use crate::{
AsObject, Py, PyPayload, PyResult, VirtualMachine,
builtins::{PyBaseExceptionRef, PyModule, PySet},

View File

@@ -1,3 +1,5 @@
// cspell:disable
use crate::{PyRef, VirtualMachine, builtins::PyModule};
use std::os::unix::io::RawFd;

View File

@@ -1,3 +1,5 @@
// cspell:disable
//! `posix` compatible module for `not(any(unix, windows))`
use crate::{PyRef, VirtualMachine, builtins::PyModule};

View File

@@ -1,3 +1,5 @@
// cspell:disable
pub(crate) use pwd::make_module;
#[pymodule]

View File

@@ -1,3 +1,5 @@
// cspell:disable
use crate::{PyRef, VirtualMachine, builtins::PyModule};
pub(crate) fn make_module(vm: &VirtualMachine) -> PyRef<PyModule> {

View File

@@ -1,3 +1,5 @@
// cspell:disable
#![allow(non_snake_case)]
pub(crate) use _winapi::make_module;

View File

@@ -1,3 +1,4 @@
// cspell:disable
#![allow(non_snake_case)]
use crate::{PyRef, VirtualMachine, builtins::PyModule};