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: reflect the removal of mpz
Type: Stage:
Components: Documentation Versions: Python 2.3
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: jlgijsbers, loewis, quiver
Priority: normal Keywords: patch

Created on 2003-11-15 03:00 by quiver, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
libmpz.tex.diff quiver, 2003-11-15 03:00
libmpz.tex.diff quiver, 2003-11-19 03:23 revised
Messages (4)
msg44888 - (view) Author: George Yoshida (quiver) (Python committer) Date: 2003-11-15 03:00
mpz's doc says "This module will be removed in 
Python 2.3" but Python 2.3 has been released, so it 
should read:
"This module has been removed in Python 2.3"


Python 2.3.2 (#1, Oct  9 2003, 12:03:29)
Type "help", "copyright", "credits" or "license" for 
more information.
>>> import mpz
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
ImportError: No module named mpz
msg44889 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2003-11-18 19:51
Logged In: YES 
user_id=21627

I believe the patch is incorrect; the module is still
available. The fact that you don't have it probably
originates from the fact that you don't have gmp build
environment.
msg44890 - (view) Author: George Yoshida (quiver) (Python committer) Date: 2003-11-19 03:23
Logged In: YES 
user_id=671362

Following your advice, I revised the previous patch.
* remove the obscure part
  (This module will be removed in Python 2.3.)
* add the version infomation to the availability of the 
module
  (use \versionchanged tag)

I guess this is clearer what has changed since 2.3.
The change is as follows:

 Deprecated since release 2.2. See the references at the 
end of this section for information about packages which 
provide similar functionality. This module will be 
removed in Python 2.3.
 This is an optional module. It is only available when 
Python is configured to include it, which requires that 
the GNU MP software is installed. 

--> patch applied

 Deprecated since release 2.2. See the references at the 
end of this section for information about packages which 
provide similar functionality. 
 Changed in version 2.3: This is an optional module. It is 
only available when Python is configured to include it, 
which requires that the GNU MP software is installed.


Thanks.
msg44891 - (view) Author: Johannes Gijsbers (jlgijsbers) * (Python triager) Date: 2004-09-11 16:58
Logged In: YES 
user_id=469548

Closing: mpz and libmpz are gone now.
History
Date User Action Args
2022-04-11 14:56:01adminsetgithub: 39552
2003-11-15 03:00:17quivercreate