Lines Matching full:moves
164 A meta path importer to import six.moves and its submodules.
289 MovedModule("urllib_parse", __name__ + ".moves.urllib_parse", "urllib.parse"),
290 MovedModule("urllib_error", __name__ + ".moves.urllib_error", "urllib.error"),
291 MovedModule("urllib", __name__ + ".moves.urllib", __name__ + ".moves.urllib"),
300 _importer._add_module(attr, "moves." + attr.name)
305 moves = _MovedItems(__name__ + ".moves")
306 _importer._add_module(moves, "moves")
310 """Lazy loading of moved objects in six.moves.urllib_parse"""
344 _importer._add_module(Module_six_moves_urllib_parse(__name__ + ".moves.urllib_parse"),
345 "moves.urllib_parse", "moves.urllib.parse")
349 """Lazy loading of moved objects in six.moves.urllib_error"""
363 _importer._add_module(Module_six_moves_urllib_error(__name__ + ".moves.urllib.error"),
364 "moves.urllib_error", "moves.urllib.error")
368 """Lazy loading of moved objects in six.moves.urllib_request"""
412 _importer._add_module(Module_six_moves_urllib_request(__name__ + ".moves.urllib.request"),
413 "moves.urllib_request", "moves.urllib.request")
417 """Lazy loading of moved objects in six.moves.urllib_response"""
432 _importer._add_module(Module_six_moves_urllib_response(__name__ + ".moves.urllib.response"),
433 "moves.urllib_response", "moves.urllib.response")
437 """Lazy loading of moved objects in six.moves.urllib_robotparser"""
449 _importer._add_module(Module_six_moves_urllib_robotparser(__name__ + ".moves.urllib.robotparser"),
450 "moves.urllib_robotparser", "moves.urllib.robotparser")
454 """Create a six.moves.urllib namespace that resembles the Python 3 namespace"""
456 parse = _importer._get_module("moves.urllib_parse")
457 error = _importer._get_module("moves.urllib_error")
458 request = _importer._get_module("moves.urllib_request")
459 response = _importer._get_module("moves.urllib_response")
460 robotparser = _importer._get_module("moves.urllib_robotparser")
465 _importer._add_module(Module_six_moves_urllib(__name__ + ".moves.urllib"),
466 "moves.urllib")
470 """Add an item to six.moves."""
475 """Remove item from six.moves."""
480 del moves.__dict__[name]
651 exec_ = getattr(moves.builtins, "exec")
695 print_ = getattr(moves.builtins, "print", None)
816 # Complete the moves implementation.