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
efc1e0f4
Kaydet (Commit)
efc1e0f4
authored
Ock 13, 1998
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Consistency:
"Unix" ==> "\UNIX{}"
üst
3dd264cc
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
14 deletions
+14
-14
liballos.tex
Doc/lib/liballos.tex
+2
-2
libcgi.tex
Doc/lib/libcgi.tex
+2
-2
libfcntl.tex
Doc/lib/libfcntl.tex
+3
-3
liballos.tex
Doc/liballos.tex
+2
-2
libcgi.tex
Doc/libcgi.tex
+2
-2
libfcntl.tex
Doc/libfcntl.tex
+3
-3
No files found.
Doc/lib/liballos.tex
Dosyayı görüntüle @
efc1e0f4
...
...
@@ -24,10 +24,10 @@ systems as well. Here's an overview:
--- Standard errno system symbols.
\item
[glob]
---
Unix
shell style pathname pattern expansion.
---
\UNIX
{}
shell style pathname pattern expansion.
\item
[fnmatch]
---
Unix
shell style pathname pattern matching.
---
\UNIX
{}
shell style pathname pattern matching.
\item
[locale]
--- Internationalization services.
...
...
Doc/lib/libcgi.tex
Dosyayı görüntüle @
efc1e0f4
...
...
@@ -263,7 +263,7 @@ system administrator to find the directory where CGI scripts should be
installed; usually this is in a directory
\file
{
cgi-bin
}
in the server tree.
Make sure that your script is readable and executable by ``others''; the
Unix
file mode should be 755 (use
\code
{
chmod 755 filename
}
). Make sure
\UNIX
{}
file mode should be 755 (use
\code
{
chmod 755 filename
}
). Make sure
that the first line of the script contains
\code
{
\#
!
}
starting in column 1
followed by the pathname of the Python interpreter, for instance:
...
...
@@ -297,7 +297,7 @@ sys.path.insert(0, "/usr/local/lib/python")
%
(This way, the directory inserted last will be searched first!)
Instructions for non-
Unix
systems will vary; check your HTTP server's
Instructions for non-
\UNIX
{}
systems will vary; check your HTTP server's
documentation (it will usually have a section on CGI scripts).
...
...
Doc/lib/libfcntl.tex
Dosyayı görüntüle @
efc1e0f4
...
...
@@ -38,13 +38,13 @@ The module defines the following functions:
\begin{funcdesc}
{
flock
}{
fd
\,
op
}
Perform the lock operation
\var
{
op
}
on file descriptor
\var
{
fd
}
.
See the
Unix
manual for details. (On some systems, this function is
emulated using
\code
{
fcntl
}
.)
See the
\UNIX
{}
manual for details. (On some systems, this function is
emulated using
\code
{
fcntl
()
}
.)
\end{funcdesc}
\begin{funcdesc}
{
lockf
}{
fd
\,
code
\,
\optional
{
len
\,
\optional
{
start
\,
\optional
{
whence
}}}}
This is a wrapper around the
\code
{
F
_
SETLK
}
and
\code
{
F
_
SETLKW
}
\code
{
fcntl()
}
calls. See the
Unix
manual for details.
\code
{
fcntl()
}
calls. See the
\UNIX
{}
manual for details.
\end{funcdesc}
If the library modules
\code
{
FCNTL
}
or
\code
{
IOCTL
}
are missing, you
...
...
Doc/liballos.tex
Dosyayı görüntüle @
efc1e0f4
...
...
@@ -24,10 +24,10 @@ systems as well. Here's an overview:
--- Standard errno system symbols.
\item
[glob]
---
Unix
shell style pathname pattern expansion.
---
\UNIX
{}
shell style pathname pattern expansion.
\item
[fnmatch]
---
Unix
shell style pathname pattern matching.
---
\UNIX
{}
shell style pathname pattern matching.
\item
[locale]
--- Internationalization services.
...
...
Doc/libcgi.tex
Dosyayı görüntüle @
efc1e0f4
...
...
@@ -263,7 +263,7 @@ system administrator to find the directory where CGI scripts should be
installed; usually this is in a directory
\file
{
cgi-bin
}
in the server tree.
Make sure that your script is readable and executable by ``others''; the
Unix
file mode should be 755 (use
\code
{
chmod 755 filename
}
). Make sure
\UNIX
{}
file mode should be 755 (use
\code
{
chmod 755 filename
}
). Make sure
that the first line of the script contains
\code
{
\#
!
}
starting in column 1
followed by the pathname of the Python interpreter, for instance:
...
...
@@ -297,7 +297,7 @@ sys.path.insert(0, "/usr/local/lib/python")
%
(This way, the directory inserted last will be searched first!)
Instructions for non-
Unix
systems will vary; check your HTTP server's
Instructions for non-
\UNIX
{}
systems will vary; check your HTTP server's
documentation (it will usually have a section on CGI scripts).
...
...
Doc/libfcntl.tex
Dosyayı görüntüle @
efc1e0f4
...
...
@@ -38,13 +38,13 @@ The module defines the following functions:
\begin{funcdesc}
{
flock
}{
fd
\,
op
}
Perform the lock operation
\var
{
op
}
on file descriptor
\var
{
fd
}
.
See the
Unix
manual for details. (On some systems, this function is
emulated using
\code
{
fcntl
}
.)
See the
\UNIX
{}
manual for details. (On some systems, this function is
emulated using
\code
{
fcntl
()
}
.)
\end{funcdesc}
\begin{funcdesc}
{
lockf
}{
fd
\,
code
\,
\optional
{
len
\,
\optional
{
start
\,
\optional
{
whence
}}}}
This is a wrapper around the
\code
{
F
_
SETLK
}
and
\code
{
F
_
SETLKW
}
\code
{
fcntl()
}
calls. See the
Unix
manual for details.
\code
{
fcntl()
}
calls. See the
\UNIX
{}
manual for details.
\end{funcdesc}
If the library modules
\code
{
FCNTL
}
or
\code
{
IOCTL
}
are missing, you
...
...
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