Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(472)

Unified Diff: mojo/public/python/mojo_system.pyx

Issue 830593003: Update mojo sdk to rev 9fbbc4f0fef1187312316c0ed992342474e139f1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cherry-pick mojo 9d3b8dd17f12d20035a14737fdc38dd926890ff8 Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/public/python/mojo_bindings/serialization.py ('k') | mojo/public/python/mojo_system_impl.pyx » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/python/mojo_system.pyx
diff --git a/mojo/public/python/mojo/system.pyx b/mojo/public/python/mojo_system.pyx
similarity index 99%
rename from mojo/public/python/mojo/system.pyx
rename to mojo/public/python/mojo_system.pyx
index 2533babe672c4b56d45ddc8b2280e4eb5b89c04c..4e684af5ccc72774d82de3c11f1a7e38094f32e4 100644
--- a/mojo/public/python/mojo/system.pyx
+++ b/mojo/public/python/mojo_system.pyx
@@ -22,7 +22,7 @@ from libc.stdint cimport int32_t, int64_t, uint32_t, uint64_t, uintptr_t
import ctypes
import threading
-import mojo.system_impl
+import mojo_system_impl
def SetSystemThunks(system_thunks_as_object):
"""Bind the basic Mojo Core functions.
@@ -769,7 +769,7 @@ class RunLoop(object):
"""RunLoop to use when using asynchronous operations on handles."""
def __init__(self):
- self.__run_loop = mojo.system_impl.RunLoop()
+ self.__run_loop = mojo_system_impl.RunLoop()
_RUN_LOOPS.loop = id(self)
def __del__(self):
@@ -801,4 +801,4 @@ class RunLoop(object):
return None
-_ASYNC_WAITER = mojo.system_impl.AsyncWaiter()
+_ASYNC_WAITER = mojo_system_impl.AsyncWaiter()
« no previous file with comments | « mojo/public/python/mojo_bindings/serialization.py ('k') | mojo/public/python/mojo_system_impl.pyx » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698