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
3c6b436a
Kaydet (Commit)
3c6b436a
authored
Ara 23, 2018
tarafından
Ned Deily
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
3.6.8final
üst
68f5dfd9
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
44 additions
and
15 deletions
+44
-15
patchlevel.h
Include/patchlevel.h
+3
-3
topics.py
Lib/pydoc_data/topics.py
+1
-1
3.6.8.rst
Misc/NEWS.d/3.6.8.rst
+38
-0
2018-12-05-22-28-40.bpo-35257.dmcd_s.rst
...EWS.d/next/Build/2018-12-05-22-28-40.bpo-35257.dmcd_s.rst
+0
-3
2018-12-14-19-36-05.bpo-35499.9yAldM.rst
...EWS.d/next/Build/2018-12-14-19-36-05.bpo-35499.9yAldM.rst
+0
-3
2018-11-22-13-52-36.bpo-35259.p07c61.rst
...EWS.d/next/C API/2018-11-22-13-52-36.bpo-35259.p07c61.rst
+0
-2
2018-08-15-16-22-30.bpo-31715.Iw8jS8.rst
...S.d/next/Library/2018-08-15-16-22-30.bpo-31715.Iw8jS8.rst
+0
-1
README.rst
README.rst
+2
-2
No files found.
Include/patchlevel.h
Dosyayı görüntüle @
3c6b436a
...
...
@@ -19,11 +19,11 @@
#define PY_MAJOR_VERSION 3
#define PY_MINOR_VERSION 6
#define PY_MICRO_VERSION 8
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_
GAMMA
#define PY_RELEASE_SERIAL
1
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_
FINAL
#define PY_RELEASE_SERIAL
0
/* Version as a string */
#define PY_VERSION "3.6.8
rc1+
"
#define PY_VERSION "3.6.8"
/*--end constants--*/
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
...
...
Lib/pydoc_data/topics.py
Dosyayı görüntüle @
3c6b436a
# -*- coding: utf-8 -*-
# Autogenerated by Sphinx on
Tue Dec 11 16:32:37
2018
# Autogenerated by Sphinx on
Sun Dec 23 16:24:21
2018
topics
=
{
'assert'
:
'The "assert" statement
\n
'
'**********************
\n
'
'
\n
'
...
...
Misc/NEWS.d/3.6.8.rst
0 → 100644
Dosyayı görüntüle @
3c6b436a
.. bpo: 31715
.. date: 2018-08-15-16-22-30
.. nonce: Iw8jS8
.. release date: 2018-12-23
.. section: Library
Associate ``.mjs`` file extension with ``application/javascript`` MIME Type.
..
.. bpo: 35499
.. date: 2018-12-14-19-36-05
.. nonce: 9yAldM
.. section: Build
``make profile-opt`` no longer replaces ``CFLAGS_NODIST`` with ``CFLAGS``.
It now adds profile-guided optimization (PGO) flags to ``CFLAGS_NODIST``:
existing ``CFLAGS_NODIST`` flags are kept.
..
.. bpo: 35257
.. date: 2018-12-05-22-28-40
.. nonce: dmcd_s
.. section: Build
Avoid leaking the linker flags from Link Time Optimizations (LTO) into
distutils when compiling C extensions.
..
.. bpo: 35259
.. date: 2018-11-22-13-52-36
.. nonce: p07c61
.. section: C API
Conditionally declare :c:func:`Py_FinalizeEx()` (new in 3.6) based on
Py_LIMITED_API. Patch by Arthur Neufeld.
Misc/NEWS.d/next/Build/2018-12-05-22-28-40.bpo-35257.dmcd_s.rst
deleted
100644 → 0
Dosyayı görüntüle @
68f5dfd9
Avoid leaking the linker flags from Link Time Optimizations (LTO)
into distutils when compiling C extensions.
\ No newline at end of file
Misc/NEWS.d/next/Build/2018-12-14-19-36-05.bpo-35499.9yAldM.rst
deleted
100644 → 0
Dosyayı görüntüle @
68f5dfd9
``make profile-opt`` no longer replaces ``CFLAGS_NODIST`` with ``CFLAGS``. It
now adds profile-guided optimization (PGO) flags to ``CFLAGS_NODIST``: existing
``CFLAGS_NODIST`` flags are kept.
Misc/NEWS.d/next/C API/2018-11-22-13-52-36.bpo-35259.p07c61.rst
deleted
100644 → 0
Dosyayı görüntüle @
68f5dfd9
Conditionally declare :c:func:`Py_FinalizeEx()` (new in 3.6) based on
Py_LIMITED_API. Patch by Arthur Neufeld.
Misc/NEWS.d/next/Library/2018-08-15-16-22-30.bpo-31715.Iw8jS8.rst
deleted
100644 → 0
Dosyayı görüntüle @
68f5dfd9
Associate ``.mjs`` file extension with ``application/javascript`` MIME Type.
README.rst
Dosyayı görüntüle @
3c6b436a
This is Python version 3.6.8
candidate 1+
============================
=============
This is Python version 3.6.8
============================
.. image:: https://travis-ci.org/python/cpython.svg?branch=3.6
:alt: CPython build status on Travis CI
...
...
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