We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I believe tcalmant is mostly outdated and should run out of the box with our master, but I need to verify it.
Looking over the contents here the differences from the last branch point
isinstance(obj, JInterface)
_core.py
get_boot_arguments
normalized_arguments
const char*
#ifdef
Okay so next mark the stuff that we have covered.
The text was updated successfully, but these errors were encountered:
Pulled the tests directory from tcalmant branch to ours to check functionality.
Only one difference between the branches. His version takes dictionary rather than dict for the name of the proxy.
dictionary
dict
Sorry, something went wrong.
Check for uses without macro in our code
- self->ob_type->tp_free(o); + Py_TYPE(self)->tp_free(o);^M }
and
@@ -50,7 +50,15 @@ void JPArray::setRange(int start, int stop, vector<HostRef*>& val) ^M JPType* compType = m_Class->getComponentType();^M ^M - int len = stop-start;^M + if(stop < start)^M + {^M + std::stringstream out;^M + out << "Slice start (" << start << ") is greater than stop ("^M + << stop << ")";^M + RAISE(JPypeException, out.str());^M + }^M +^M + unsigned int len = stop-start;^M size_t plength = val.size();^M ^M
No branches or pull requests
I believe tcalmant is mostly outdated and should run out of the box with our master, but I need to verify it.
Looking over the contents here the differences from the last branch point
isinstance(obj, JInterface)
_core.py
get_boot_arguments
andnormalized_arguments
.Not sure what these do. I have never needed them to run from cygwin.
const char*
changes#ifdef
to our copyOkay so next mark the stuff that we have covered.
The text was updated successfully, but these errors were encountered: