Adds writer test case for RCU
[folly.git] / folly / python / __init__.pxd
index b5deda23cf7d9da6384189a50613e8acd6b79173..d104b414a7eae090238b4e8dc504153d8147e59d 100644 (file)
@@ -2,11 +2,11 @@ from libcpp cimport bool as cbool
 
 cdef extern from "folly/ExceptionWrapper.h" namespace "folly":
     cdef cppclass cFollyExceptionWrapper "folly::exception_wrapper":
-        void throwException() except +
+        void throw_exception() except +
 
 cdef extern from "folly/Try.h" namespace "folly" nogil:
     cdef cppclass cFollyTry "folly::Try"[T]:
-        T value() except+
+        T value()
         cbool hasException[T]()
         cbool hasException()
         cFollyExceptionWrapper exception()