Skip to content

Commit 5eb33bd

Browse files
committed
Credits to Yen Chi Hsuan (@yan12125) for Python 3 support
...and preparing for release
1 parent 8c1cb99 commit 5eb33bd

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

doc/CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
##### 1.16
2+
3+
- Python 3 support, thanks to Yen Chi Hsuan (@yan12125)
4+
(pull request #36)
5+
16
##### 1.15
27

38
- Project moved to GitHub

doc/CREDITS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ Wladimir J. van der Laan (laanwj)
77
azasypkin
88
Philippe Ombredanne
99
mspncp
10+
Yen Chi Hsuan (@yan12125)

doc/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MIT License
22
-----------
33

4-
Copyright (c) 2008-2015 anatoly techtonik
4+
Copyright (c) 2008-2016 anatoly techtonik
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

patch.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
#!/usr/bin/env python
2-
from __future__ import print_function
32
"""
43
Patch utility to apply unified diffs
54
65
Brute-force line-by-line non-recursive parsing
76
8-
Copyright (c) 2008-2015 anatoly techtonik
7+
Copyright (c) 2008-2016 anatoly techtonik
98
Available under the terms of MIT license
109
1110
https://github.com/techtonik/python-patch/
1211
1312
"""
13+
from __future__ import print_function
1414

1515
__author__ = "anatoly techtonik <techtonik@gmail.com>"
16-
__version__ = "1.15"
16+
__version__ = "1.16"
1717

1818
import copy
1919
import logging
2020
import re
21+
2122
# cStringIO doesn't support unicode in 2.5
2223
try:
2324
from StringIO import StringIO

0 commit comments

Comments
 (0)