summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
Diffstat (limited to 'Misc')
-rw-r--r--Misc/BeOS-setup.py2
-rw-r--r--Misc/NEWS9
-rw-r--r--Misc/cheatsheet3
3 files changed, 8 insertions, 6 deletions
diff --git a/Misc/BeOS-setup.py b/Misc/BeOS-setup.py
index 07dbe15..991e608 100644
--- a/Misc/BeOS-setup.py
+++ b/Misc/BeOS-setup.py
@@ -176,8 +176,6 @@ class PyBuildExt(build_ext):
#
# Some modules that are normally always on:
- exts.append( Extension('regex', ['regexmodule.c', 'regexpr.c']) )
-
exts.append( Extension('_weakref', ['_weakref.c']) )
exts.append( Extension('_symtable', ['symtablemodule.c']) )
diff --git a/Misc/NEWS b/Misc/NEWS
index 8506d91..96a2f5e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -291,7 +291,14 @@ Core and builtins
Extension Modules
-----------------
-- Swapped re and sre, so help(re) provides full help. importing sre
+- Everything under lib-old was removed. This includes the following modules:
+ Para, addpack, cmp, cmpcache, codehack, dircmp, dump, find, fmt, grep,
+ lockfile, newdir, ni, packmail, poly, rand, statcache, tb, tzparse,
+ util, whatsound, whrandom, zmod
+
+- The following modules were removed: regsub, reconvert, regex, regex_syntax.
+
+- re and sre were swapped, so help(re) provides full help. importing sre
is deprecated. The undocumented re.engine variable no longer exists.
- Bug #1448490: Fixed a bug that ISO-2022 codecs could not handle
diff --git a/Misc/cheatsheet b/Misc/cheatsheet
index d50ed2e..ce02a53 100644
--- a/Misc/cheatsheet
+++ b/Misc/cheatsheet
@@ -1956,8 +1956,6 @@ quopri Conversions to/from quoted-printable transport encoding.
rand Don't use unless you want compatibility with C's rand().
random Random variable generators
re Regular Expressions.
-reconvert Convert old ("regex") regular expressions to new syntax
- ("re").
repr Redo repr() but with limits on most sizes.
rexec Restricted execution facilities ("safe" exec, eval, etc).
rfc822 RFC-822 message manipulation class.
@@ -2035,7 +2033,6 @@ zipfile Read & write PK zipped files.
array Obj efficiently representing arrays of basic values
math Math functions of C standard
time Time-related functions (also the newer datetime module)
- regex Regular expression matching operations
marshal Read and write some python values in binary format
struct Convert between python values and C structs