Home | History | Annotate | Download | only in lib-dynload
__gmon_start__ _init _fini __cxa_finalize _Jv_RegisterClasses PyObject_Repr PyNumber_ToBase initfuture_builtins Py_InitModule4 PyImport_ImportModuleNoBlock PyModule_AddObject PyObject_GetAttrString libc.so.6 _edata __bss_start _end GLIBC_2.1.3 
imap ifilter izip future_builtins itertools hex oct ascii 
This module provides functions that will be builtins in Python 3.0, but that conflict with builtins that already exist in Python 2.x. Functions: ascii(arg) -- Returns the canonical string representation of an object. filter(pred, iterable) -- Returns an iterator yielding those items of iterable for which pred(item) is true. hex(arg) -- Returns the hexadecimal representation of an integer. map(func, *iterables) -- Returns an iterator that computes the function using arguments from each of the iterables. oct(arg) -- Returns the octal representation of an integer. zip(iter1 [,iter2 [...]]) -- Returns a zip object whose .next() method returns a tuple where the i-th element comes from the i-th iterable argument. The typical usage of this module is to replace existing builtins in a module's namespace: from future_builtins import ascii, filter, map, hex, oct, zip hex(number) -> string Return the hexadecimal representation of an integer or long integer. oct(number) -> string Return the octal representation of an integer or long integer. ascii(object) -> string Return the same as repr(). In Python 3.x, the repr() result will contain printable characters unescaped, while the ascii() result will have such characters backslash-escaped. d @ h l 
GCC: (GNU) 4.2.3 (Ubuntu 4.2.3-2ubuntu7) GCC: (GNU) 4.6.x-google 20120106 (prerelease) GCC: (GNU) 4.2.3 (Ubuntu 4.2.3-2ubuntu7) 
.symtab .strtab .shstrtab .hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .dynamic .got .got.plt .data .bss .comment .debug_aranges .debug_info .debug_abbrev .debug_line .debug_ranges 
initfini.c crtstuff.c __CTOR_LIST__ __DTOR_LIST__ __JCR_LIST__ __do_global_dtors_aux completed.5467 dtor_idx.5469 frame_dummy __CTOR_END__ __FRAME_END__ __JCR_END__ __do_global_ctors_aux future_builtins.c builtin_ascii builtin_oct builtin_hex module_doc module_functions hex_doc oct_doc ascii_doc _GLOBAL_OFFSET_TABLE_ __x86.get_pc_thunk.bx __dso_handle __DTOR_END__ _DYNAMIC PyModule_AddObject PyImport_ImportModuleNoBlock __gmon_start__ _Jv_RegisterClasses _fini initfuture_builtins PyNumber_ToBase PyObject_GetAttrString __bss_start Py_InitModule4 _end _edata __cxa_finalize@@GLIBC_2.1.3 PyObject_Repr _init