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
bf26e070
Kaydet (Commit)
bf26e070
authored
Tem 12, 2000
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Worm around MSVC6 error on single string literal > 2Kb.
üst
38f74419
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
exceptions.c
Python/exceptions.c
+7
-2
No files found.
Python/exceptions.c
Dosyayı görüntüle @
bf26e070
...
@@ -20,6 +20,10 @@
...
@@ -20,6 +20,10 @@
#include "Python.h"
#include "Python.h"
/* Caution: MS Visual C++ 6 errors if a single string literal exceeds
* 2Kb. So the module docstring has been broken roughly in half, using
* compile-time literal concatenation.
*/
static
char
static
char
module__doc__
[]
=
module__doc__
[]
=
"Python's standard exception class hierarchy.
\n
\
"Python's standard exception class hierarchy.
\n
\
...
@@ -41,8 +45,9 @@ interpreter.\n\
...
@@ -41,8 +45,9 @@ interpreter.\n\
Here is a rundown of the class hierarchy. The classes found here are
\n
\
Here is a rundown of the class hierarchy. The classes found here are
\n
\
inserted into both the exceptions module and the `built-in' module. It is
\n
\
inserted into both the exceptions module and the `built-in' module. It is
\n
\
recommended that user defined class based exceptions be derived from the
\n
\
recommended that user defined class based exceptions be derived from the
\n
\
`Exception' class, although this is currently not enforced.
\n
\
`Exception' class, although this is currently not enforced.
\n
"
\n
\
/* keep string pieces "small" */
"
\n
\
Exception
\n
\
Exception
\n
\
|
\n
\
|
\n
\
+-- SystemExit
\n
\
+-- SystemExit
\n
\
...
...
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