-
Updated
Mar 22, 2022 - Python
typing
Here are 631 public repositories matching this topic...
-
Updated
Feb 19, 2022 - TypeScript
-
Updated
Feb 29, 2020
-
Updated
Mar 2, 2022 - JavaScript
-
Updated
Mar 21, 2022 - Python
-
Updated
Mar 5, 2022 - JavaScript
-
Updated
Jan 27, 2022 - Python
-
Updated
Mar 22, 2022 - Python
-
Updated
Mar 8, 2022 - JavaScript
Currently all responses return 200 (unless there is a server error, in which case 500).
It would be best to have specific codes for different types of errors to differentiate between them.
Example:
400 - Bad request
etc.
Problem
We could improve the readability / experience reading through the library source code if there were module level docstrings.
Suggested solution
All python modules should include a docstring explaining
-
Updated
Feb 8, 2022 - Python
-
Updated
Nov 2, 2021 - JavaScript
Ideally there should be a way to install on at least some machines without cargo. This will need an installation script to install the language files in lieu of build.rs.
Some alternative installation methods which would be good to include are:
shinstallation script w/ prebuilt binaries- AUR package
For prebuilt binaries, it would be ideal to setup GitHub workflows or similar so
-
Updated
Mar 21, 2022 - Python
-
Updated
Mar 15, 2022 - Python
-
Updated
Mar 20, 2022 - Python
-
Updated
Aug 12, 2021 - Python
-
Updated
Nov 28, 2021 - Python
TAP works very slow:
to reproduce
from tap import Tap
from argparse import ArgumentParser
from profilehooks import profile, timecall
class SimpleArgumentParser(Tap):
name: str # Your name
language: str = 'Python' # Programming language
package: str = 'Tap' # Package name
stars: int # Number of stars
max_stars: int = 5 # Maximum stars
@profile(dirs=T
Just fix tests to use Factory instead of old style
-
Updated
May 29, 2019 - Java
Improve this page
Add a description, image, and links to the typing topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the typing topic, visit your repo's landing page and select "manage topics."
Elm has the option to output errors as JSON (via a flag), and something like that is handy for writing tooling around it. I'm trying to integrate
pytypeinto ALE and this would make it a lot easier.