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
dd445e8e
Kaydet (Commit)
dd445e8e
authored
Tem 08, 2012
tarafından
Terry Jan Reedy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.2 closes issue 13557
üst
1ced17df
83efd6cb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
functions.rst
Doc/library/functions.rst
+4
-1
NEWS
Misc/NEWS
+6
-0
No files found.
Doc/library/functions.rst
Dosyayı görüntüle @
dd445e8e
...
@@ -413,7 +413,10 @@ are always available. They are listed here in alphabetical order.
...
@@ -413,7 +413,10 @@ are always available. They are listed here in alphabetical order.
current scope. If only *globals* is provided, it must be a dictionary, which
current scope. If only *globals* is provided, it must be a dictionary, which
will be used for both the global and the local variables. If *globals* and
will be used for both the global and the local variables. If *globals* and
*locals* are given, they are used for the global and local variables,
*locals* are given, they are used for the global and local variables,
respectively. If provided, *locals* can be any mapping object.
respectively. If provided, *locals* can be any mapping object. Remember
that at module level, globals and locals are the same dictionary. If exec
gets two separate objects as *globals* and *locals*, the code will be
executed as if it were embedded in a class definition.
If the *globals* dictionary does not contain a value for the key
If the *globals* dictionary does not contain a value for the key
``__builtins__``, a reference to the dictionary of the built-in module
``__builtins__``, a reference to the dictionary of the built-in module
...
...
Misc/NEWS
Dosyayı görüntüle @
dd445e8e
...
@@ -98,6 +98,12 @@ Tools/Demos
...
@@ -98,6 +98,12 @@ Tools/Demos
* C frames that are garbage-collecting
* C frames that are garbage-collecting
* C frames that are due to the invocation of a PyCFunction
* C frames that are due to the invocation of a PyCFunction
Documentation
-------------
- Issue #13557: Clarify effect of giving two different namespaces to exec or
execfile().
Tests
Tests
-----
-----
...
...
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