• Home
  • Raw
  • Download

Lines Matching +full:unix +full:- +full:like

1 .. _library-intro:
13 define syntactic properties like the spelling and priorities of operators.)
15 The library also contains built-in functions and exceptions --- objects that can
24 Python, like printing a stack trace; some provide interfaces that are specific
26 provide interfaces that are specific to a particular application domain, like
32 This manual is organized "from the inside out:" it first describes the built-in
39 library. Of course, you don't *have* to read it like a novel --- you can also
45 :ref:`built-in-funcs`, as the remainder of the manual assumes familiarity with
56 * An "Availability: Unix" note means that this function is commonly found on
57 Unix systems. It does not make any claims about its existence on a specific
60 * If not separately noted, all functions that claim "Availability: Unix" are
61 supported on macOS, which builds on a Unix core.
68 .. _wasm-availability:
71 ---------------------
73 The `WebAssembly`_ platforms ``wasm32-emscripten`` (`Emscripten`_) and
74 ``wasm32-wasi`` (`WASI`_) provide a subset of POSIX APIs. WebAssembly runtimes
77 networking, signals, or other forms of inter-process communication (IPC), is
78 either not available or may not work as on other Unix-like systems. File I/O,
79 file system, and Unix permission-related functions are restricted, too.
80 Emscripten does not permit blocking I/O. Other blocking operations like
84 `Emscripten`_-SDK or `WASI`_-SDK version, WASM runtimes (browser, NodeJS,
86 are evolving standards; some features like networking may be
95 * Process-related APIs are not available or always fail with an error. That
103 non-blocking and require additional JavaScript code and helpers on the