basedpyright 1.36.1-3bbf7d64ef95f6d6ca32192f2acb2903e53dea75 → 1.36.1-ec7ca52b075435a6134f10e2085ea8cfebed8e72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,5 @@
1
+ """This is a template module just for instruction."""
2
+
1
3
  import sys
2
4
  from typing import Any, ClassVar, final
3
5
 
@@ -5,12 +7,23 @@ class Str(str): ...
5
7
 
6
8
  @final
7
9
  class Xxo:
8
- def demo(self) -> None: ...
10
+ """A class that explicitly stores attributes in an internal dict"""
11
+ def demo(self) -> None:
12
+ """demo(o) -> o"""
13
+ ...
9
14
  if sys.version_info >= (3, 11) and sys.platform != "win32":
10
15
  x_exports: int
11
16
 
12
- def foo(i: int, j: int, /) -> Any: ...
13
- def new() -> Xxo: ...
17
+ def foo(i: int, j: int, /) -> Any:
18
+ """
19
+ foo(i,j)
20
+
21
+ Return the sum of i and j.
22
+ """
23
+ ...
24
+ def new() -> Xxo:
25
+ """new() -> new Xx object"""
26
+ ...
14
27
 
15
28
  if sys.version_info >= (3, 10):
16
29
  class Error(Exception): ...
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "basedpyright",
3
3
  "displayName": "basedpyright",
4
4
  "description": "a fork of pyright with various type checking improvements, pylance features and more.",
5
- "version": "1.36.1-3bbf7d64ef95f6d6ca32192f2acb2903e53dea75",
5
+ "version": "1.36.1-ec7ca52b075435a6134f10e2085ea8cfebed8e72",
6
6
  "license": "MIT",
7
7
  "author": {
8
8
  "name": "detachhead"