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
057f4078
Kaydet (Commit)
057f4078
authored
Eki 24, 2018
tarafından
jdemeyer
Kaydeden (comit)
Petr Viktorin
Eki 24, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-32797: improve documentation of linecache.getline (GH-9540)
üst
dfba1f67
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
linecache.rst
Doc/library/linecache.rst
+7
-4
No files found.
Doc/library/linecache.rst
Dosyayı görüntüle @
057f4078
...
@@ -30,10 +30,13 @@ The :mod:`linecache` module defines the following functions:
...
@@ -30,10 +30,13 @@ The :mod:`linecache` module defines the following functions:
.. index:: triple: module; search; path
.. index:: triple: module; search; path
If a file named *filename* is not found, the function will look for it in the
If a file named *filename* is not found, the function first checks
module search path, ``sys.path``, after first checking for a :pep:`302`
for a :pep:`302` ``__loader__`` in *module_globals*.
``__loader__`` in *module_globals*, in case the module was imported from a
If there is such a loader and it defines a ``get_source`` method,
zipfile or other non-filesystem import source.
then that determines the source lines
(if ``get_source()`` returns ``None``, then ``''`` is returned).
Finally, if *filename* is a relative filename,
it is looked up relative to the entries in the module search path, ``sys.path``.
.. function:: clearcache()
.. function:: clearcache()
...
...
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