File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 7
7
V8_HOME = os .environ .get ("V8_HOME" , os .path .join (STPYV8_HOME , "v8" ))
8
8
9
9
V8_GIT_URL = "https://chromium.googlesource.com/v8/v8.git"
10
- V8_GIT_TAG_STABLE = "13.0.245.18 "
10
+ V8_GIT_TAG_STABLE = "13.1.201.8 "
11
11
V8_GIT_TAG_MASTER = "master"
12
12
V8_GIT_TAG = V8_GIT_TAG_STABLE
13
13
DEPOT_GIT_URL = "https://chromium.googlesource.com/chromium/tools/depot_tools.git"
Original file line number Diff line number Diff line change @@ -968,7 +968,7 @@ v8::Handle<v8::Value> CPythonObject::WrapInternal(py::object obj)
968
968
969
969
result = v8::Date::New (isolate->GetCurrentContext (), ((double ) mktime (&ts)) * 1000 + ms / 1000 ).ToLocalChecked ();
970
970
}
971
- else if (PyCFunction_Check (obj.ptr ()) || PyFunction_Check (obj.ptr ()) || PyMethod_Check (obj.ptr ()) || PyType_CheckExact (obj.ptr ()))
971
+ else if (PyCFunction_Check (obj.ptr ()) || PyFunction_Check (obj.ptr ()) || PyMethod_Check (obj.ptr ()) || PyType_Check (obj.ptr ()))
972
972
{
973
973
v8::Handle <v8::FunctionTemplate> func_tmpl = v8::FunctionTemplate::New (isolate);
974
974
py::object *object = new py::object (obj);
You can’t perform that action at this time.
0 commit comments