René's URL Explorer Experiment


Title: 16. Optional Operating System Services — Python 2.7.18 documentation

direct link

Domain: docs.python.org

Links:

no longer supportedhttps://devguide.python.org/devcycle/#end-of-life-branches
Python documentation for the current stable releasehttps://docs.python.org/3/library/someos.html
indexhttps://docs.python.org/2/genindex.html
moduleshttps://docs.python.org/2/py-modindex.html
nexthttps://docs.python.org/2/library/select.html
previoushttps://docs.python.org/2/library/ctypes.html
Pythonhttps://www.python.org/
Python 2.7.18 documentationhttps://docs.python.org/2/index.html
The Python Standard Libraryhttps://docs.python.org/2/library/index.html
https://docs.python.org/2/library/someos.html#optional-operating-system-services
16.1. select — Waiting for I/O completionhttps://docs.python.org/2/library/select.html
16.1.1. Edge and Level Trigger Polling (epoll) Objectshttps://docs.python.org/2/library/select.html#edge-and-level-trigger-polling-epoll-objects
16.1.2. Polling Objectshttps://docs.python.org/2/library/select.html#polling-objects
16.1.3. Kqueue Objectshttps://docs.python.org/2/library/select.html#kqueue-objects
16.1.4. Kevent Objectshttps://docs.python.org/2/library/select.html#kevent-objects
16.2. threading — Higher-level threading interfacehttps://docs.python.org/2/library/threading.html
16.2.1. Thread Objectshttps://docs.python.org/2/library/threading.html#thread-objects
16.2.2. Lock Objectshttps://docs.python.org/2/library/threading.html#lock-objects
16.2.3. RLock Objectshttps://docs.python.org/2/library/threading.html#rlock-objects
16.2.4. Condition Objectshttps://docs.python.org/2/library/threading.html#condition-objects
16.2.5. Semaphore Objectshttps://docs.python.org/2/library/threading.html#semaphore-objects
16.2.5.1. Semaphore Examplehttps://docs.python.org/2/library/threading.html#semaphore-example
16.2.6. Event Objectshttps://docs.python.org/2/library/threading.html#event-objects
16.2.7. Timer Objectshttps://docs.python.org/2/library/threading.html#timer-objects
16.2.8. Using locks, conditions, and semaphores in the with statementhttps://docs.python.org/2/library/threading.html#using-locks-conditions-and-semaphores-in-the-with-statement
16.2.9. Importing in threaded codehttps://docs.python.org/2/library/threading.html#importing-in-threaded-code
16.3. thread — Multiple threads of controlhttps://docs.python.org/2/library/thread.html
16.4. dummy_threading — Drop-in replacement for the threading modulehttps://docs.python.org/2/library/dummy_threading.html
16.5. dummy_thread — Drop-in replacement for the thread modulehttps://docs.python.org/2/library/dummy_thread.html
16.6. multiprocessing — Process-based “threading” interfacehttps://docs.python.org/2/library/multiprocessing.html
16.6.1. Introductionhttps://docs.python.org/2/library/multiprocessing.html#introduction
16.6.1.1. The Process classhttps://docs.python.org/2/library/multiprocessing.html#the-process-class
16.6.1.2. Exchanging objects between processeshttps://docs.python.org/2/library/multiprocessing.html#exchanging-objects-between-processes
16.6.1.3. Synchronization between processeshttps://docs.python.org/2/library/multiprocessing.html#synchronization-between-processes
16.6.1.4. Sharing state between processeshttps://docs.python.org/2/library/multiprocessing.html#sharing-state-between-processes
16.6.1.5. Using a pool of workershttps://docs.python.org/2/library/multiprocessing.html#using-a-pool-of-workers
16.6.2. Referencehttps://docs.python.org/2/library/multiprocessing.html#reference
16.6.2.1. Process and exceptionshttps://docs.python.org/2/library/multiprocessing.html#process-and-exceptions
16.6.2.2. Pipes and Queueshttps://docs.python.org/2/library/multiprocessing.html#pipes-and-queues
16.6.2.3. Miscellaneoushttps://docs.python.org/2/library/multiprocessing.html#miscellaneous
16.6.2.4. Connection Objectshttps://docs.python.org/2/library/multiprocessing.html#connection-objects
16.6.2.5. Synchronization primitiveshttps://docs.python.org/2/library/multiprocessing.html#synchronization-primitives
16.6.2.6. Shared ctypes Objectshttps://docs.python.org/2/library/multiprocessing.html#shared-ctypes-objects
16.6.2.6.1. The multiprocessing.sharedctypes modulehttps://docs.python.org/2/library/multiprocessing.html#module-multiprocessing.sharedctypes
16.6.2.7. Managershttps://docs.python.org/2/library/multiprocessing.html#managers
16.6.2.7.1. Customized managershttps://docs.python.org/2/library/multiprocessing.html#customized-managers
16.6.2.7.2. Using a remote managerhttps://docs.python.org/2/library/multiprocessing.html#using-a-remote-manager
16.6.2.8. Proxy Objectshttps://docs.python.org/2/library/multiprocessing.html#proxy-objects
16.6.2.8.1. Cleanuphttps://docs.python.org/2/library/multiprocessing.html#cleanup
16.6.2.9. Process Poolshttps://docs.python.org/2/library/multiprocessing.html#module-multiprocessing.pool
16.6.2.10. Listeners and Clientshttps://docs.python.org/2/library/multiprocessing.html#module-multiprocessing.connection
16.6.2.10.1. Address Formatshttps://docs.python.org/2/library/multiprocessing.html#address-formats
16.6.2.11. Authentication keyshttps://docs.python.org/2/library/multiprocessing.html#authentication-keys
16.6.2.12. Logginghttps://docs.python.org/2/library/multiprocessing.html#logging
16.6.2.13. The multiprocessing.dummy modulehttps://docs.python.org/2/library/multiprocessing.html#module-multiprocessing.dummy
16.6.3. Programming guidelineshttps://docs.python.org/2/library/multiprocessing.html#programming-guidelines
16.6.3.1. All platformshttps://docs.python.org/2/library/multiprocessing.html#all-platforms
16.6.3.2. Windowshttps://docs.python.org/2/library/multiprocessing.html#windows
16.6.4. Exampleshttps://docs.python.org/2/library/multiprocessing.html#examples
16.7. mmap — Memory-mapped file supporthttps://docs.python.org/2/library/mmap.html
16.8. readline — GNU readline interfacehttps://docs.python.org/2/library/readline.html
16.8.1. Init filehttps://docs.python.org/2/library/readline.html#init-file
16.8.2. Line bufferhttps://docs.python.org/2/library/readline.html#line-buffer
16.8.3. History filehttps://docs.python.org/2/library/readline.html#history-file
16.8.4. History listhttps://docs.python.org/2/library/readline.html#history-list
16.8.5. Startup hookshttps://docs.python.org/2/library/readline.html#startup-hooks
16.8.6. Completionhttps://docs.python.org/2/library/readline.html#completion
16.8.7. Examplehttps://docs.python.org/2/library/readline.html#example
16.9. rlcompleter — Completion function for GNU readlinehttps://docs.python.org/2/library/rlcompleter.html
16.9.1. Completer Objectshttps://docs.python.org/2/library/rlcompleter.html#completer-objects
15.17. ctypes — A foreign function library for Pythonhttps://docs.python.org/2/library/ctypes.html
16.1. select — Waiting for I/O completionhttps://docs.python.org/2/library/select.html
Show Sourcehttps://docs.python.org/2/_sources/library/someos.rst.txt
indexhttps://docs.python.org/2/genindex.html
moduleshttps://docs.python.org/2/py-modindex.html
nexthttps://docs.python.org/2/library/select.html
previoushttps://docs.python.org/2/library/ctypes.html
Pythonhttps://www.python.org/
Python 2.7.18 documentationhttps://docs.python.org/2/index.html
The Python Standard Libraryhttps://docs.python.org/2/library/index.html
Copyrighthttps://docs.python.org/2/copyright.html
Please donate.https://www.python.org/psf/donations/
Found a bughttps://docs.python.org/2/bugs.html
Sphinxhttp://sphinx.pocoo.org/

URLs of crawlers that visited me.