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
f85dbfc3
Kaydet (Commit)
f85dbfc3
authored
Ara 28, 2016
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #28768: Fix implicit declaration of function _setmode. Patch by Masayuki Yamamoto
üst
f04790a4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
2 deletions
+14
-2
ACKS
Misc/ACKS
+2
-2
NEWS
Misc/NEWS
+6
-0
fileio.c
Modules/_io/fileio.c
+3
-0
main.c
Modules/main.c
+3
-0
No files found.
Misc/ACKS
Dosyayı görüntüle @
f85dbfc3
...
...
@@ -1548,6 +1548,7 @@ Robert Xiao
Florent Xicluna
Alakshendra Yadav
Hirokazu Yamamoto
Masayuki Yamamoto
Ka-Ping Yee
Jason Yeo
EungJun Yi
...
...
@@ -1574,4 +1575,4 @@ Tarek Ziadé
Jelle Zijlstra
Gennadiy Zlobin
Peter Åstrand
Dhushyanth Ramasamy
\ No newline at end of file
Dhushyanth Ramasamy
Misc/NEWS
Dosyayı görüntüle @
f85dbfc3
...
...
@@ -42,6 +42,12 @@ Library
- Issue #28925: cPickle now correctly propagates errors when unpickle instances
of old-style classes.
Build
-----
- Issue #28768: Fix implicit declaration of function _setmode. Patch by
Masayuki Yamamoto
What's New in Python 2.7.13
===========================
...
...
Modules/_io/fileio.c
Dosyayı görüntüle @
f85dbfc3
...
...
@@ -8,6 +8,9 @@
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#ifdef HAVE_IO_H
#include <io.h>
#endif
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
...
...
Modules/main.c
Dosyayı görüntüle @
f85dbfc3
...
...
@@ -10,6 +10,9 @@
#endif
#if defined(MS_WINDOWS) || defined(__CYGWIN__)
#ifdef HAVE_IO_H
#include <io.h>
#endif
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
...
...
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