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
072248ec
Kaydet (Commit)
072248ec
authored
Mar 18, 2015
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.4 (linecache doc)
üst
58b8f392
376658fa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
linecache.rst
Doc/library/linecache.rst
+2
-2
linecache.py
Lib/linecache.py
+2
-2
No files found.
Doc/library/linecache.rst
Dosyayı görüntüle @
072248ec
...
...
@@ -59,5 +59,5 @@ The :mod:`linecache` module defines the following functions:
Example::
>>> import linecache
>>> linecache.getline(
'/etc/passwd', 4
)
'
sys:x:3:3:sys:/dev:/bin/sh
\n'
>>> linecache.getline(
linecache.__file__, 8
)
'
import sys
\n'
Lib/linecache.py
Dosyayı görüntüle @
072248ec
"""Cache lines from files.
"""Cache lines from
Python source
files.
This is intended to read lines from modules imported -- hence if a filename
is not found, it will look down the module search path for a file by
...
...
@@ -35,7 +35,7 @@ def clearcache():
def
getlines
(
filename
,
module_globals
=
None
):
"""Get the lines for a file from the cache.
"""Get the lines for a
Python source
file from the cache.
Update the cache if it doesn't contain an entry for this file already."""
if
filename
in
cache
:
...
...
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