Kevin C

Results 23 issues of Kevin C

**Describe the bug** My intent is to trace all python files under project root, excepting a couple directories and python files in the top level. This is close to what...

bug
needs triage

If `furl` were a `typing.Text`, it would work with static type checkers/hinters. I like that the following works: ```python url_obj = furl('http://www.google.com') response = requests.get(url_obj) ``` However, the static checker...

**What's the output of `:CocCommand pyright.version`** `[coc.nvim] coc-pyright 1.1.260 with Pyright 1.1.260` **What's the output of `:CocCommand workspace.showOutput Pyright`** ``` Workspace: /Users/kevincheng/carrot/customers/airflow-task-runners/customers-airflow-task-runner-acquisition Using python from /Users/kevincheng/carrot/customers/airflow-task-runners/customers-airflow-task-runner-acquisition/.venv/bin/python [Info - 1:23:41 PM]...

http://www.python.org/dev/peps/pep-3113/ removed tuple param unpacking so in Python 3: ```py ( seq((1, 2), (3, 4)) .map(lambda a, b: a + b) # TypeError: () missing 1 required positional argument: 'b'...

evergreen

Seeing as how S3Path leverages smart_open, I was surprised that: ```python S3Path('/mybucket/mypath/file.csv.gz').open() ``` Did not "autodetect" compression from file extension, as smart_open does by default: ```python smart_open.open(S3Path('/mybucket/mypath/file.csv.gz')) ``` As it...

Please answer these questions before submitting your issue. Thanks! 1. What version of Python are you using? Python 3.7.6 2. What operating system and processor architecture are you using? Darwin-20.6.0-x86_64-i386-64bit...

bug
needs triage

Original report: https://github.com/googleads/google-ads-python/issues/597 Directed to this project by @BenRKarl Excerpt: > `GoogleAdsService` provides `search()`, which accepts a [`retry: google.api_core.retry.Retry`](https://github.com/googleapis/python-api-core/blob/c89f55d10df50c222d05ea046e07e05ef7d17725/google/api_core/retry.py#L223). The Retry decorator ends up only getting [applied on the first...

type: bug
priority: p2

GoogleAdsService provides `search()`, which accepts a `Retry()`. Apply the Retry decorator on all request pages, not just the first. Original-Report: https://github.com/googleads/google-ads-python/issues/597 Resolves: https://github.com/googleapis/gapic-generator-python/issues/1242

* Add cfg in pyproject.toml to support `pytest` without args * Add CONTRIBUTING.md with quickstart guide * Add .venv to .gitignore