Walter Dörwald
Walter Dörwald
The following code snippet, when typed into an IPython shell, crashes IPython: ```python exec('a = 5', {}, []) ``` (What should have been the locals dictionary is a list instead)....
pytype issues a `wrong-arg-count` message for the following Python code: ```python class Color(tuple): def __new__(cls, r=0x0, g=0x0, b=0x0, a=0xff): return tuple.__new__(cls, (r, g, b, a)) def witha(self, a): (r, g,...
The following Python script: ```python import oracledb db = oracledb.connect("user/pwd@db") c = db.cursor() c.execute("select to_clob('foo') from dual").fetchone()[0].read(0) ``` gives the following output: ``` Traceback (most recent call last): File "/Users/walter/oracledb_bug.py",...
The following Python script ```python import oracledb db = oracledb.connect("user/pwd@db", config_dir=os.environ["ORACLE_HOME"] + "/network/admin") lob = db.cursor().execute("select to_clob('foo') from dual").fetchone()[0] lob.getchunksize() ``` gives the following stacktrace: ``` Traceback (most recent call...
It would be great, if `fetch_lobs` and `fetch_decimal` were supported as parameters for `oracledb.connect()` directly instead of only as global configuration parameters in `oracledb.defaults` that only take effect on the...
I'm trying to use slimit on Python 3 and get the following exception: ``` Python 3.3.3 (default, Nov 19 2013, 12:08:16) [GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.2.79)] on darwin...
### URL https://api.python.langchain.com/en/latest/prompts/langchain_core.prompts.chat.HumanMessagePromptTemplate.html ### Checklist - [X] I added a very descriptive title to this issue. - [X] I included a link to the documentation page I am referring to...
1. What versions are you using? database: 21 XE platform.platform: macOS-14.6.1-arm64-arm-64bit sys.maxsize > 2**32: True platform.python_version: 3.12.4 oracledb.__version__: 2.4.1 2. Is it an error or a hang or a crash?...
### Describe the bug I have a method with a doc string: ```python def walkpaths(self) -> Generator[list[AST], None, None]: """ ... """ yield ... ``` I have other classes named...