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
33552e92
Kaydet (Commit)
33552e92
authored
Ock 10, 2007
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Excise the sets module. SF #1500611 by Collin Winter.
üst
902d6ebd
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
5 additions
and
19 deletions
+5
-19
Makefile.deps
Doc/Makefile.deps
+0
-1
lib.tex
Doc/lib/lib.tex
+0
-1
libsets.tex
Doc/lib/libsets.tex
+0
-0
libstdtypes.tex
Doc/lib/libstdtypes.tex
+0
-10
__init__.py
Lib/msilib/__init__.py
+5
-5
sets.py
Lib/sets.py
+0
-0
test_cookielib.py
Lib/test/test_cookielib.py
+0
-1
test_set.py
Lib/test/test_set.py
+0
-1
test_sets.py
Lib/test/test_sets.py
+0
-0
No files found.
Doc/Makefile.deps
Dosyayı görüntüle @
33552e92
...
...
@@ -109,7 +109,6 @@ LIBFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
lib/libplatform.tex
\
lib/libfpectl.tex
\
lib/libgc.tex
\
lib/libsets.tex
\
lib/libweakref.tex
\
lib/libinspect.tex
\
lib/libpydoc.tex
\
...
...
Doc/lib/lib.tex
Dosyayı görüntüle @
33552e92
...
...
@@ -104,7 +104,6 @@ and how to embed it in other applications.
\input
{
libheapq
}
\input
{
libbisect
}
\input
{
libarray
}
\input
{
libsets
}
\input
{
libsched
}
\input
{
libmutex
}
\input
{
libqueue
}
...
...
Doc/lib/libsets.tex
Dosyayı görüntüle @
33552e92
This diff is collapsed.
Click to expand it.
Doc/lib/libstdtypes.tex
Dosyayı görüntüle @
33552e92
...
...
@@ -1334,16 +1334,6 @@ Note, the non-operator versions of the \method{update()},
\method
{
intersection
_
update()
}
,
\method
{
difference
_
update()
}
, and
\method
{
symmetric
_
difference
_
update()
}
methods will accept any iterable
as an argument.
The design of the set types was based on lessons learned from the
\module
{
sets
}
module.
\begin{seealso}
\seelink
{
comparison-to-builtin-set.html
}
{
Comparison to the built-in set types
}
{
Differences between the
\module
{
sets
}
module and the
built-in set types.
}
\end{seealso}
\section
{
Mapping Types ---
\class
{
dict
}
\label
{
typesmapping
}}
...
...
Lib/msilib/__init__.py
Dosyayı görüntüle @
33552e92
...
...
@@ -2,7 +2,7 @@
# Copyright (C) 2005 Martin v. Lwis
# Licensed to PSF under a Contributor Agreement.
from
_msi
import
*
import
sets
,
os
,
string
,
re
import
os
,
string
,
re
Win64
=
0
...
...
@@ -184,7 +184,7 @@ class CAB:
def
__init__
(
self
,
name
):
self
.
name
=
name
self
.
files
=
[]
self
.
filenames
=
set
s
.
Set
()
self
.
filenames
=
set
()
self
.
index
=
0
def
gen_id
(
self
,
file
):
...
...
@@ -215,7 +215,7 @@ class CAB:
os
.
unlink
(
filename
)
db
.
Commit
()
_directories
=
set
s
.
Set
()
_directories
=
set
()
class
Directory
:
def
__init__
(
self
,
db
,
cab
,
basedir
,
physical
,
_logical
,
default
,
componentflags
=
None
):
"""Create a new directory in the Directory table. There is a current component
...
...
@@ -239,8 +239,8 @@ class Directory:
self
.
physical
=
physical
self
.
logical
=
logical
self
.
component
=
None
self
.
short_names
=
set
s
.
Set
()
self
.
ids
=
set
s
.
Set
()
self
.
short_names
=
set
()
self
.
ids
=
set
()
self
.
keyfiles
=
{}
self
.
componentflags
=
componentflags
if
basedir
:
...
...
Lib/sets.py
deleted
100644 → 0
Dosyayı görüntüle @
902d6ebd
This diff is collapsed.
Click to expand it.
Lib/test/test_cookielib.py
Dosyayı görüntüle @
33552e92
...
...
@@ -1723,7 +1723,6 @@ class LWPCookieTests(TestCase):
def
test_main
(
verbose
=
None
):
from
test
import
test_sets
test_support
.
run_unittest
(
DateTimeTests
,
HeaderTests
,
...
...
Lib/test/test_set.py
Dosyayı görüntüle @
33552e92
...
...
@@ -1451,7 +1451,6 @@ class TestVariousIteratorArgs(unittest.TestCase):
#==============================================================================
def
test_main
(
verbose
=
None
):
from
test
import
test_sets
test_classes
=
(
TestSet
,
TestSetSubclass
,
...
...
Lib/test/test_sets.py
deleted
100644 → 0
Dosyayı görüntüle @
902d6ebd
This diff is collapsed.
Click to expand it.
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