Anthony Tuininga
Anthony Tuininga
> For example, in Service_SetupPython() there is module = PyImport_ImportModule(...), but then Py_DECREF() is never called. Since PyImport_ImportModule() returns a "new" reference, I would expect to see Py_DECREF() called once...
So, with your patch does the memory use remain stable? Maybe I don't know what I am talking about. ;-)
*Original comment by* **Anthony Tuininga (Bitbucket: [anthony_tuininga](https://bitbucket.org/anthony_tuininga), GitHub: Unknown)**: ---------------------------------------- If you can create a pull request for this based on the equivalent Mac code I'd be happy to integrate...
*Original comment by* **Thomas Kluyver (Bitbucket: [takluyver](https://bitbucket.org/takluyver), GitHub: [takluyver](https://github.com/takluyver))**: ---------------------------------------- It is annoying, but we currently just call a standard Windows MessageBox function. To get more control over the display,...
Just to be clear: usign the ``/*+ append */`` hint should work with cx_Oracle just as well as it does in SQL*Plus or any other client. The other method that...
Since Python does not natively support interval year to month data, cx_Oracle would have to implement an object itself. Do you have a need for it? If you do, can...
The [documentation](https://cx-oracle.readthedocs.io/en/latest/api_manual/module.html#cx_Oracle.Warning) makes it clear that this "exception" is not used. SQL*Plus displays the "error" which is found from an ``OCI_SUCCESS_WITH_INFO`` response. ODPI-C and cx_Oracle do not expose this at...
Yeah, it would be useful information, but where to put it is the question! We'll consider this further and I'll mark this as an enhancement request.
We're considering other enhancements so I don't know if this will make 8.1 or not. Stay tuned!
I took a look and realized that the example provided in the documentation is inaccurate! We will have to adjust it and also make clear that the output type handler...