Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/Famix-Python-Entities/FamixPythonSourceLanguage.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,19 @@ FamixPythonSourceLanguage class >> annotation [
<generated>
^ self
]

{ #category : 'meta' }
FamixPythonSourceLanguage class >> languageKeyWords [
"keywords from keyword.kwlist
Python version: 3.10.18"

^ #(
and as assert async await
break class continue def del
elif else except False finally
for from global if import
in is lambda None nonlocal
not or pass raise return
True try while with yield
)
]
Loading