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
ffd1f483
Kaydet (Commit)
ffd1f483
authored
Mar 15, 2011
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge heads
üst
485119eb
d3967d4c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
4 deletions
+11
-4
support.py
Lib/test/support.py
+4
-1
test_fileinput.py
Lib/test/test_fileinput.py
+3
-3
NEWS
Misc/NEWS
+4
-0
No files found.
Lib/test/support.py
Dosyayı görüntüle @
ffd1f483
...
@@ -1374,7 +1374,7 @@ def strip_python_stderr(stderr):
...
@@ -1374,7 +1374,7 @@ def strip_python_stderr(stderr):
def
args_from_interpreter_flags
():
def
args_from_interpreter_flags
():
"""Return a list of command-line arguments reproducing the current
"""Return a list of command-line arguments reproducing the current
settings in sys.flags."""
settings in sys.flags
and sys.warnoptions
."""
flag_opt_map
=
{
flag_opt_map
=
{
'bytes_warning'
:
'b'
,
'bytes_warning'
:
'b'
,
'dont_write_bytecode'
:
'B'
,
'dont_write_bytecode'
:
'B'
,
...
@@ -1389,6 +1389,9 @@ def args_from_interpreter_flags():
...
@@ -1389,6 +1389,9 @@ def args_from_interpreter_flags():
v
=
getattr
(
sys
.
flags
,
flag
)
v
=
getattr
(
sys
.
flags
,
flag
)
if
v
>
0
:
if
v
>
0
:
args
.
append
(
'-'
+
opt
*
v
)
args
.
append
(
'-'
+
opt
*
v
)
if
sys
.
warnoptions
:
args
.
append
(
'-W'
)
args
.
extend
(
sys
.
warnoptions
)
return
args
return
args
#============================================================
#============================================================
...
...
Lib/test/test_fileinput.py
Dosyayı görüntüle @
ffd1f483
...
@@ -277,7 +277,7 @@ class FileInputTests(unittest.TestCase):
...
@@ -277,7 +277,7 @@ class FileInputTests(unittest.TestCase):
def
test_empty_files_list_specified_to_constructor
(
self
):
def
test_empty_files_list_specified_to_constructor
(
self
):
with
FileInput
(
files
=
[])
as
fi
:
with
FileInput
(
files
=
[])
as
fi
:
self
.
assertEqual
s
(
fi
.
_files
,
(
'-'
,))
self
.
assertEqual
(
fi
.
_files
,
(
'-'
,))
def
test__getitem__
(
self
):
def
test__getitem__
(
self
):
"""Tests invoking FileInput.__getitem__() with the current
"""Tests invoking FileInput.__getitem__() with the current
...
@@ -298,7 +298,7 @@ class FileInputTests(unittest.TestCase):
...
@@ -298,7 +298,7 @@ class FileInputTests(unittest.TestCase):
with
FileInput
(
files
=
[
t
])
as
fi
:
with
FileInput
(
files
=
[
t
])
as
fi
:
with
self
.
assertRaises
(
RuntimeError
)
as
cm
:
with
self
.
assertRaises
(
RuntimeError
)
as
cm
:
fi
[
1
]
fi
[
1
]
self
.
assertEqual
s
(
cm
.
exception
.
args
,
(
"accessing lines out of order"
,))
self
.
assertEqual
(
cm
.
exception
.
args
,
(
"accessing lines out of order"
,))
def
test__getitem__eof
(
self
):
def
test__getitem__eof
(
self
):
"""Tests invoking FileInput.__getitem__() with the line number but at
"""Tests invoking FileInput.__getitem__() with the line number but at
...
@@ -308,7 +308,7 @@ class FileInputTests(unittest.TestCase):
...
@@ -308,7 +308,7 @@ class FileInputTests(unittest.TestCase):
with
FileInput
(
files
=
[
t
])
as
fi
:
with
FileInput
(
files
=
[
t
])
as
fi
:
with
self
.
assertRaises
(
IndexError
)
as
cm
:
with
self
.
assertRaises
(
IndexError
)
as
cm
:
fi
[
0
]
fi
[
0
]
self
.
assertEqual
s
(
cm
.
exception
.
args
,
(
"end of input reached"
,))
self
.
assertEqual
(
cm
.
exception
.
args
,
(
"end of input reached"
,))
def
test_nextfile_oserror_deleting_backup
(
self
):
def
test_nextfile_oserror_deleting_backup
(
self
):
"""Tests invoking FileInput.nextfile() when the attempt to delete
"""Tests invoking FileInput.nextfile() when the attempt to delete
...
...
Misc/NEWS
Dosyayı görüntüle @
ffd1f483
...
@@ -12,6 +12,10 @@ Core and Builtins
...
@@ -12,6 +12,10 @@ Core and Builtins
- _ast.__version__ is now a Mercurial integer and hex revision.
- _ast.__version__ is now a Mercurial integer and hex revision.
- Issue #11432: A bug was introduced in subprocess.Popen on posix systems with
3.2.0 where the stdout or stderr file descriptor being the same as the stdin
file descriptor would raise an exception. webbrowser.open would fail. fixed.
- Issue #9856: Change object.__format__ with a non-empty format string
- Issue #9856: Change object.__format__ with a non-empty format string
to be a DeprecationWarning. In 3.2 it was a PendingDeprecationWarning.
to be a DeprecationWarning. In 3.2 it was a PendingDeprecationWarning.
In 3.4 it will be a TypeError.
In 3.4 it will be a TypeError.
...
...
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