Skip to content

Commit

Permalink
Merge pull request #4617 from ctiller/cython_copyright
Browse files Browse the repository at this point in the history
Copyright  checker fixes
  • Loading branch information
murgatroid99 committed Jan 5, 2016
2 parents b0d8f68 + befa1ff commit 383ffac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/boringssl/gen_build_yaml.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python2.7
# Copyright 2015, Google Inc.
# Copyright 2015-2016, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/core/compression/algorithm.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
*
* Copyright 2015, Google Inc.
* Copyright 2015-2016, Google Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
6 changes: 3 additions & 3 deletions tools/distrib/check_copyright.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@
'.php': r'\s*\*\s*',
'.js': r'\s*\*\s*',
'.py': r'#\s*',
'.pyx': r'# %s',
'.pxd': r'# %s',
'.pxi': r'# %s',
'.pyx': r'#\s*',
'.pxd': r'#\s*',
'.pxi': r'#\s*',
'.rb': r'#\s*',
'.sh': r'#\s*',
'.proto': r'//\s*',
Expand Down

0 comments on commit 383ffac

Please sign in to comment.