FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
Commits · codean-io/scip-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
codean-io
/
scip-python
Public
forked from
sourcegraph/scip-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Commits
Branch selector
User selector
Datepicker
Commit history
Commits on Jul 14, 2022
realized I could make it the same as bazel
tjdevries
committed
feafad8
View commit details
Copy full SHA for feafad8
Browse repository at this point
remove temp debug
tjdevries
committed
42a9498
View commit details
Copy full SHA for 42a9498
Browse repository at this point
wire up to command line args
tjdevries
committed
b4ce440
View commit details
Copy full SHA for b4ce440
Browse repository at this point
add much better progress (without flooding logs). Need to add config still
tjdevries
committed
fe60797
View commit details
Copy full SHA for fe60797
Browse repository at this point
Commits on Jul 11, 2022
remove spinner
tjdevries
committed
c317027
View commit details
Copy full SHA for c317027
Browse repository at this point
Commits on Jul 8, 2022
bump version: v0.3.0
tjdevries
committed
b4e352a
View commit details
Copy full SHA for b4e352a
Browse repository at this point
dev: add version bump script
tjdevries
committed
c8c3a5b
View commit details
Copy full SHA for c8c3a5b
Browse repository at this point
Commits on Jul 7, 2022
github: remove issue templates (will add useful ones later)
tjdevries
committed
84e003b
View commit details
Copy full SHA for 84e003b
Browse repository at this point
dev: Add script for syncing pyright upstream
tjdevries
committed
2d88875
View commit details
Copy full SHA for 2d88875
Browse repository at this point
Merge pull request #46 from sourcegraph/pyright-sync-2022-07-07
Show description for d15673a
tjdevries
authored
d15673a
View commit details
Copy full SHA for d15673a
Browse repository at this point
add pyright-last-sync to note last sync commit
tjdevries
committed
c45b7ef
View commit details
Copy full SHA for c45b7ef
Browse repository at this point
Merge branch 'pyright-mirror' into pyright-sync-2022-07-07
tjdevries
committed
449c834
View commit details
Copy full SHA for 449c834
Browse repository at this point
lsif -> scip (#42)
Show description for 051af0c
tjdevries
authored
051af0c
View commit details
Copy full SHA for 051af0c
Browse repository at this point
Removed misleading comment from test case.
msfterictraut
committed
b5134c5
View commit details
Copy full SHA for b5134c5
Browse repository at this point
Fixed bug that resulted in incorrect type evaluation for values within a TypedDict that derives from a TypedDict that has been specialized.
msfterictraut
committed
76dcb1b
View commit details
Copy full SHA for 76dcb1b
Browse repository at this point
Fixed bug that results in incorrect type evaluation when a function with a `**kwargs` parameter is captured by a ParamSpec in certain circumstances.
msfterictraut
committed
527a5ff
View commit details
Copy full SHA for 527a5ff
Browse repository at this point
Fixed recent regression that resulted in attribution of a type var to the wrong scope when it was used in an `__init__` method of a class with a class decorator.
msfterictraut
committed
6792731
View commit details
Copy full SHA for 6792731
Browse repository at this point
Improved performance of type evaluations in certain cases where a union contains multiple types whose class hierarchy contains one or more unknown types.
msfterictraut
committed
06c4ef1
View commit details
Copy full SHA for 06c4ef1
Browse repository at this point
Commits on Jul 6, 2022
fixed nested call signature help bug (#3667)
heejaechang
authored
f3e85ee
View commit details
Copy full SHA for f3e85ee
Browse repository at this point
Added support for context managers whose `__exit__` method is declared to return a falsy return type other than `None`.
msfterictraut
committed
5763cf1
View commit details
Copy full SHA for 5763cf1
Browse repository at this point
Automatically add issues to Code Intel Project Board (#40)
olafurpg
authored
587907e
View commit details
Copy full SHA for 587907e
Browse repository at this point
Fixed a bug that resulted in incorrect `isinstance` type narrowing when one or more of the filter classes was decorated with a class decorator.
msfterictraut
committed
8ae021c
View commit details
Copy full SHA for 8ae021c
Browse repository at this point
Bump parse-url from 6.0.0 to 6.0.2 (#3661)
Show description for cdb3516
dependabot[bot]
authored
cdb3516
View commit details
Copy full SHA for cdb3516
Browse repository at this point
Commits on Jul 5, 2022
Implemented optimization for type evaluation for index expressions. In cases where there are multiple subexpressions separated by commas, we can skip the check for the `__index__` magic method.
msfterictraut
committed
5ac7a93
View commit details
Copy full SHA for 5ac7a93
Browse repository at this point
Added optimization for slice expression evaluation. It can be skipped in cases where the we are speculatively evaluating the type.
msfterictraut
committed
5fffd5b
View commit details
Copy full SHA for 5fffd5b
Browse repository at this point
Fixed bug in the expression printer. It was not properly handling a minimal slice (`:`).
msfterictraut
committed
eeab5b1
View commit details
Copy full SHA for eeab5b1
Browse repository at this point
Commits on Jul 4, 2022
Fixed a bug in the handling of generic type aliases that are parameterized by ParamSpecs in the case where an explicit type argument is not provided. The type argument should default to `...` in th…
Show description for 8bc14ef
msfterictraut
committed
8bc14ef
View commit details
Copy full SHA for 8bc14ef
Browse repository at this point
Updated README to include provisional PEPs.
msfterictraut
committed
f3d8345
View commit details
Copy full SHA for f3d8345
Browse repository at this point
Commits on Jul 3, 2022
Fixed a bug that resulted in incorrect type narrowing when using an `in` expression and the LHS operand is of type `type`. This situation requires some special casing.
msfterictraut
committed
991d8e7
View commit details
Copy full SHA for 991d8e7
Browse repository at this point
Published 1.1.257
msfterictraut
committed
4c47b0b
View commit details
Copy full SHA for 4c47b0b
Browse repository at this point
Updated typeshed stubs to the latest version.
msfterictraut
committed
3caf21a
View commit details
Copy full SHA for 3caf21a
Browse repository at this point
Implemented provisional support for proposed PEP 695: Improved Syntax for Type Parameters. The new functionality is available only if you manually configure pyright to assume Python 3.12. It suppor…
Show description for d7e2571
msfterictraut
committed
d7e2571
View commit details
Copy full SHA for d7e2571
Browse repository at this point
Fixed a bug that resulted in incorrect type evaluation of `NewType` for versions of python older than 3.8. (In 3.8, NewType was changed from a function to a class.)
msfterictraut
committed
6e4d539
View commit details
Copy full SHA for 6e4d539
Browse repository at this point
Fixed several bugs that resulted in incorrect type evaluations when a property getter or method has an inferred return type that contains a type variable.
msfterictraut
committed
0590eee
View commit details
Copy full SHA for 0590eee
Browse repository at this point
Commits on Jul 1, 2022
Pull Pylance 2022.7.11 (#3647)
debonte
authored
df1b863
View commit details
Copy full SHA for df1b863
Browse repository at this point
Previous
Next
Back
|
FazBrowse Home
|
New Git URL