This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: (py3k) Remove the sets module
Type: Stage:
Components: Library (Lib) Versions: Python 3.0
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: Nosy List: collinwinter, gvanrossum
Priority: normal Keywords: patch

Created on 2006-06-04 20:38 by collinwinter, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
py3k-remove_sets_module.patch collinwinter, 2007-01-09 22:54 Against r53289
Messages (5)
msg50419 - (view) Author: Collin Winter (collinwinter) * (Python committer) Date: 2006-06-04 20:38
This patch removes the sets module, its documentation
and tests, in addition to replacing all usages of it
with the built-in set type.

The patch is against r46648.
msg50420 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2006-08-26 20:26
Logged In: YES 
user_id=6380

This patch seems out of date -- can you refresh it?
msg50421 - (view) Author: Collin Winter (collinwinter) * (Python committer) Date: 2006-08-31 22:44
Logged In: YES 
user_id=1344176

The patch has been updated to r51654.

I'm not sure how well `svn diff` handles removed files, so
you might have to `svn rm` Lib/sets.py,
Lib/test/test_sets.py and Doc/lib/libsets.py manually.
msg50422 - (view) Author: Collin Winter (collinwinter) * (Python committer) Date: 2007-01-09 22:54
File Added: py3k-remove_sets_module.patch
msg50423 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2007-01-10 01:29
Checked in.  Thanks!
History
Date User Action Args
2022-04-11 14:56:17adminsetgithub: 43455
2008-01-06 22:29:46adminsetkeywords: - py3k
versions: + Python 3.0
2006-06-04 20:38:12collinwintercreate