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
efb4835f
Kaydet (Commit)
efb4835f
authored
Ara 05, 2014
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge heads
üst
92bf919e
d5ea39d1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
8 deletions
+13
-8
.gitignore
.gitignore
+1
-5
.hgignore
.hgignore
+1
-0
Makefile
Doc/Makefile
+7
-3
NEWS
Misc/NEWS
+4
-0
No files found.
.gitignore
Dosyayı görüntüle @
efb4835f
...
@@ -9,11 +9,7 @@
...
@@ -9,11 +9,7 @@
*~
*~
.gdb_history
.gdb_history
Doc/build/
Doc/build/
Doc/tools/docutils/
Doc/venv/
Doc/tools/jinja/
Doc/tools/jinja2/
Doc/tools/pygments/
Doc/tools/sphinx/
Lib/lib2to3/*.pickle
Lib/lib2to3/*.pickle
Lib/test/data/*
Lib/test/data/*
Lib/_sysconfigdata.py
Lib/_sysconfigdata.py
...
...
.hgignore
Dosyayı görüntüle @
efb4835f
...
@@ -9,6 +9,7 @@ TAGS$
...
@@ -9,6 +9,7 @@ TAGS$
autom4te.cache$
autom4te.cache$
^build/
^build/
^Doc/build/
^Doc/build/
^Doc/venv/
buildno$
buildno$
config.cache
config.cache
config.log
config.log
...
...
Doc/Makefile
Dosyayı görüntüle @
efb4835f
...
@@ -15,11 +15,12 @@ ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_paper_size=$(PAPER) \
...
@@ -15,11 +15,12 @@ ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_paper_size=$(PAPER) \
.PHONY
:
help build html htmlhelp latex text changes linkcheck
\
.PHONY
:
help build html htmlhelp latex text changes linkcheck
\
suspicious coverage doctest pydoc-topics htmlview clean dist check serve
\
suspicious coverage doctest pydoc-topics htmlview clean dist check serve
\
autobuild-dev autobuild-stable
autobuild-dev autobuild-stable
venv
help
:
help
:
@
echo
"Please use
\`
make <target>' where <target> is one of"
@
echo
"Please use
\`
make <target>' where <target> is one of"
@
echo
" clean to remove build files"
@
echo
" clean to remove build files"
@
echo
" venv to create a venv with necessary tools"
@
echo
" html to make standalone HTML files"
@
echo
" html to make standalone HTML files"
@
echo
" htmlview to open the index page built by the html target in your browser"
@
echo
" htmlview to open the index page built by the html target in your browser"
@
echo
" htmlhelp to make HTML files and a HTML help project"
@
echo
" htmlhelp to make HTML files and a HTML help project"
...
@@ -102,7 +103,11 @@ htmlview: html
...
@@ -102,7 +103,11 @@ htmlview: html
$(PYTHON)
-c
"import webbrowser; webbrowser.open('build/html/index.html')"
$(PYTHON)
-c
"import webbrowser; webbrowser.open('build/html/index.html')"
clean
:
clean
:
-
rm
-rf
build/
*
-
rm
-rf
build/
*
venv/
*
venv
:
$(PYTHON)
-m
venv venv
./venv/bin/python3
-m
pip
install
-U
Sphinx
dist
:
dist
:
rm
-rf
dist
rm
-rf
dist
...
@@ -172,4 +177,3 @@ autobuild-stable:
...
@@ -172,4 +177,3 @@ autobuild-stable:
exit
1
;;
\
exit
1
;;
\
esac
esac
@
make autobuild-dev
@
make autobuild-dev
Misc/NEWS
Dosyayı görüntüle @
efb4835f
...
@@ -1348,6 +1348,10 @@ C API
...
@@ -1348,6 +1348,10 @@ C API
Documentation
Documentation
-------------
-------------
-
Issue
#
22394
:
Doc
/
Makefile
now
supports
``
make
venv
PYTHON
=../
python
``
to
create
a
venv
for
generating
the
documentation
,
e
.
g
.,
``
make
html
PYTHON
=
venv
/
bin
/
python3
``.
-
Issue
#
21514
:
The
documentation
of
the
json
module
now
refers
to
new
JSON
RFC
-
Issue
#
21514
:
The
documentation
of
the
json
module
now
refers
to
new
JSON
RFC
7159
instead
of
obsoleted
RFC
4627.
7159
instead
of
obsoleted
RFC
4627.
...
...
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