Jay Marcyes

Results 144 issues of Jay Marcyes

We should be able to pass in `serializable=True` to the transaction method to cause the begin to do: ``` BEGIN ISOLATION LEVEL SERIALIZABLE; ``` Also, it would be cool to...

enhancement

Right now everything just gets raised as an `InterfaceError`, but this should be broken down even more, so there should be `IntegrityError` and `ConnectionError` etc. all children of `InterfaceError`, this...

enhancement

http://initd.org/psycopg/docs/extras.html#json-adaptation

question

https://docs.python.org/3/library/dis.html ``` def sum_range(x, y): return sum(range(x, y)) ``` ``` >>> dis.dis(sum_range) 2 0 LOAD_GLOBAL 0 (sum) 2 LOAD_GLOBAL 1 (range) 4 LOAD_FAST 0 (x) 6 LOAD_FAST 1 (y) 8...

For example, a list that stops printing out after 100 rows: ``` foo = list (754) instance at 0x10ed70950 [ 0: ... ] ``` should do something like this instead:...

Since developing on python3 full time I've been super annoyed by how many deprectation warnings I get in libraries I have no control over, this works in `sitecustomize.py` to get...

Right now, most of the body is generated in `string_value`, the 2.0.0 upgrade brought some supporting methods like `prefix_value` and `finalize_value` but it would be great if we could add...

a locals printer, this will just print out all the local values in whatever context it was called, so if you did this: ```python def foo(): foo = 1 bar...

sometimes the code blocks have the entire class instead of the individual method which makes them impossible to follow

it would be cool to do something like: ```python pout.suppress(True) pout.v("this will be ignored") pout.suppress(False) pout.v("this will print like normal") ``` Because sometimes I have pout's buried deep into a...