Skip to content

Commit

Permalink
Merge pull request #122 from cloudflare/v8-branch-13.1
Browse files Browse the repository at this point in the history
Google V8 - Branch 13.1
  • Loading branch information
buffer authored Nov 18, 2024
2 parents f534c25 + 46565bd commit e376311
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
V8_HOME = os.environ.get("V8_HOME", os.path.join(STPYV8_HOME, "v8"))

V8_GIT_URL = "https://chromium.googlesource.com/v8/v8.git"
V8_GIT_TAG_STABLE = "13.0.245.18"
V8_GIT_TAG_STABLE = "13.1.201.8"
V8_GIT_TAG_MASTER = "master"
V8_GIT_TAG = V8_GIT_TAG_STABLE
DEPOT_GIT_URL = "https://chromium.googlesource.com/chromium/tools/depot_tools.git"
Expand Down
2 changes: 1 addition & 1 deletion src/Wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -968,7 +968,7 @@ v8::Handle<v8::Value> CPythonObject::WrapInternal(py::object obj)

result = v8::Date::New(isolate->GetCurrentContext(), ((double) mktime(&ts)) * 1000 + ms / 1000).ToLocalChecked();
}
else if (PyCFunction_Check(obj.ptr()) || PyFunction_Check(obj.ptr()) || PyMethod_Check(obj.ptr()) || PyType_CheckExact(obj.ptr()))
else if (PyCFunction_Check(obj.ptr()) || PyFunction_Check(obj.ptr()) || PyMethod_Check(obj.ptr()) || PyType_Check(obj.ptr()))
{
v8::Handle<v8::FunctionTemplate> func_tmpl = v8::FunctionTemplate::New(isolate);
py::object *object = new py::object(obj);
Expand Down

0 comments on commit e376311

Please sign in to comment.