From f9b8e8ac02c560d875cc0a297686a0e66f6cbac5 Mon Sep 17 00:00:00 2001 From: attardi Date: Sun, 19 Jun 2016 12:53:31 +0200 Subject: [PATCH] Added support for Python 3. --- ChangeLog | 4 ++++ WikiExtractor.py | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index cc552f1..fdc8e92 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2016-06-19 Giuseppe Attardi + + * WikiExtractor.py: support for Python 3 by orangain@gmail.com + 2016-03-23 Giuseppe Attardi * WikiExtractor.py (compact): properly emit section headers when Extractor.keepSections. diff --git a/WikiExtractor.py b/WikiExtractor.py index 50f6b15..d4244c9 100755 --- a/WikiExtractor.py +++ b/WikiExtractor.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # ============================================================================= -# Version: 2.55 (March 23, 2016) +# Version: 2.56 (June 19, 2016) # Author: Giuseppe Attardi (attardi@di.unipi.it), University of Pisa # # Contributors: @@ -14,6 +14,7 @@ # Pedro Assis (pedroh2306@gmail.com) # Wim Muskee (wimmuskee@gmail.com) # Radics Geza (radicsge@gmail.com) +# orangain (orangain@gmail.com) # # ============================================================================= # Copyright (c) 2011-2016. Giuseppe Attardi (attardi@di.unipi.it). @@ -80,7 +81,7 @@ else: # =========================================================================== # Program version -version = '2.55' +version = '2.56' ## PARAMS ####################################################################