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
b5c7fc7a
Kaydet (Commit)
b5c7fc7a
authored
Ara 30, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Fixed formatting comman-line usage message.
üst
a7161e7f
1ba01615
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
main.c
Modules/main.c
+4
-4
No files found.
Modules/main.c
Dosyayı görüntüle @
b5c7fc7a
...
...
@@ -85,11 +85,11 @@ file : program read from script file\n\
arg ...: arguments passed to program in sys.argv[1:]
\n\n
\
Other environment variables:
\n
\
PYTHONSTARTUP: file executed on interactive startup (no default)
\n
\
PYTHONPATH : '%c'-separated list of directories prefixed to the
\n
\
PYTHONPATH : '%
l
c'-separated list of directories prefixed to the
\n
\
default module search path. The result is sys.path.
\n
\
"
;
static
const
char
usage_5
[]
=
"PYTHONHOME : alternate <prefix> directory (or <prefix>%c<exec_prefix>).
\n
"
"PYTHONHOME : alternate <prefix> directory (or <prefix>%
l
c<exec_prefix>).
\n
"
" The default module search path uses %s.
\n
"
"PYTHONCASEOK : ignore case in 'import' statements (Windows).
\n
"
"PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.
\n
"
...
...
@@ -114,8 +114,8 @@ usage(int exitcode, const wchar_t* program)
fputs
(
usage_1
,
f
);
fputs
(
usage_2
,
f
);
fputs
(
usage_3
,
f
);
fprintf
(
f
,
usage_4
,
DELIM
);
fprintf
(
f
,
usage_5
,
DELIM
,
PYTHONHOMEHELP
);
fprintf
(
f
,
usage_4
,
(
wint_t
)
DELIM
);
fprintf
(
f
,
usage_5
,
(
wint_t
)
DELIM
,
PYTHONHOMEHELP
);
fputs
(
usage_6
,
f
);
}
return
exitcode
;
...
...
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