mirror of
https://github.com/boostorg/python.git
synced 2026-01-28 07:22:31 +00:00
Nearly every header in the boost codebase is UTF-8, but here there are a few headers which are using Windows-1252, which makes it impossible for some tools to parse those files. This patch just reencodes them with UTF-8 like the rest of the codebase. I checked that the name of the author is still correct after this change. No functional change intended.
17 lines
393 B
Python
17 lines
393 B
Python
# -*- coding: latin-1 -*-
|
|
# Copyright Gottfried Ganßauge 2006.
|
|
# Distributed under the Boost Software License, Version 1.0. (See
|
|
# accompanying file LICENSE_1_0.txt or copy at
|
|
# http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
if __name__ == '__main__':
|
|
print("running...")
|
|
|
|
import crossmod_opaque_a
|
|
import crossmod_opaque_b
|
|
|
|
crossmod_opaque_a.get()
|
|
crossmod_opaque_b.get()
|
|
|
|
print("Done.")
|