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
4ae5f138
Kaydet (Commit)
4ae5f138
authored
Kas 07, 2010
tarafından
Hirokazu Yamamoto
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #6317: Now winsound.PlaySound only accepts unicode with MvL's approval.
üst
be3da38e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
27 deletions
+3
-27
NEWS
Misc/NEWS
+2
-0
winsound.c
PC/winsound.c
+1
-27
No files found.
Misc/NEWS
Dosyayı görüntüle @
4ae5f138
...
@@ -251,6 +251,8 @@ Library
...
@@ -251,6 +251,8 @@ Library
Extension Modules
Extension Modules
-----------------
-----------------
- Issue #6317: Now winsound.PlaySound only accepts unicode.
- Issue #6317: Now winsound.PlaySound can accept non ascii filename.
- Issue #6317: Now winsound.PlaySound can accept non ascii filename.
- Issue #9377: Use Unicode API for gethostname on Windows.
- Issue #9377: Use Unicode API for gethostname on Windows.
...
...
PC/winsound.c
Dosyayı görüntüle @
4ae5f138
...
@@ -73,8 +73,6 @@ static PyObject *
...
@@ -73,8 +73,6 @@ static PyObject *
sound_playsound
(
PyObject
*
s
,
PyObject
*
args
)
sound_playsound
(
PyObject
*
s
,
PyObject
*
args
)
{
{
Py_UNICODE
*
wsound
;
Py_UNICODE
*
wsound
;
PyObject
*
osound
;
const
char
*
sound
;
int
flags
;
int
flags
;
int
ok
;
int
ok
;
...
@@ -95,31 +93,7 @@ sound_playsound(PyObject *s, PyObject *args)
...
@@ -95,31 +93,7 @@ sound_playsound(PyObject *s, PyObject *args)
Py_INCREF
(
Py_None
);
Py_INCREF
(
Py_None
);
return
Py_None
;
return
Py_None
;
}
}
/* Drop the argument parsing error as narrow strings
return
NULL
;
are also valid. */
PyErr_Clear
();
if
(
!
PyArg_ParseTuple
(
args
,
"O&i:PlaySound"
,
PyUnicode_FSConverter
,
&
osound
,
&
flags
))
return
NULL
;
if
(
flags
&
SND_ASYNC
&&
flags
&
SND_MEMORY
)
{
/* Sidestep reference counting headache; unfortunately this also
prevent SND_LOOP from memory. */
PyErr_SetString
(
PyExc_RuntimeError
,
"Cannot play asynchronously from memory"
);
Py_DECREF
(
osound
);
return
NULL
;
}
sound
=
PyBytes_AsString
(
osound
);
Py_BEGIN_ALLOW_THREADS
ok
=
PlaySoundA
(
sound
,
NULL
,
flags
);
Py_END_ALLOW_THREADS
if
(
!
ok
)
{
PyErr_SetString
(
PyExc_RuntimeError
,
"Failed to play sound"
);
Py_DECREF
(
osound
);
return
NULL
;
}
Py_DECREF
(
osound
);
Py_INCREF
(
Py_None
);
return
Py_None
;
}
}
static
PyObject
*
static
PyObject
*
...
...
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