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
76b30d16
Kaydet (Commit)
76b30d16
authored
Ock 07, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix #define ordering.
üst
62647653
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
tokenizer.c
Parser/tokenizer.c
+2
-3
tokenizer.h
Parser/tokenizer.h
+1
-1
No files found.
Parser/tokenizer.c
Dosyayı görüntüle @
76b30d16
...
...
@@ -1533,7 +1533,6 @@ PyTokenizer_Get(struct tok_state *tok, char **p_start, char **p_end)
return
result
;
}
#ifdef Py_USING_UNICODE
/* This function is only called from parsetok. However, it cannot live
there, as it must be empty for PGEN, and we can check for PGEN only
in this file. */
...
...
@@ -1545,6 +1544,7 @@ PyTokenizer_RestoreEncoding(struct tok_state* tok, int len, int* offset)
return
NULL
;
}
#else
#ifdef Py_USING_UNICODE
static
PyObject
*
dec_utf8
(
const
char
*
enc
,
const
char
*
text
,
size_t
len
)
{
PyObject
*
ret
=
NULL
;
...
...
@@ -1592,10 +1592,9 @@ PyTokenizer_RestoreEncoding(struct tok_state* tok, int len, int *offset)
return
text
;
}
#endif
/* defined(Py_USING_UNICODE) */
#endif
#endif
/* defined(Py_USING_UNICODE) */
#ifdef Py_DEBUG
...
...
Parser/tokenizer.h
Dosyayı görüntüle @
76b30d16
...
...
@@ -58,7 +58,7 @@ extern struct tok_state *PyTokenizer_FromString(const char *);
extern
struct
tok_state
*
PyTokenizer_FromFile
(
FILE
*
,
char
*
,
char
*
);
extern
void
PyTokenizer_Free
(
struct
tok_state
*
);
extern
int
PyTokenizer_Get
(
struct
tok_state
*
,
char
**
,
char
**
);
#if
def Py_USING_UNICODE
#if
defined(PGEN) || defined(Py_USING_UNICODE)
extern
char
*
PyTokenizer_RestoreEncoding
(
struct
tok_state
*
tok
,
int
len
,
int
*
offset
);
#endif
...
...
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