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
7d74a0e2
Kaydet (Commit)
7d74a0e2
authored
Eki 12, 2006
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bug #1546628: add a note about urlparse.urljoin() and absolute paths.
üst
5597e261
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
liburlparse.tex
Doc/lib/liburlparse.tex
+15
-1
No files found.
Doc/lib/liburlparse.tex
Dosyayı görüntüle @
7d74a0e2
...
...
@@ -142,7 +142,7 @@ a ? with an empty query; the RFC states that these are equivalent).
\begin{funcdesc}
{
urljoin
}{
base, url
\optional
{
, allow
_
fragments
}}
Construct a full (``absolute'') URL by combining a ``base URL''
(
\var
{
base
}
) with a
``relative URL''
(
\var
{
url
}
). Informally, this
(
\var
{
base
}
) with a
nother URL
(
\var
{
url
}
). Informally, this
uses components of the base URL, in particular the addressing scheme,
the network location and (part of) the path, to provide missing
components in the relative URL. For example:
...
...
@@ -155,6 +155,20 @@ components in the relative URL. For example:
The
\var
{
allow
_
fragments
}
argument has the same meaning and default as
for
\function
{
urlparse()
}
.
\note
{
If
\var
{
url
}
is an absolute URL (that is, starting with
\code
{
//
}
or
\code
{
scheme://
}
, the
\var
{
url
}
's host name and/or scheme
will be present in the result. For example:
}
\begin{verbatim}
>>> urljoin('http://www.cwi.nl/
%7Eguido/Python.html',
... '//www.python.org/
%7Eguido')
'http://www.python.org/
%7Eguido'
\end{verbatim}
If you do not want that behavior, preprocess
the
\var
{
url
}
with
\function
{
urlsplit()
}
and
\function
{
urlunsplit()
}
,
removing possible
\em
{
scheme
}
and
\em
{
netloc
}
parts.
\end{funcdesc}
\begin{funcdesc}
{
urldefrag
}{
url
}
...
...
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