This repository was archived by the owner on Apr 14, 2022. It is now read-only.
Commit 1a272b8
Mikhail Arkhipov
Adding support for egg and zip files (#1552)
* Persistent analysis, part I (#1224)
* Remove old qualified name
* Node storage
* Class and scope to use AST map
* Library analysis
* Fix SO
* Keep small AST with imports
* AST reduction
* Final field
* Initial
* Reload
* Ignore post-final requests
* Drop AST
* Remove local variables
* Test fixes
* Fix overload match
* Tests
* Add locks
* Remove local variables
* Drop file content to save memory
* Cache PEP hints
* Recreate AST
* Fix specialization
* Fix locations
* usings
* Test fixes
* Add options to keep data in memory
* Fix test
* Fix lambda parameters
* Fix argument set
Fix global scope node
* Fix overload doc
* Fix stub merge errors
* Fix async issues
* Undo some changes
* Fix test
* Fix race condition
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* Merge master into database branch (#1312)
* Remove old qualified name
* Node storage
* Class and scope to use AST map
* Library analysis
* Fix SO
* Keep small AST with imports
* AST reduction
* Final field
* Initial
* Reload
* Ignore post-final requests
* Drop AST
* Remove local variables
* Test fixes
* Fix overload match
* Tests
* Add locks
* Remove local variables
* Drop file content to save memory
* Cache PEP hints
* Recreate AST
* Fix specialization
* Fix locations
* usings
* Test fixes
* Add options to keep data in memory
* Fix test
* Fix lambda parameters
* Fix argument set
Fix global scope node
* Fix overload doc
* Fix stub merge errors
* Fix async issues
* Undo some changes
* Fix test
* Fix race condition
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* Avoid empty node in empty global scope (#1226)
* Add null checks
* Avoid null node in empty global scope
* Remove unrelated change
* Lock content since it is locked in other cases (#1227)
* Fix addBrackets setting (#1241)
* Fix addBrackets
* Remove unrelated change
* Usings
* Handle library analysis better (#1246)
* Trying to augment argument set with Evaluator and Expression context (#1259)
* Moving anyStr to its own method to prevent FromTypeVar from being called with an ArgumentSet that has no context
* Trying to augment argument set with context wherever possible
* Setting expression in argument set, removing null
* Renaming to WithoutContext and updating comment
* Check for null args in PythonFunctionOverload
* When returning in init method, report a diagnostic error (#1261)
* When returning in init method, report a diagnostic error
* Adding check and tests for returning None before adding error for a return statement in the init function
* Cleaning up tests
* Give Diagnostic messages on improper usage of Generic (#1248)
* Adding diagnostic message for improper use Generic.
* Adding tests to make sure no diagnostics on valid uses of Generic
* Adding diagnostic error on binary operations with incompatible types (#1254)
* Adding diagnostic error for binary operations with incompatible types - e.g 5 + 'str'
* When NewType is called and the first argument is not a string, make a diagnostic message (#1260)
* Adding diagnostic error if the user calls NewType with the first arg not of string type
* Fix typo in TROUBLESHOOTING.md (#1285)
* Multiple analysis fixes (#1297)
Multiple analysis fixes.
- Fixes #1151: Reliable way to determine final analysis of a module
- Fixes #1201: NRE in SymbolCollector.AddProperty
- Fixes #1228: NRE in TryFindMissingDependencies
- Fixes #1294: Handle valid case for reloading AST
- Fixes #1295: FindReferences doesn't work on package init members
- Fixes #1296: DependencyResolver graph misses intermediate imports
- Part of the fix for #1174: All references are not listed when using ms language server (fixes in analysis itself are also required for this one)
* Rework search path resolution (#1289)
* first working path classfier, breaks existing path code for now
* inherit Comparer instead of implementing both
* don't do path depth comparison, preserve user ordering as before
* switch to using new path classification code in main module resolution
* fix typo
* clean up comment about paths in Server.cs
* use String.Split instead of regex when parsing script output
* test ordering of user provided paths
* add new normalize and trim helper, check preconditions as debug asserts rather than commenting on them
* use Split extension, don't MaybeEnumerate paths
* No diagnostic message when Generic is called with no args (#1305)
* No diagnostic message when Generic is called with no args
* When a class inherits from something that is not a class, give a diagnostic error (#1277)
* When analyzing class definitions, give diagnostic if bases are not all class types
* PR feedback
* Treat persistent module as regular specialized (#1334)
* Remove old qualified name
* Node storage
* Class and scope to use AST map
* Library analysis
* Fix SO
* Keep small AST with imports
* AST reduction
* Final field
* Initial
* Reload
* Ignore post-final requests
* Drop AST
* Remove local variables
* Test fixes
* Fix overload match
* Tests
* Add locks
* Remove local variables
* Drop file content to save memory
* Cache PEP hints
* Recreate AST
* Fix specialization
* Fix locations
* usings
* Test fixes
* Add options to keep data in memory
* Fix test
* Fix lambda parameters
* Fix argument set
Fix global scope node
* Fix overload doc
* Fix stub merge errors
* Fix async issues
* Undo some changes
* Fix test
* Fix race condition
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* PR feedback
* Restore persistence + update test
* Better handle persistent module in dependencies
* Undo
* Fix merge issue
* Remove debug code
* Store location of module members in the database (#1339)
* Remove old qualified name
* Node storage
* Class and scope to use AST map
* Library analysis
* Fix SO
* Keep small AST with imports
* AST reduction
* Final field
* Initial
* Reload
* Ignore post-final requests
* Drop AST
* Remove local variables
* Test fixes
* Fix overload match
* Tests
* Add locks
* Remove local variables
* Drop file content to save memory
* Cache PEP hints
* Recreate AST
* Fix specialization
* Fix locations
* usings
* Test fixes
* Add options to keep data in memory
* Fix test
* Fix lambda parameters
* Fix argument set
Fix global scope node
* Fix overload doc
* Fix stub merge errors
* Fix async issues
* Undo some changes
* Fix test
* Fix race condition
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* PR feedback
* Restore persistence + update test
* Better handle persistent module in dependencies
* Undo
* Add location converter abstraction
* Store member location
* Basic locations test
* Navigation
* Add test
* Update baselines
* Port changes from dbtype
* Multiple fixes and additional tests for persistence (#1372)
* Remove old qualified name
* Node storage
* Class and scope to use AST map
* Library analysis
* Fix SO
* Keep small AST with imports
* AST reduction
* Final field
* Initial
* Reload
* Ignore post-final requests
* Drop AST
* Remove local variables
* Test fixes
* Fix overload match
* Tests
* Add locks
* Remove local variables
* Drop file content to save memory
* Cache PEP hints
* Recreate AST
* Fix specialization
* Fix locations
* usings
* Test fixes
* Add options to keep data in memory
* Fix test
* Fix lambda parameters
* Fix argument set
Fix global scope node
* Fix overload doc
* Fix stub merge errors
* Fix async issues
* Undo some changes
* Fix test
* Fix race condition
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* PR feedback
* Restore persistence + update test
* Better handle persistent module in dependencies
* Undo
* Add location converter abstraction
* Store member location
* Fix merge issue
* Basic locations test
* Navigation
* Add test
* Update baselines
* Type restore - initial
* Remove debug code
* Partial
* Fix stub merge
* Various model fixes
* Improve module handling
* Qualified name improvements
* Fix unbound case
* Improve stub merge
* Fix qualified names of typing
* Handle stub-only modules
* Add tests for io, re and sys
* Better handle named tuple
* Handle module circular references
* Handle else in platform and version clauses + handle it in symbol collector
* Formatting
* Fix walk of multi-level if statement
* Unify package search in imports
* Fix tests
* Undo change
* Port changes from dbtype
* Partial
* Named tuple support
* Baseline updates
* Debug code
* Support types
* Properly compare class member declaring type
* Nested classes and functions persistence
* Undo debug
* Fix numpy restore
* Baselines
* Fix tests
* Update AnyStr test reflecting changes to AnyStr behavior
* Exclude baselines from git diff
* Fix gitattr
* Move git setting to root
* Try no path
* Add RDT count to the analysis_complete event (#1396)
* Add RDT count to the analysis_complete event
* Use property instead of method
* Test fixes
* Undo change
* Additional stub merge fixes
* Baseline updates
* Fix goto def
* Protect specific type creation
* Track documentaton source
* More reliable tests + simplification
* Prevent crashes when the AST happens to be null (#1405)
* Remove all references to dropped modules and force GC on reload (#1402)
* First attempt at ensuring moduled dropped during reload are GC'd
* Make sure AST is set after content is cleared
* More tests passing
* ModuleWalker updates
* Also don't merge against specialized modules, do builtin _astMap reset before reanalyzing instead of after any analysis
* Don't call dispose directly, it's done elsewhere and has no effect
* Force GC via normal session instead of waiting for a hardcoded time
* Un-refactor function since it's not being called externally anymore
* Formatting/usings
* PR feedback
* Undo IsBuiltin, some things continued to be referenced with that changed
* Move reload logic down into PythonAnalyzer, remove added public inferface items
* Mode AddReference to PythonType as override
* Remove dead code, make all ResetAnalyzer calls full
* Typo
* Cleanup
* Basic classification
* Fix merge error
* Module unique id fixes
* Stricted check to save analysis
* Revert "Fix tests"
This reverts commit 247a8c3.
* Revert "Unify package search in imports"
This reverts commit 67fed10.
* Don't clear scope variables with inner classes
* Fix typo
* Add persistence tests for 60+ system modules (#1429)
* Remove old qualified name
* Node storage
* Class and scope to use AST map
* Library analysis
* Fix SO
* Keep small AST with imports
* AST reduction
* Final field
* Initial
* Reload
* Ignore post-final requests
* Drop AST
* Remove local variables
* Test fixes
* Fix overload match
* Tests
* Add locks
* Remove local variables
* Drop file content to save memory
* Cache PEP hints
* Recreate AST
* Fix specialization
* Fix locations
* usings
* Test fixes
* Add options to keep data in memory
* Fix test
* Fix lambda parameters
* Fix argument set
Fix global scope node
* Fix overload doc
* Fix stub merge errors
* Fix async issues
* Undo some changes
* Fix test
* Fix race condition
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* PR feedback
* Restore persistence + update test
* Better handle persistent module in dependencies
* Undo
* Add location converter abstraction
* Store member location
* Fix merge issue
* Basic locations test
* Navigation
* Add test
* Update baselines
* Type restore - initial
* Remove debug code
* Partial
* Fix stub merge
* Various model fixes
* Improve module handling
* Qualified name improvements
* Fix unbound case
* Improve stub merge
* Fix qualified names of typing
* Handle stub-only modules
* Add tests for io, re and sys
* Better handle named tuple
* Handle module circular references
* Handle else in platform and version clauses + handle it in symbol collector
* Formatting
* Fix walk of multi-level if statement
* Unify package search in imports
* Fix tests
* Undo change
* Port changes from dbtype
* Partial
* Named tuple support
* Baseline updates
* Debug code
* Support types
* Properly compare class member declaring type
* Nested classes and functions persistence
* Undo debug
* Fix numpy restore
* Baselines
* Fix tests
* Update AnyStr test reflecting changes to AnyStr behavior
* Exclude baselines from git diff
* Fix gitattr
* Move git setting to root
* Try no path
* Test fixes
* Undo change
* Additional stub merge fixes
* Baseline updates
* Fix goto def
* Protect specific type creation
* Track documentaton source
* More reliable tests + simplification
* Typo
* Cleanup
* Basic classification
* Fix merge error
* Module unique id fixes
* Stricted check to save analysis
* Revert "Fix tests"
This reverts commit 247a8c3.
* Revert "Unify package search in imports"
This reverts commit 67fed10.
* Don't clear scope variables with inner classes
* Fix typo
* Many new tests
* Fix collections test
* Fix CTypes
* Initial
* Update test
* Merge issues
* Fix CTypes again
* Fix null bases
* Tell between class members with/without self better
* TypeVar support
* Add bound/covariant
* Fix Enum reassignments
* Fix Random
* Fix import * over local declarations (Socket)
* Move interface
* Fix reference search
* Enable asyncio test
* More tests
* Enable dataclasses
* Add inspect and gzip
* More tests
* Add setting
* Add handling of import position relative to the variable
* Caching level changes
* Update baselines
* Test update (we no longer reassign classes)
* Fix typing tests
* Update baseline
* Fix missing keys issue (#1451)
* Typevar fix
* Persistence of generics and named tuples (#1459)
* Remove old qualified name
* Node storage
* Class and scope to use AST map
* Library analysis
* Fix SO
* Keep small AST with imports
* AST reduction
* Final field
* Initial
* Reload
* Ignore post-final requests
* Drop AST
* Remove local variables
* Test fixes
* Fix overload match
* Tests
* Add locks
* Remove local variables
* Drop file content to save memory
* Cache PEP hints
* Recreate AST
* Fix specialization
* Fix locations
* usings
* Test fixes
* Add options to keep data in memory
* Fix test
* Fix lambda parameters
* Fix argument set
Fix global scope node
* Fix overload doc
* Fix stub merge errors
* Fix async issues
* Undo some changes
* Fix test
* Fix race condition
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* PR feedback
* Restore persistence + update test
* Better handle persistent module in dependencies
* Undo
* Add location converter abstraction
* Store member location
* Fix merge issue
* Basic locations test
* Navigation
* Add test
* Update baselines
* Type restore - initial
* Remove debug code
* Partial
* Fix stub merge
* Various model fixes
* Improve module handling
* Qualified name improvements
* Fix unbound case
* Improve stub merge
* Fix qualified names of typing
* Handle stub-only modules
* Add tests for io, re and sys
* Better handle named tuple
* Handle module circular references
* Handle else in platform and version clauses + handle it in symbol collector
* Formatting
* Fix walk of multi-level if statement
* Unify package search in imports
* Fix tests
* Undo change
* Port changes from dbtype
* Partial
* Named tuple support
* Baseline updates
* Debug code
* Support types
* Properly compare class member declaring type
* Nested classes and functions persistence
* Undo debug
* Fix numpy restore
* Baselines
* Fix tests
* Update AnyStr test reflecting changes to AnyStr behavior
* Exclude baselines from git diff
* Fix gitattr
* Move git setting to root
* Try no path
* Test fixes
* Undo change
* Additional stub merge fixes
* Baseline updates
* Fix goto def
* Protect specific type creation
* Track documentaton source
* More reliable tests + simplification
* Typo
* Cleanup
* Basic classification
* Fix merge error
* Module unique id fixes
* Stricted check to save analysis
* Revert "Fix tests"
This reverts commit 247a8c3.
* Revert "Unify package search in imports"
This reverts commit 67fed10.
* Don't clear scope variables with inner classes
* Fix typo
* Many new tests
* Fix collections test
* Fix CTypes
* Initial
* Update test
* Merge issues
* Fix CTypes again
* Fix null bases
* Tell between class members with/without self better
* TypeVar support
* Add bound/covariant
* Fix Enum reassignments
* Fix Random
* Fix import * over local declarations (Socket)
* Move interface
* Fix reference search
* Enable asyncio test
* More tests
* Enable dataclasses
* Add inspect and gzip
* More tests
* Add setting
* Add handling of import position relative to the variable
* Caching level changes
* Partial
* Rework
* Fix null
* Update baselines
* Functools pass
* Reverse stub merge
* Partial
* Partial ctypes
* Update variables post merge
* Fix ctypes
* Merge issues
* Fix typevar
* Add caching on construction
* Assorted fixes
* Named tuples
* Work around os stub oddness
* Fix generic qualified names
* Ignore lambdas
* Support named tuples as bases
* Baselines
* Test updates
* Named tuple tests
* PR feedback
* Using
* Move diagnostics to GenericBase
* PR feedback
* - Fix #1455: AF: Library module of type Stub has been analyzed already! (#1470)
- Restore task handling in unit tests
- Throw exception from Debug.Fail instead of FailFast
* Update baselines since __spec__ member was added
* Undo some of changes to match master.
* Fix null ref
* Resolve conflicts
* Fix null ref on bases due to new AnyStr behavior
* Handling dependencies in module persistence (#1471)
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* PR feedback
* Restore persistence + update test
* Better handle persistent module in dependencies
* Undo
* Add location converter abstraction
* Store member location
* Fix merge issue
* Basic locations test
* Navigation
* Add test
* Update baselines
* Type restore - initial
* Remove debug code
* Partial
* Fix stub merge
* Various model fixes
* Improve module handling
* Qualified name improvements
* Fix unbound case
* Improve stub merge
* Fix qualified names of typing
* Handle stub-only modules
* Add tests for io, re and sys
* Better handle named tuple
* Handle module circular references
* Handle else in platform and version clauses + handle it in symbol collector
* Formatting
* Fix walk of multi-level if statement
* Unify package search in imports
* Fix tests
* Undo change
* Port changes from dbtype
* Partial
* Named tuple support
* Baseline updates
* Debug code
* Support types
* Properly compare class member declaring type
* Nested classes and functions persistence
* Undo debug
* Fix numpy restore
* Baselines
* Fix tests
* Update AnyStr test reflecting changes to AnyStr behavior
* Exclude baselines from git diff
* Fix gitattr
* Move git setting to root
* Try no path
* Test fixes
* Undo change
* Additional stub merge fixes
* Baseline updates
* Fix goto def
* Protect specific type creation
* Track documentaton source
* More reliable tests + simplification
* Typo
* Cleanup
* Basic classification
* Fix merge error
* Module unique id fixes
* Stricted check to save analysis
* Revert "Fix tests"
This reverts commit 247a8c3.
* Revert "Unify package search in imports"
This reverts commit 67fed10.
* Don't clear scope variables with inner classes
* Fix typo
* Many new tests
* Fix collections test
* Fix CTypes
* Initial
* Update test
* Merge issues
* Fix CTypes again
* Fix null bases
* Tell between class members with/without self better
* TypeVar support
* Add bound/covariant
* Fix Enum reassignments
* Fix Random
* Fix import * over local declarations (Socket)
* Move interface
* Fix reference search
* Enable asyncio test
* More tests
* Enable dataclasses
* Add inspect and gzip
* More tests
* Add setting
* Add handling of import position relative to the variable
* Caching level changes
* Partial
* Rework
* Fix null
* Update baselines
* Functools pass
* Reverse stub merge
* Partial
* Partial ctypes
* Update variables post merge
* Fix ctypes
* Merge issues
* Fix typevar
* Add caching on construction
* Assorted fixes
* Named tuples
* Work around os stub oddness
* Fix generic qualified names
* Ignore lambdas
* Support named tuples as bases
* Baselines
* Test updates
* Named tuple tests
* PR feedback
* Using
* Separate creation and population for better handling of forward references.
* Add dependency provider
* Merge issues
* Better class creation
* Partial
* Dependency providers
* Add IsPersistent flag
* Make special global scope
* Move dependency fetch earlier
* Replace AST walk by interface
* Make analysis sequence closer to master
* Undo some
* Undo debug
* Show dependencies in log
* null check
* Update tests
* Make sure factory looks in correct scope
Enable assertions in tests
* Separate stub dependencies
* Don't try and merge from empty stub
* Match generic parameters by name
* Use qualified names in generics
Minor tests cleanup
* Back to names
* Update tests
* usings
* Fix dependencies for stub
* Null check
* PR feedback
* PR feedback + fix merge issue in generics
* Test fixes + PR feedback
* Baseline updates
* PR feedback
* Restore original order
* Order
* Merge issues
* Make cancellation closer to original
* Pass cancellation to module walker
* Simplify
* Upgrade to 3.0
* Undo change + .NET 3
* Get back to 2.0
* Update components
* Display caching level
Round time to reasonble fractions.
* Fix null ref due to conflicting changes
* Null ref fix
* Simplify
* Pass AST whish is required during analysis when module does not have its own yet.
* tensorflow test
* Fix from import model
Add tensorflow test
* Undo debug
* Improve goto def in import and fix class base processing (#1529)
* Update signing project to 3.0
* Upgrade to .NET 3.0 (#1521)
* Upgrade to 3.0
* Get back to 2.0
* Add global.json for .NET SDK
* Ensure FileInfo is not relative in DirectoryInfoProxy (#1519)
* Ensure FileInfo is not relative in DirectoryInfoProxy
* Add tests
* Hadle import
* Update dependencies (#1526)
* Handle from import
* Add test
* Fix bad find and replace in AssertionsUtilities (#1527)
* Merge issues
* Add test (fails)
* using
* Fix merge of classes
* Fix regression in bases
Split merging into separate class
* Fix null refs
* Make common CanUpdateAnalysis check
* Usings
* Test fix
* Remove CompletionItemKind.None
* Add info to asserts
* PR feedback
* Undo test change, enable class reassignment
Fix stub merge for TypeVar
* Prevent merge of unrelated types
* more tests
* Fix variable update
* Null check
* Baselines
* Move analysis complete event
* More stable enumeration
* Improve restoring imports in tests
* Make extension for tests
* Add URI null check
* Fix completion typo
* Add assert on unresolved modules
* Add more details to assert
* Using
* To 3.7
* Implement check for big/little endian
* Sync
* Synchronization
Fix import model restore
* Add hard assert
* Fix exception
* Fix typo
* Add lock
* Adding support for egg and zip files (#1477)
* Preliminary zip file
* Refactoring and adding .egg support
* refactoring
* More refactoring
* removing irrelevant classes
* Preliminary working in memory
* More things to make it work
* Getting rid of comment
* Refactoring
* More refactoring
* more changes
* refactoring
* Removing unneeded changes
* adding back
* PR feedback
* Test fix1 parent 82018c6 commit 1a272b8
18 files changed
Lines changed: 295 additions & 18 deletions
File tree
- src
- Analysis/Ast
- Impl
- Modules/Resolution
- Test
- Core
- Impl/IO
- Test
- LanguageServer/Test
- UnitTests/TestData/AstAnalysis/EggZip
Lines changed: 17 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
90 | | - | |
| 90 | + | |
91 | 91 | | |
92 | 92 | | |
93 | 93 | | |
| |||
102 | 102 | | |
103 | 103 | | |
104 | 104 | | |
105 | | - | |
106 | | - | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
107 | 121 | | |
108 | 122 | | |
109 | | - | |
110 | 123 | | |
111 | 124 | | |
112 | 125 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
| 71 | + | |
| 72 | + | |
71 | 73 | | |
72 | 74 | | |
73 | | - | |
74 | | - | |
75 | | - | |
76 | | - | |
77 | | - | |
78 | | - | |
79 | | - | |
80 | | - | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
17 | 16 | | |
18 | 17 | | |
19 | 18 | | |
| |||
23 | 22 | | |
24 | 23 | | |
25 | 24 | | |
26 | | - | |
27 | 25 | | |
28 | 26 | | |
29 | 27 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
28 | 34 | | |
29 | 35 | | |
30 | 36 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| 19 | + | |
19 | 20 | | |
20 | 21 | | |
21 | 22 | | |
| |||
47 | 48 | | |
48 | 49 | | |
49 | 50 | | |
50 | | - | |
51 | 51 | | |
52 | 52 | | |
53 | 53 | | |
| |||
117 | 117 | | |
118 | 118 | | |
119 | 119 | | |
120 | | - | |
| 120 | + | |
121 | 121 | | |
122 | 122 | | |
123 | 123 | | |
| |||
185 | 185 | | |
186 | 186 | | |
187 | 187 | | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
188 | 192 | | |
189 | 193 | | |
190 | 194 | | |
191 | 195 | | |
192 | 196 | | |
193 | 197 | | |
| 198 | + | |
194 | 199 | | |
195 | 200 | | |
196 | 201 | | |
| |||
308 | 313 | | |
309 | 314 | | |
310 | 315 | | |
| 316 | + | |
| 317 | + | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
| 322 | + | |
| 323 | + | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
| 327 | + | |
| 328 | + | |
| 329 | + | |
| 330 | + | |
| 331 | + | |
| 332 | + | |
| 333 | + | |
| 334 | + | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | + | |
| 341 | + | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
| 346 | + | |
| 347 | + | |
| 348 | + | |
| 349 | + | |
| 350 | + | |
| 351 | + | |
| 352 | + | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | + | |
| 358 | + | |
| 359 | + | |
| 360 | + | |
| 361 | + | |
| 362 | + | |
| 363 | + | |
| 364 | + | |
| 365 | + | |
| 366 | + | |
| 367 | + | |
| 368 | + | |
| 369 | + | |
| 370 | + | |
| 371 | + | |
| 372 | + | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + | |
| 380 | + | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
| 386 | + | |
| 387 | + | |
| 388 | + | |
| 389 | + | |
| 390 | + | |
| 391 | + | |
| 392 | + | |
| 393 | + | |
| 394 | + | |
| 395 | + | |
| 396 | + | |
311 | 397 | | |
312 | 398 | | |
313 | 399 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
20 | 19 | | |
21 | 20 | | |
| 21 | + | |
| 22 | + | |
22 | 23 | | |
23 | 24 | | |
24 | 25 | | |
| |||
830 | 831 | | |
831 | 832 | | |
832 | 833 | | |
| 834 | + | |
| 835 | + | |
| 836 | + | |
| 837 | + | |
| 838 | + | |
| 839 | + | |
| 840 | + | |
| 841 | + | |
| 842 | + | |
| 843 | + | |
| 844 | + | |
| 845 | + | |
| 846 | + | |
| 847 | + | |
| 848 | + | |
| 849 | + | |
| 850 | + | |
| 851 | + | |
| 852 | + | |
| 853 | + | |
| 854 | + | |
| 855 | + | |
| 856 | + | |
| 857 | + | |
| 858 | + | |
| 859 | + | |
| 860 | + | |
| 861 | + | |
| 862 | + | |
| 863 | + | |
| 864 | + | |
| 865 | + | |
| 866 | + | |
| 867 | + | |
| 868 | + | |
| 869 | + | |
| 870 | + | |
| 871 | + | |
| 872 | + | |
| 873 | + | |
| 874 | + | |
| 875 | + | |
| 876 | + | |
| 877 | + | |
| 878 | + | |
| 879 | + | |
| 880 | + | |
| 881 | + | |
| 882 | + | |
| 883 | + | |
| 884 | + | |
| 885 | + | |
| 886 | + | |
| 887 | + | |
| 888 | + | |
| 889 | + | |
| 890 | + | |
| 891 | + | |
| 892 | + | |
| 893 | + | |
| 894 | + | |
| 895 | + | |
| 896 | + | |
| 897 | + | |
| 898 | + | |
| 899 | + | |
| 900 | + | |
| 901 | + | |
| 902 | + | |
| 903 | + | |
| 904 | + | |
| 905 | + | |
| 906 | + | |
| 907 | + | |
| 908 | + | |
| 909 | + | |
| 910 | + | |
| 911 | + | |
| 912 | + | |
| 913 | + | |
| 914 | + | |
| 915 | + | |
| 916 | + | |
| 917 | + | |
| 918 | + | |
| 919 | + | |
| 920 | + | |
| 921 | + | |
| 922 | + | |
| 923 | + | |
| 924 | + | |
| 925 | + | |
| 926 | + | |
| 927 | + | |
| 928 | + | |
833 | 929 | | |
834 | 930 | | |
Binary file not shown.
Binary file not shown.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
0 commit comments