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
e6bb7eb2
Kaydet (Commit)
e6bb7eb2
authored
Mar 26, 2015
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #23765: Removed IsBadStringPtr calls in ctypes
üst
632a77e6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
8 deletions
+6
-8
__init__.py
Lib/ctypes/__init__.py
+4
-8
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/ctypes/__init__.py
Dosyayı görüntüle @
e6bb7eb2
...
...
@@ -237,14 +237,8 @@ _check_size(c_char)
class
c_char_p
(
_SimpleCData
):
_type_
=
"z"
if
_os
.
name
==
"nt"
:
def
__repr__
(
self
):
if
not
windll
.
kernel32
.
IsBadStringPtrA
(
self
,
-
1
):
return
"
%
s(
%
r)"
%
(
self
.
__class__
.
__name__
,
self
.
value
)
return
"
%
s(
%
s)"
%
(
self
.
__class__
.
__name__
,
cast
(
self
,
c_void_p
)
.
value
)
else
:
def
__repr__
(
self
):
return
"
%
s(
%
s)"
%
(
self
.
__class__
.
__name__
,
cast
(
self
,
c_void_p
)
.
value
)
def
__repr__
(
self
):
return
"
%
s(
%
s)"
%
(
self
.
__class__
.
__name__
,
c_void_p
.
from_buffer
(
self
)
.
value
)
_check_size
(
c_char_p
,
"P"
)
class
c_void_p
(
_SimpleCData
):
...
...
@@ -259,6 +253,8 @@ from _ctypes import POINTER, pointer, _pointer_type_cache
class
c_wchar_p
(
_SimpleCData
):
_type_
=
"Z"
def
__repr__
(
self
):
return
"
%
s(
%
s)"
%
(
self
.
__class__
.
__name__
,
c_void_p
.
from_buffer
(
self
)
.
value
)
class
c_wchar
(
_SimpleCData
):
_type_
=
"u"
...
...
Misc/NEWS
Dosyayı görüntüle @
e6bb7eb2
...
...
@@ -30,6 +30,8 @@ Core and Builtins
Library
-------
-
Issue
#
23765
:
Removed
IsBadStringPtr
calls
in
ctypes
-
Issue
#
22364
:
Improved
some
re
error
messages
using
regex
for
hints
.
-
Issue
#
23742
:
ntpath
.
expandvars
()
no
longer
loses
unbalanced
single
quotes
.
...
...
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