Jared Van Bortel

Results 95 issues of Jared Van Bortel

When backing up likes, the API repeats responses past offset=1000. Inspect _links and stop if the "before" parameter fails to change. Fixes #217

I've tried to improve the documentation somewhat, with the primary goal of having less new issues about things like youtube-dl, Python, and SSL errors. I renumbered some headings (as much...

I wanted to get these changes out of the way before I make any new PRs. There are some good things coming...

This adds a `--drafts` option that uses OAuth to download drafts. Some of the OAuth code is borrowed from tumble.py. Due to OAuth being a bit more finicky than standard...

I have a brand-new, read-only catfs filesystem. I am using it to accelerate a python script that reads many small files from NFS. After the script reads 1,000-20,000 files, the...

### Example Code ```python from typing import Any, Callable, Iterator, TypeVar, overload T = TypeVar('T') def listify(func: Callable[..., Iterator[T]]) -> Callable[..., list[T]]: def helper(*args: Any) -> list[T]: return list(func(*args)) return...

bug
cat: callables

### Example Code **a.py** ```python x = [] ``` **b.py** ```python from a import x ``` ### Expected Behavior pytype can generate a stub file for `a.py` that mypy is...

enhancement
cat: stubs and 3p

### Example Code ```python from enum import Enum class LogLevel(Enum): INFO = 0 WARN = 1 if LogLevel.INFO < LogLevel.WARN: print("'INFO' is less than 'WARN'") if object() < object(): print("'object()'...

enhancement
cat: core

### Example **a.py** ```python import abc from b import Mixin # pytype: disable=import-error class Base(abc.ABC): @abc.abstractmethod def foo(self): raise NotImplementedError class Derived(Mixin, Base): pass x = Derived() print(x.foo()) ``` **b.py**...

bug
cat: core

#### Software versions Python 3.9.9 pytype 2022.01.13 #### Example ```python from typing import Optional flag: bool = False if flag: x = None else: x = 1 l: list[Optional[tuple[int]]] =...

bug
cat: control flow