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
6ffd9b05
Kaydet (Commit)
6ffd9b05
authored
Haz 24, 2019
tarafından
ziheng
Kaydeden (comit)
Ned Deily
Haz 24, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-32627: Fix compile error when conflicting `_uuid` headers included (GH-11751)
üst
549f7d45
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
2019-02-03-19-13-08.bpo-32627.b68f64.rst
...S.d/next/Library/2019-02-03-19-13-08.bpo-32627.b68f64.rst
+1
-0
_uuidmodule.c
Modules/_uuidmodule.c
+6
-3
No files found.
Misc/NEWS.d/next/Library/2019-02-03-19-13-08.bpo-32627.b68f64.rst
0 → 100644
Dosyayı görüntüle @
6ffd9b05
Fix compile error when ``_uuid`` headers conflicting included.
Modules/_uuidmodule.c
Dosyayı görüntüle @
6ffd9b05
/*
* Python UUID module that wraps libuuid -
* DCE compatible Universally Unique Identifier library.
*/
#define PY_SSIZE_T_CLEAN
#define PY_SSIZE_T_CLEAN
#include "Python.h"
#include "Python.h"
#ifdef HAVE_UUID_UUID_H
#ifdef HAVE_UUID_UUID_H
#include <uuid/uuid.h>
#include <uuid/uuid.h>
#endif
#elif defined(HAVE_UUID_H)
#ifdef HAVE_UUID_H
#include <uuid.h>
#include <uuid.h>
#endif
#endif
static
PyObject
*
static
PyObject
*
py_uuid_generate_time_safe
(
PyObject
*
Py_UNUSED
(
context
),
py_uuid_generate_time_safe
(
PyObject
*
Py_UNUSED
(
context
),
PyObject
*
Py_UNUSED
(
ignored
))
PyObject
*
Py_UNUSED
(
ignored
))
...
...
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