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
9c7eab82
Kaydet (Commit)
9c7eab82
authored
Nis 15, 2001
tarafından
Fredrik Lundh
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SRE: made "copyright" string static, to avoid potential linking
conflicts.
üst
e697091c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
_sre.c
Modules/_sre.c
+8
-1
No files found.
Modules/_sre.c
Dosyayı görüntüle @
9c7eab82
...
@@ -27,6 +27,7 @@
...
@@ -27,6 +27,7 @@
* 2001-01-15 fl avoid recursion for MIN_UNTIL; fixed uppercase literal bug
* 2001-01-15 fl avoid recursion for MIN_UNTIL; fixed uppercase literal bug
* 2001-01-16 fl fixed memory leak in pattern destructor
* 2001-01-16 fl fixed memory leak in pattern destructor
* 2001-03-20 fl lots of fixes for 2.1b2
* 2001-03-20 fl lots of fixes for 2.1b2
* 2001-04-15 fl export copyright as Python attribute, not global
*
*
* Copyright (c) 1997-2001 by Secret Labs AB. All rights reserved.
* Copyright (c) 1997-2001 by Secret Labs AB. All rights reserved.
*
*
...
@@ -41,7 +42,8 @@
...
@@ -41,7 +42,8 @@
#ifndef SRE_RECURSIVE
#ifndef SRE_RECURSIVE
char
copyright
[]
=
" SRE 2.1b2 Copyright (c) 1997-2001 by Secret Labs AB "
;
static
char
copyright
[]
=
" SRE 2.1b2 Copyright (c) 1997-2001 by Secret Labs AB "
;
#include "Python.h"
#include "Python.h"
...
@@ -2427,6 +2429,11 @@ init_sre(void)
...
@@ -2427,6 +2429,11 @@ init_sre(void)
PyDict_SetItemString
(
PyDict_SetItemString
(
d
,
"MAGIC"
,
(
PyObject
*
)
PyInt_FromLong
(
SRE_MAGIC
)
d
,
"MAGIC"
,
(
PyObject
*
)
PyInt_FromLong
(
SRE_MAGIC
)
);
);
PyDict_SetItemString
(
d
,
"copyright"
,
(
PyObject
*
)
PyString_FromString
(
copyright
)
);
}
}
#endif
/* !defined(SRE_RECURSIVE) */
#endif
/* !defined(SRE_RECURSIVE) */
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