Javier Ruere

Results 18 issues of Javier Ruere

Using the same method but changing the semantics is very error prone. It means that an immutable dict cannot just be used and see if it works because data may...

The following code: ```python class StampInstance(Entity): id = orm.PrimaryKey(int, sql_type='BIGINT', auto=True) position = orm.Required(int, size=8, unsigned=True) ``` produces the following: ``` +------------+----------+-------------------------------------------------------------+ | Column | Type | Modifiers | |------------+----------+-------------------------------------------------------------|...

Very basic operations are timed and compared among several implementations. PS: your library is awesome!

stale

I don't know if this is the right place to warn about this. ![2020-09-03-115050_1197x530_scrot](https://user-images.githubusercontent.com/1299142/92093210-be076d80-eddb-11ea-8eb6-83090db8a9b7.png)

Since `-OO` removes docstrings, the module fails on import as shown in the following trace: ```python [...] from cloudpathlib import AnyPath, CloudPath File "/home/javier/.virtualenvs/WebsiteTopicClassifier/lib/python3.6/site-packages/cloudpathlib/__init__.py", line 3, in from .anypath import...

bug
good first issue

In class `CloudPath`, `stat` is a property. On all of the class children, `stat` is a method. This looks like a mistake.

bug
good first issue

Instead, `aiosocks.SocksError` is raised saying there was an auth error. AFAICS, this happens because in `aiosocks.protocols.BaseSocksProtocol.negotiate`, on line 58, exception `aiosocks.SocksError` is caught, which is a parent of `aiosocks.LoginAuthenticationFailed` and...

Would it make sense that for a given metric A, using tags, to create additional metrics for each tag? For example, for calls: ``` incr('A') incr('A', tags=dict(tag1=value1, tag2=value2)) incr('A', tags=dict(tag2=value2))...

Hi! I couldn't find an example on how to handle an exception. Is it already somewhere?