!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/doc/python-2.2.3/html/api/   drwxr-xr-x
Free 318.33 GB of 458.09 GB (69.49%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     moduleObjects.html (7.91 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
7.5.4 Module Objects

 
7.5.4 Module Objects

 There are only a few functions special to module objects.

PyTypeObject PyModule_Type
This instance of PyTypeObject represents the Python module type. This is exposed to Python programs as types.ModuleType.  

int PyModule_Check(PyObject *p)
Returns true if p is a module object, or a subtype of a module object. Changed in version 2.2: Allowed subtypes to be accepted.

int PyModule_CheckExact(PyObject *p)
Returns true if p is a module object, but not a subtype of PyModule_Type. New in version 2.2.

PyObject* PyModule_New(char *name)
Return value: New reference.
Return a new module object with the __name__ attribute set to name. Only the module's __doc__ and __name__ attributes are filled in; the caller is responsible for providing a __file__ attribute.  

PyObject* PyModule_GetDict(PyObject *module)
Return value: Borrowed reference.
Return the dictionary object that implements module's namespace; this object is the same as the __dict__ attribute of the module object. This function never fails.  

char* PyModule_GetName(PyObject *module)
Return module's __name__ value. If the module does not provide one, or if it is not a string, SystemError is raised and NULL is returned.    

char* PyModule_GetFilename(PyObject *module)
Return the name of the file from which module was loaded using module's __file__ attribute. If this is not defined, or if it is not a string, raise SystemError and return NULL.    

int PyModule_AddObject(PyObject *module, char *name, PyObject *value)
Add an object to module as name. This is a convenience function which can be used from the module's initialization function. This steals a reference to value. Returns -1 on error, 0 on success. New in version 2.0.

int PyModule_AddIntConstant(PyObject *module, char *name, int value)
Add an integer constant to module as name. This convenience function can be used from the module's initialization function. Returns -1 on error, 0 on success. New in version 2.0.

int PyModule_AddStringConstant(PyObject *module, char *name, char *value)
Add a string constant to module as name. This convenience function can be used from the module's initialization function. The string value must be null-terminated. Returns -1 on error, 0 on success. New in version 2.0.

See About this document... for information on suggesting changes.

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0128 ]--