Previous 1 | 2 | 3
Previous 1 | 2 | 3
All Samples(0) | Call(0) | Derive(0) | Import(0)
Common operations on Posix pathnames. Instead of importing this module directly, import os and refer to this module as os.path. The "os.path" name is an alias for this module on Posix systems; on other systems (e.g. Mac, Windows), os.path provides the same operations in a manner specific to that platform, and is an alias to another module (e.g. macpath, ntpath). Some of this can actually be useful on non-Posix systems too, e.g. for manipulation of the pathname component of URLs.
All Samples(3) | Call(3) | Derive(0) | Import(0)
splithost('//host[:port]/path') --> 'host[:port]', '/path'.
All Samples(0) | Call(0) | Derive(0) | Import(0)
str(object) -> string Return a nice string representation of the object. If the argument is a string, the return value is the same object.
All Samples(0) | Call(0) | Derive(0) | Import(0)
This module provides socket operations and some related functions. On Unix, it supports IP (Internet Protocol) and Unix domain sockets. On other systems, it only supports IP. Functions specific for a socket are available as methods of the socket object. Functions: socket() -- create a new socket object socketpair() -- create a pair of new socket objects [*] fromfd() -- create a socket object from an open file descriptor [*](more...)
All Samples(0) | Call(0) | Derive(0) | Import(0)
Support for regular expressions (RE). This module provides regular expression matching operations similar to those found in Perl. It supports both 8-bit and Unicode strings; both the pattern and the strings being processed can contain null bytes and characters outside the US ASCII range. Regular expressions can contain both special and ordinary characters. Most ordinary characters, like "A", "a", or "0", are the simplest regular expressions; they simply match themselves. You can(more...)
All Samples(1) | Call(1) | Derive(0) | Import(0)
splitattr('/path;attr1=value1;attr2=value2;...') ->
'/path', ['attr1=value1', 'attr2=value2', ...].
Previous 1 | 2 | 3