File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed
Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ Wladimir J. van der Laan (laanwj)
77azasypkin
88Philippe Ombredanne
99mspncp
10+ Yen Chi Hsuan (@yan12125)
Original file line number Diff line number Diff line change 11MIT License
22-----------
33
4- Copyright (c) 2008-2015 anatoly techtonik
4+ Copyright (c) 2008-2016 anatoly techtonik
55
66Permission is hereby granted, free of charge, to any person obtaining a copy
77of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 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
1818import copy
1919import logging
2020import re
21+
2122# cStringIO doesn't support unicode in 2.5
2223try :
2324 from StringIO import StringIO
You can’t perform that action at this time.
0 commit comments