Added support for Python 3.

This commit is contained in:
attardi 2016-06-19 12:53:31 +02:00
parent aee387b566
commit f9b8e8ac02
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2016-06-19 Giuseppe Attardi <attardi@di.unipi.it>
* WikiExtractor.py: support for Python 3 by orangain@gmail.com
2016-03-23 Giuseppe Attardi <attardi@di.unipi.it>
* WikiExtractor.py (compact): properly emit section headers when Extractor.keepSections.

View File

@ -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 ####################################################################