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
83213cc0
Kaydet (Commit)
83213cc0
authored
Haz 12, 2001
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add new built-in 'help' which invokes pydoc.help (with a twist).
üst
da4dbc36
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
site.py
Lib/site.py
+14
-0
NEWS
Misc/NEWS
+5
-0
No files found.
Lib/site.py
Dosyayı görüntüle @
83213cc0
...
...
@@ -236,6 +236,20 @@ __builtin__.license = _Printer(
[
os
.
path
.
join
(
here
,
os
.
pardir
),
here
,
os
.
curdir
])
# Define new built-in 'help'.
# This is a wrapper around pydoc.help (with a twist).
class
_Helper
:
def
__repr__
(
self
):
return
"Type help() for interactive help, "
\
"or help(object) for help about object."
def
__call__
(
self
,
*
args
,
**
kwds
):
import
pydoc
return
pydoc
.
help
(
*
args
,
**
kwds
)
__builtin__
.
help
=
_Helper
()
# Set the string encoding used by the Unicode implementation. The
# default is 'ascii', but if you're willing to experiment, you can
# change this.
...
...
Misc/NEWS
Dosyayı görüntüle @
83213cc0
...
...
@@ -151,6 +151,11 @@ Library
In standard mode, 'q' and 'Q' are supported on all platforms, and are
8-byte integral types.
- The site module installs a new built-in function 'help' that invokes
pydoc.help. It must be invoked as 'help()'; when invoked as 'help',
it displays a message reminding the user to use 'help()' or
'help(object)'.
Tests
- New test_mutants.py runs dict comparisons where the key and value
...
...
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