Skip to content

Commit 37e3090

Browse files
committed
Notes for Patch 1.21
1 parent 55e8169 commit 37e3090

File tree

2 files changed

+44
-1
lines changed

2 files changed

+44
-1
lines changed

CHANGELOG

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
Version 1.21, 2014-04-21
2+
------------------------
3+
4+
- Fix for when /Type isn't present in the Pages dictionary (by Rob1080)
5+
6+
- More tolerance for extra whitespace in Indirect Objects
7+
8+
- Improved Exception handling
9+
10+
- Fixed error in getHeight() method (by Simon Kaempflein)
11+
12+
- implement use of utils.string_type to resolve Py2-3 compatibility issues
13+
14+
- Prevent exception for multiple definitions in a dictionary (with carlosfunk)
15+
(only when strict = False)
16+
17+
- Fixed errors when parsing a slice using pdfcat on command line (by
18+
Steve Witham)
19+
20+
- Tolerance for EOF markers within 1024 bytes of the actual end of the
21+
file (with David Wolever)
22+
23+
- Added overwriteWarnings parameter to PdfFileReader constructor, if False
24+
PyPDF2 will NOT overwrite methods from Python's warnings.py module with
25+
a custom implementation.
26+
27+
- Fix NumberObject and NameObject constructors for compatibility with PyPy
28+
(R�diger Jungbeck, Xavier Dupr�, shezadkhan137, Steven Witham)
29+
30+
- Utilize utils.Str in pdf.py and pagerange.py to resolve type issues (by
31+
egbutter)
32+
33+
- Improvements in implementing StringIO for Python 2 and BytesIO for
34+
Python 3 (by Xavier Dupr�)
35+
36+
- Added /x00 to Whitespaces, defined utils.WHITESPACES to clarify code (by
37+
Maxim Kamenkov)
38+
39+
- Bugfix for merging 3 or more resources with the same name (by lucky-user)
40+
41+
- Improvements to Xref parsing algorithm (by speedplane)
42+
43+
144
Version 1.20, 2014-01-27
245
------------------------
346

PyPDF2/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '1.20'
1+
__version__ = '1.21'
22

0 commit comments

Comments
 (0)