Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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
cpython
Commits
6afc2250
Kaydet (Commit)
6afc2250
authored
Agu 15, 2014
tarafından
Terry Jan Reedy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge with 3.4
üst
d7728caf
0726ddf4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
EditorWindow.py
Lib/idlelib/EditorWindow.py
+5
-4
No files found.
Lib/idlelib/EditorWindow.py
Dosyayı görüntüle @
6afc2250
...
...
@@ -2,7 +2,7 @@ import importlib
import
importlib.abc
import
importlib.util
import
os
from
platform
import
python_version
import
platform
import
re
import
string
import
sys
...
...
@@ -26,6 +26,8 @@ from idlelib import macosxSupport
# The default tab setting for a Text widget, in average-width characters.
TK_TABWIDTH_DEFAULT
=
8
_py_version
=
' (
%
s)'
%
platform
.
python_version
()
def
_sphinx_version
():
"Format sys.version_info to produce the Sphinx version string used to install the chm docs"
major
,
minor
,
micro
,
level
,
serial
=
sys
.
version_info
...
...
@@ -944,7 +946,7 @@ class EditorWindow(object):
short
=
self
.
short_title
()
long
=
self
.
long_title
()
if
short
and
long
:
title
=
short
+
" - "
+
long
title
=
short
+
" - "
+
long
+
_py_version
elif
short
:
title
=
short
elif
long
:
...
...
@@ -968,14 +970,13 @@ class EditorWindow(object):
self
.
undo
.
reset_undo
()
def
short_title
(
self
):
pyversion
=
"Python "
+
python_version
()
+
": "
filename
=
self
.
io
.
filename
if
filename
:
filename
=
os
.
path
.
basename
(
filename
)
else
:
filename
=
"Untitled"
# return unicode string to display non-ASCII chars correctly
return
pyversion
+
self
.
_filename_to_unicode
(
filename
)
return
self
.
_filename_to_unicode
(
filename
)
def
long_title
(
self
):
# return unicode string to display non-ASCII chars correctly
...
...
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