Buck Evan

Results 56 issues of Buck Evan

Current output of `black`: ```python self.assertEqual( [ ( "", (), dict( description="((a descriptive description)) #expected-title-tag", tags={ "ORIGxNAL_AUTHOR": "expected-user", "TOOL": "//expected/tool", }, reviewers=["[email protected]"], ), ) ] ) ``` I would estimate...

T: enhancement
T: style

### Description This implements my proposal for https://github.com/psf/black/issues/2543 ### Checklist - did you ... - [ ] Add a CHANGELOG entry if necessary? - [ ] Add / update tests...

This will change what people see on the front page, as well as the default merge target for pull requests, which I believe are both desirable changes for your project....

I'm doing an experiment with sys.path_hooks, and pudb is having trouble tracing through it. pudb seems to fail to find the source for `/usr/lib/python3.3/importlib/_bootstrap.py`, which results in the variables windowlet...

Currently modules hard-codes many paths into its source and implementation before it's installed. If that installation is moved, it's broken. This is problematic for various packaging systems, especially those that...

install

From @sigmavirus24 Actually now that I think of a more complex example ``` def f(): try: function_one(1) function_two(arg) except TypeA: print(2) except TypeB: print(3) else: print(4) finally: if x: print(5.1)...

Currently the below code generates the following graph, giving a complexity of 5: ``` def f(): try: print(1) except TypeA: print(2) except TypeB: print(3) else: print(4) finally: if x: print(5.1)...

I expect yapf, as a style-normalizer, to handle the trailing comma issue for me. Some writers put it always, others never, and yapf should make the code look the same...

enhancement