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
3510632a
Kaydet (Commit)
3510632a
authored
Mar 31, 2012
tarafından
Sandro Tosi
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge heads
üst
4cc229ad
9e892bbf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletion
+20
-1
NEWS
Misc/NEWS
+2
-0
_tkinter.c
Modules/_tkinter.c
+18
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
3510632a
...
...
@@ -37,6 +37,8 @@ Core and Builtins
Library
-------
-
Issue
#
5136
:
deprecated
old
,
unused
functions
from
tkinter
.
-
Issue
#
14409
:
IDLE
now
properly
executes
commands
in
the
Shell
window
when
it
cannot
read
the
normal
config
files
on
startup
and
has
to
use
the
built
-
in
default
key
bindings
.
...
...
Modules/_tkinter.c
Dosyayı görüntüle @
3510632a
...
...
@@ -1343,6 +1343,11 @@ Tkapp_GlobalCall(PyObject *self, PyObject *args)
char
*
cmd
;
PyObject
*
res
=
NULL
;
if
(
PyErr_WarnEx
(
PyExc_DeprecationWarning
,
"globalcall is deprecated and will be removed in 3.4"
,
1
)
<
0
)
return
0
;
CHECK_TCL_APPARTMENT
;
cmd
=
Merge
(
args
);
...
...
@@ -1392,6 +1397,11 @@ Tkapp_GlobalEval(PyObject *self, PyObject *args)
PyObject
*
res
=
NULL
;
int
err
;
if
(
PyErr_WarnEx
(
PyExc_DeprecationWarning
,
"globaleval is deprecated and will be removed in 3.4"
,
1
)
<
0
)
return
0
;
if
(
!
PyArg_ParseTuple
(
args
,
"s:globaleval"
,
&
script
))
return
NULL
;
...
...
@@ -1954,9 +1964,16 @@ Tkapp_Split(PyObject *self, PyObject *args)
static
PyObject
*
Tkapp_Merge
(
PyObject
*
self
,
PyObject
*
args
)
{
char
*
s
=
Merge
(
args
)
;
char
*
s
;
PyObject
*
res
=
NULL
;
if
(
PyErr_WarnEx
(
PyExc_DeprecationWarning
,
"merge is deprecated and will be removed in 3.4"
,
1
)
<
0
)
return
0
;
s
=
Merge
(
args
);
if
(
s
)
{
res
=
PyUnicode_FromString
(
s
);
ckfree
(
s
);
...
...
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