Max Bolingbroke

Results 10 issues of Max Bolingbroke

If we have this before: ``` class A { void foo(); } ``` And then the new version has: ``` class A extends B {} class B { void foo();...

Py4JJavaError.__str__ will try to send a command to the JVM to format the exception as a string. The problem is that this command send can fail (if e.g. the remote...

bug

Note that this will only work once https://github.com/openvenues/libpostal/pull/376 is merged to libpostal.

This program fails with `AssertionError: '\x00\x00\x00'` but it should succeed. ``` import turbodbc import pyodbc cstring = 'DRIVER={SQL Server};SERVER=;PORT=1433;DATABASE=;UID=;PWD=;TDS_Version=7.1' conn = turbodbc.connect(connection_string=cstring, turbodbc_options=turbodbc.make_options(prefer_unicode=True, autocommit=True)) # A #conn = turbodbc.connect(connection_string=cstring, turbodbc_options=turbodbc.make_options(prefer_unicode=False,...

This fails: ``` with contextlib.closing(connect()) as conn, contextlib.closing(conn.cursor()) as cursor: sql = '\nunion all\n'.join((['select null ccy'] * 1024) + ["select 'CNY'"]) cursor.execute(sql) print(cursor.fetchallarrow(strings_as_dictionary=True).to_pandas()) ``` With an exception as follows: ```...

This PR just consists of https://github.com/jiangwen365/pypyodbc/pull/13 plus one extra Unicode fix I found was necessary to prevent pypyodbc from core dumping with an error about a double free.

Without this, openvenues/pypostal can't link to the DLL that the libpostal Windows build creates. pypostal seems to use most of these functions: rather than figure out exactly which ones were...

`requests.utils.get_encoding_from_headers` assumes that the charset parameter always specifies a name. In very rare cases a server can send a malformed content-type header which does not specify a name. In these...

### Pandas version checks - [X] I have checked that this issue has not already been reported. - [X] I have confirmed this bug exists on the [latest version](https://pandas.pydata.org/docs/whatsnew/index.html) of...

Bug
IO Parquet
Needs Triage

If e.g. we are running in `us-east-2`: ``` $ s5cmd sync 's3://my-us-east-1-bucket/example/*' /tmp/example/ ERROR "sync s3://my-us-east-1-bucket/example/* /tmp/example/": BucketRegionError: incorrect region, the bucket is not in 'us-east-2' region at endpoint '',...