| OLD | NEW |
| 1 # -*- coding: ascii -*- | 1 # -*- coding: ascii -*- |
| 2 r""" | 2 r""" |
| 3 ================================= | 3 ================================= |
| 4 Benchmark cssmin implementations | 4 Benchmark cssmin implementations |
| 5 ================================= | 5 ================================= |
| 6 | 6 |
| 7 Benchmark cssmin implementations. | 7 Benchmark cssmin implementations. |
| 8 | 8 |
| 9 :Copyright: | 9 :Copyright: |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 Unless required by applicable law or agreed to in writing, software | 22 Unless required by applicable law or agreed to in writing, software |
| 23 distributed under the License is distributed on an "AS IS" BASIS, | 23 distributed under the License is distributed on an "AS IS" BASIS, |
| 24 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 24 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 25 See the License for the specific language governing permissions and | 25 See the License for the specific language governing permissions and |
| 26 limitations under the License. | 26 limitations under the License. |
| 27 | 27 |
| 28 """ | 28 """ |
| 29 if __doc__: | 29 if __doc__: |
| 30 __doc__ = __doc__.encode('ascii').decode('unicode_escape') | 30 __doc__ = __doc__.encode('ascii').decode('unicode_escape') |
| OLD | NEW |