We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05c653c commit 311361cCopy full SHA for 311361c
src/Famix-Python-Entities/FamixPythonSourceLanguage.class.st
@@ -28,3 +28,19 @@ FamixPythonSourceLanguage class >> annotation [
28
<generated>
29
^ self
30
]
31
+
32
+{ #category : 'meta' }
33
+FamixPythonSourceLanguage class >> languageKeyWords [
34
+ "keywords from keyword.kwlist
35
+ Python version: 3.10.18"
36
37
+ ^ #(
38
+and as assert async await
39
+break class continue def del
40
+elif else except False finally
41
+for from global if import
42
+in is lambda None nonlocal
43
+not or pass raise return
44
+True try while with yield
45
+ )
46
+]
0 commit comments