Walter Dörwald

Results 16 comments of Walter Dörwald

This still happens with IPython 7.19.0.

This still happens with IPython 8.0: ``` Python 3.10.1 (main, Dec 6 2021, 22:25:40) [Clang 13.0.0 (clang-1300.0.29.3)] Type 'copyright', 'credits' or 'license' for more information IPython 8.0.0 -- An enhanced...

This seems to be fixed somewhat now with IPython 8.2.0. At least IPython no longer crashes: ``` Python 3.10.2 (main, Feb 2 2022, 06:19:27) [Clang 13.0.0 (clang-1300.0.29.3)] Type 'copyright', 'credits'...

Can't you use something like this (which is taken from https://github.com/LivingLogic/LivingLogic.Python.xist/blob/master/src/ll/orasql/__init__.py): ``` class LOBStream: """ A :class:`LOBStream` object provides streamlike access to a ``BLOB`` or ``CLOB``. """ def __init__(self, value):...

The most helpful would probably be: ``` ValueError: offset must be > 0 ``` BTW, passing a negative values currently results in: ``` OverflowError: can't convert negative value to uint64_t...

> I thought this might be coming. :-) Why is that? > It makes sense and we will definitely implement something llike it in a future release. In the meantime,...

> > > I thought this might be coming. :-) > > > > > > Why is that? > > Just because it is a natural extension of the...

Of course I call always annotate `__new__` with: ```python def __new__(cls, r=0x0, g=0x0, b=0x0, a=0xff) -> "Color": ```

I started using DBeaver a few days ago (for working with Oracle), and this is one of the most annoying missing features of DBeaver. In most of our tables all...

OK, I think I found the right preference option that fixes that: "Calculate column width by cell value" under "Preferences" -> "Editors" -> "Data Editor" -> "Appearance". When I deselect...