File indexing completed on 2024-04-28 15:53:59

0001 #!/usr/bin/env python2.7
0002 # -*- coding: utf-8 -*-
0003 """:platform: Unix
0004 :synopsis: The most common POSIX system calls (normally used via module os).
0005 
0006 
0007 This module provides access to operating system functionality that is
0008 standardized by the C Standard and the POSIX standard (a thinly disguised Unix
0009 interface).
0010 
0011 """
0012 """
0013 A dictionary representing the string environment at the time the interpreter
0014 was started.  For example, ``environ['HOME']`` is the pathname of your home
0015 directory, equivalent to ``getenv("HOME")`` in C.
0016 
0017 Modifying this dictionary does not affect the string environment passed on by
0018 :func:`execv`, :func:`popen` or :func:`system`; if you need to change the
0019 environment, pass ``environ`` to :func:`execve` or add variable assignments and
0020 export statements to the command string for :func:`system` or :func:`popen`.
0021 
0022 """
0023 environ = None