@@ -180,7 +180,6 @@ def detect_modules(self):
180180
181181 exts .append ( Extension ('_weakref' , ['_weakref.c' ]) )
182182 exts .append ( Extension ('_symtable' , ['symtablemodule.c' ]) )
183- exts .append ( Extension ('xreadlines' , ['xreadlinesmodule.c' ]) )
184183
185184 # array objects
186185 exts .append ( Extension ('array' , ['arraymodule.c' ]) )
@@ -244,10 +243,7 @@ def detect_modules(self):
244243 # Memory-mapped files (also works on Win32).
245244 exts .append ( Extension ('mmap' , ['mmapmodule.c' ]) )
246245
247- # Lance Ellinghaus's modules:
248- # enigma-inspired encryption
249- exts .append ( Extension ('rotor' , ['rotormodule.c' ]) )
250- # syslog daemon interface
246+ # Lance Ellinghaus's syslog daemon interface
251247 exts .append ( Extension ('syslog' , ['syslogmodule.c' ]) )
252248
253249 # George Neville-Neil's timing module:
@@ -361,23 +357,6 @@ def detect_modules(self):
361357 include_dirs = db_inc ,
362358 libraries = dblib ) )
363359
364- # The mpz module interfaces to the GNU Multiple Precision library.
365- # You need to ftp the GNU MP library.
366- # This was originally written and tested against GMP 1.2 and 1.3.2.
367- # It has been modified by Rob Hooft to work with 2.0.2 as well, but I
368- # haven't tested it recently. For a more complete module,
369- # refer to pympz.sourceforge.net.
370-
371- # A compatible MP library unencombered by the GPL also exists. It was
372- # posted to comp.sources.misc in volume 40 and is widely available from
373- # FTP archive sites. One URL for it is:
374- # ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
375-
376- if (self .compiler .find_library_file (lib_dirs , 'gmp' )):
377- exts .append ( Extension ('mpz' , ['mpzmodule.c' ],
378- libraries = ['gmp' ] ) )
379-
380-
381360 # Unix-only modules
382361 if platform not in ['mac' , 'win32' ]:
383362 # Steen Lumholt's termios module
0 commit comments