phoenix_title wx.lib.pubsub.py2and3

Utilities for writing code that runs on Python 2 and 3

function_summary Functions Summary

add_metaclass

Class decorator for creating a class with a metaclass.

add_move

Add an item to six.moves.

b

Byte literal

get_unbound_function

Get the function out of a possibly unbound function

getexcobj

isstring

iteritems

Return an iterator over the (key, value) pairs of a dictionary.

iterkeys

Return an iterator over the keys of a dictionary.

iterlists

Return an iterator over the (key, [values]) pairs of a dictionary.

itervalues

Return an iterator over the values of a dictionary.

keys

nextiter

remove_move

Remove item from six.moves.

reraise

Reraise an exception.

u

Text literal

values

with_metaclass

Create a base class with a metaclass.


class_summary Classes Summary

_LazyDescr

_MovedItems

Lazy loading of moved objects

Module_six_moves_urllib

Create a six.moves.urllib namespace that resembles the Python 3 namespace

Module_six_moves_urllib_error

Lazy loading of moved objects in six.moves.urllib_error

Module_six_moves_urllib_parse

Lazy loading of moved objects in six.moves.urllib_parse

Module_six_moves_urllib_request

Lazy loading of moved objects in six.moves.urllib_request

Module_six_moves_urllib_response

Lazy loading of moved objects in six.moves.urllib_response

Module_six_moves_urllib_robotparser

Lazy loading of moved objects in six.moves.urllib_robotparser

MovedAttribute

MovedModule


Functions

add_metaclass(metaclass)

Class decorator for creating a class with a metaclass.

add_move(move)

Add an item to six.moves.

b(s)

Byte literal

get_unbound_function(unbound)

Get the function out of a possibly unbound function

getexcobj()
isstring(obj)
iteritems(d, \*\*kw)

Return an iterator over the (key, value) pairs of a dictionary.

iterkeys(d, \*\*kw)

Return an iterator over the keys of a dictionary.

iterlists(d, \*\*kw)

Return an iterator over the (key, [values]) pairs of a dictionary.

itervalues(d, \*\*kw)

Return an iterator over the values of a dictionary.

keys(dictObj)
nextiter(container)
remove_move(name)

Remove item from six.moves.

reraise(tp, value, tb=None)

Reraise an exception.

u(s)

Text literal

values(dictObj)
with_metaclass(meta, \*bases)

Create a base class with a metaclass.