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
61376409
Kaydet (Commit)
61376409
authored
Eki 16, 2008
tarafından
Hirokazu Yamamoto
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
removed unused _PyUnicode_FromFileSystemEncodedObject.
made win32_chdir, win32_wchdir static.
üst
6ae94ee2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
posixmodule.c
Modules/posixmodule.c
+2
-6
No files found.
Modules/posixmodule.c
Dosyayı görüntüle @
61376409
...
...
@@ -474,10 +474,6 @@ win32_error_unicode(char* function, Py_UNICODE* filename)
return
PyErr_SetFromWindowsErr
(
errno
);
}
static
PyObject
*
_PyUnicode_FromFileSystemEncodedObject
(
register
PyObject
*
obj
)
{
}
static
int
convert_to_unicode
(
PyObject
**
param
)
{
...
...
@@ -688,7 +684,7 @@ win32_1str(PyObject* args, char* func,
chdir is essentially a wrapper around SetCurrentDirectory; however,
it also needs to set "magic" environment variables indicating
the per-drive current directory, which are of the form =<drive>: */
BOOL
__stdcall
static
BOOL
__stdcall
win32_chdir
(
LPCSTR
path
)
{
char
new_path
[
MAX_PATH
+
1
];
...
...
@@ -713,7 +709,7 @@ win32_chdir(LPCSTR path)
/* The Unicode version differs from the ANSI version
since the current directory might exceed MAX_PATH characters */
BOOL
__stdcall
static
BOOL
__stdcall
win32_wchdir
(
LPCWSTR
path
)
{
wchar_t
_new_path
[
MAX_PATH
+
1
],
*
new_path
=
_new_path
;
...
...
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