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
c29966f3
Kaydet (Commit)
c29966f3
authored
Agu 11, 2011
tarafından
Brian Curtin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge
üst
0275fc19
5b0a4d22
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
4 deletions
+16
-4
calendar.py
Lib/calendar.py
+7
-4
test_calendar.py
Lib/test/test_calendar.py
+7
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/calendar.py
Dosyayı görüntüle @
c29966f3
...
...
@@ -636,7 +636,7 @@ def main(args):
parser
.
add_option
(
"-e"
,
"--encoding"
,
dest
=
"encoding"
,
default
=
None
,
help
=
"Encoding to use for output"
help
=
"Encoding to use for output
.
"
)
parser
.
add_option
(
"-t"
,
"--type"
,
...
...
@@ -662,10 +662,11 @@ def main(args):
if
encoding
is
None
:
encoding
=
sys
.
getdefaultencoding
()
optdict
=
dict
(
encoding
=
encoding
,
css
=
options
.
css
)
write
=
sys
.
stdout
.
buffer
.
write
if
len
(
args
)
==
1
:
print
(
cal
.
formatyearpage
(
datetime
.
date
.
today
()
.
year
,
**
optdict
))
write
(
cal
.
formatyearpage
(
datetime
.
date
.
today
()
.
year
,
**
optdict
))
elif
len
(
args
)
==
2
:
print
(
cal
.
formatyearpage
(
int
(
args
[
1
]),
**
optdict
))
write
(
cal
.
formatyearpage
(
int
(
args
[
1
]),
**
optdict
))
else
:
parser
.
error
(
"incorrect number of arguments"
)
sys
.
exit
(
1
)
...
...
@@ -687,9 +688,11 @@ def main(args):
else
:
parser
.
error
(
"incorrect number of arguments"
)
sys
.
exit
(
1
)
write
=
sys
.
stdout
.
write
if
options
.
encoding
:
result
=
result
.
encode
(
options
.
encoding
)
print
(
result
)
write
=
sys
.
stdout
.
buffer
.
write
write
(
result
)
if
__name__
==
"__main__"
:
...
...
Lib/test/test_calendar.py
Dosyayı görüntüle @
c29966f3
...
...
@@ -2,6 +2,7 @@ import calendar
import
unittest
from
test
import
support
from
test.script_helper
import
assert_python_ok
import
time
import
locale
...
...
@@ -451,6 +452,11 @@ class LeapdaysTestCase(unittest.TestCase):
self
.
assertEqual
(
calendar
.
leapdays
(
1997
,
2020
),
5
)
class
ConsoleOutputTestCase
(
unittest
.
TestCase
):
def
test_outputs_bytes
(
self
):
(
return_code
,
stdout
,
stderr
)
=
assert_python_ok
(
'-m'
,
'calendar'
,
'--type=html'
,
'2010'
)
self
.
assertEqual
(
stdout
[:
6
],
b
'<?xml '
)
def
test_main
():
support
.
run_unittest
(
OutputTestCase
,
...
...
@@ -460,6 +466,7 @@ def test_main():
TimegmTestCase
,
MonthRangeTestCase
,
LeapdaysTestCase
,
ConsoleOutputTestCase
)
...
...
Misc/NEWS
Dosyayı görüntüle @
c29966f3
...
...
@@ -251,6 +251,8 @@ Core and Builtins
Library
-------
- Issue #10087: Fix the html output format of the calendar module.
- Issue #12540: Prevent zombie IDLE processes on Windows due to changes
in os.kill().
...
...
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