Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
G
geany
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
geany
Commits
59e13f9e
Kaydet (Commit)
59e13f9e
authored
Kas 12, 2015
tarafından
Colomban Wendling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add a script to update Python filetype's identifiers list
üst
43e13e61
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
+26
-0
update-python-identifiers.sh
scripts/update-python-identifiers.sh
+26
-0
No files found.
scripts/update-python-identifiers.sh
0 → 100644
Dosyayı görüntüle @
59e13f9e
#!/bin/sh
#
# Author: Colomban Wendling <colomban@geany.org>
# License: GPL v2 or later
#
# Updates the `identifiers` entry in data/filetypes.python.
# Requires both Python 2 and 3.
set
-e
file
=
data/filetypes.python
[
-f
"
$file
"
]
py2_builtins
=
$(
python2
-c
'print("\n".join(dir(__builtins__)))'
)
py3_builtins
=
$(
python3
-c
'print("\n".join(dir(__builtins__)))'
)
# merge Python 2 and 3 keywords but exclude the ones that are already listed primary=
identifiers
=
$(
(
echo
"
$py2_builtins
"
&&
echo
"
$py3_builtins
"
)
| python
-c
'\
from sys import stdin; \
builtins=set(stdin.read().strip().split("\n")); \
exclude=["False", "None", "True", "exec"]; \
print(" ".join(sorted([i for i in builtins if i not in exclude])))
'
)
sed
-e
"s/^identifiers=.*
$/
identifiers=
$identifiers
/"
-i
"
$file
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment