Skip to content

Commit

Permalink
Merge pull request #79 from auscompgeek/fix-license-blocks
Browse files Browse the repository at this point in the history
Fix license blocks
  • Loading branch information
virtuald committed Dec 29, 2018
2 parents 299e2d0 + c46868b commit 4429d43
Show file tree
Hide file tree
Showing 13 changed files with 78 additions and 80 deletions.
12 changes: 6 additions & 6 deletions ntcore/callback_manager.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# validated: 2018-11-27 DS 18c8cce6a78d cpp/CallbackManager.h
"""----------------------------------------------------------------------------"""
""" Copyright (c) FIRST 2017. All Rights Reserved. """
""" Open Source Software - may be modified and shared by FRC teams. The code """
""" must be accompanied by the FIRST BSD license file in the root directory of """
""" the project. """
"""----------------------------------------------------------------------------"""
# ----------------------------------------------------------------------------
# Copyright (c) FIRST 2017. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
# ----------------------------------------------------------------------------

from collections import deque, namedtuple
from threading import Condition
Expand Down
12 changes: 6 additions & 6 deletions ntcore/connection_notifier.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# validated: 2018-11-27 DS ac751d32247e cpp/ConnectionNotifier.cpp cpp/ConnectionNotifier.h cpp/IConnectionNotifier.h
"""----------------------------------------------------------------------------"""
""" Copyright (c) FIRST 2017. All Rights Reserved. """
""" Open Source Software - may be modified and shared by FRC teams. The code """
""" must be accompanied by the FIRST BSD license file in the root directory of """
""" the project. """
"""----------------------------------------------------------------------------"""
# ----------------------------------------------------------------------------
# Copyright (c) FIRST 2017. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
# ----------------------------------------------------------------------------

from collections import namedtuple

Expand Down
12 changes: 6 additions & 6 deletions ntcore/dispatcher.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# validated: 2017-10-01 DS e68a71022c96 cpp/Dispatcher.cpp cpp/Dispatcher.h cpp/IDispatcher.h
"""----------------------------------------------------------------------------"""
""" Copyright (c) FIRST 2017. All Rights Reserved. """
""" Open Source Software - may be modified and shared by FRC teams. The code """
""" must be accompanied by the FIRST BSD license file in the root directory of """
""" the project. """
"""----------------------------------------------------------------------------"""
# ----------------------------------------------------------------------------
# Copyright (c) FIRST 2017. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
# ----------------------------------------------------------------------------

import threading
import time
Expand Down
12 changes: 6 additions & 6 deletions ntcore/entry_notifier.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# validated: 2017-10-01 DS e4a8bff70e77 cpp/EntryNotifier.cpp cpp/EntryNotifier.h cpp/IEntryNotifier.h
"""----------------------------------------------------------------------------"""
""" Copyright (c) FIRST 2017. All Rights Reserved. """
""" Open Source Software - may be modified and shared by FRC teams. The code """
""" must be accompanied by the FIRST BSD license file in the root directory of """
""" the project. """
"""----------------------------------------------------------------------------"""
# ----------------------------------------------------------------------------
# Copyright (c) FIRST 2017. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
# ----------------------------------------------------------------------------

from collections import namedtuple

Expand Down
12 changes: 6 additions & 6 deletions ntcore/network_connection.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# validated: 2017-09-28 DS cedbafeb286d cpp/NetworkConnection.cpp cpp/NetworkConnection.h cpp/INetworkConnection.h
"""----------------------------------------------------------------------------"""
""" Copyright (c) FIRST 2017. All Rights Reserved. """
""" Open Source Software - may be modified and shared by FRC teams. The code """
""" must be accompanied by the FIRST BSD license file in the root directory of """
""" the project. """
"""----------------------------------------------------------------------------"""
# ----------------------------------------------------------------------------
# Copyright (c) FIRST 2017. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
# ----------------------------------------------------------------------------

import threading
from queue import Queue, Empty
Expand Down
12 changes: 6 additions & 6 deletions ntcore/rpc_server.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# validated: 2018-11-27 DS ac751d32247e cpp/RpcServer.cpp cpp/RpcServer.h cpp/IRpcServer.h
"""----------------------------------------------------------------------------"""
""" Copyright (c) FIRST 2017. All Rights Reserved. """
""" Open Source Software - may be modified and shared by FRC teams. The code """
""" must be accompanied by the FIRST BSD license file in the root directory of """
""" the project. """
"""----------------------------------------------------------------------------"""
# ----------------------------------------------------------------------------
# Copyright (c) FIRST 2017. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
# ----------------------------------------------------------------------------

from collections import namedtuple

Expand Down
12 changes: 6 additions & 6 deletions ntcore/storage.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# validated: 2018-11-27 DS ac751d32247e cpp/Storage.cpp cpp/Storage.h cpp/Storage_load.cpp cpp/Storage_save.cpp
"""----------------------------------------------------------------------------"""
""" Copyright (c) FIRST 2017. All Rights Reserved. """
""" Open Source Software - may be modified and shared by FRC teams. The code """
""" must be accompanied by the FIRST BSD license file in the root directory of """
""" the project. """
"""----------------------------------------------------------------------------"""
# ----------------------------------------------------------------------------
# Copyright (c) FIRST 2017. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
# ----------------------------------------------------------------------------

import contextlib
import os
Expand Down
12 changes: 6 additions & 6 deletions ntcore/storage_save.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# validated: 2018-11-27 DS a2ecb1027a62 cpp/Storage_save.cpp
"""----------------------------------------------------------------------------"""
""" Copyright (c) FIRST 2017. All Rights Reserved. """
""" Open Source Software - may be modified and shared by FRC teams. The code """
""" must be accompanied by the FIRST BSD license file in the root directory of """
""" the project. """
"""----------------------------------------------------------------------------"""
# ----------------------------------------------------------------------------
# Copyright (c) FIRST 2017. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
# ----------------------------------------------------------------------------

import ast
import base64
Expand Down
12 changes: 6 additions & 6 deletions tests/test_conn_listener.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""----------------------------------------------------------------------------"""
""" Copyright (c) FIRST 2017. All Rights Reserved. """
""" Open Source Software - may be modified and shared by FRC teams. The code """
""" must be accompanied by the FIRST BSD license file in the root directory of """
""" the project. """
"""----------------------------------------------------------------------------"""
# ----------------------------------------------------------------------------
# Copyright (c) FIRST 2017. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
# ----------------------------------------------------------------------------

#
# These tests are adapted from ntcore's test suite
Expand Down
12 changes: 6 additions & 6 deletions tests/test_entry_listener.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""----------------------------------------------------------------------------"""
""" Copyright (c) FIRST 2017. All Rights Reserved. """
""" Open Source Software - may be modified and shared by FRC teams. The code """
""" must be accompanied by the FIRST BSD license file in the root directory of """
""" the project. """
"""----------------------------------------------------------------------------"""
# ----------------------------------------------------------------------------
# Copyright (c) FIRST 2017. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
# ----------------------------------------------------------------------------

#
# These tests are adapted from ntcore's test suite
Expand Down
14 changes: 6 additions & 8 deletions tests/test_entry_notifier.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
from __future__ import print_function

"""----------------------------------------------------------------------------"""
""" Copyright (c) FIRST 2017. All Rights Reserved. """
""" Open Source Software - may be modified and shared by FRC teams. The code """
""" must be accompanied by the FIRST BSD license file in the root directory of """
""" the project. """
"""----------------------------------------------------------------------------"""
# ----------------------------------------------------------------------------
# Copyright (c) FIRST 2017. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
# ----------------------------------------------------------------------------

#
# These tests are adapted from ntcore's test suite
Expand Down
12 changes: 6 additions & 6 deletions tests/test_storage.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""----------------------------------------------------------------------------"""
""" Copyright (c) FIRST 2017. All Rights Reserved. """
""" Open Source Software - may be modified and shared by FRC teams. The code """
""" must be accompanied by the FIRST BSD license file in the root directory of """
""" the project. """
"""----------------------------------------------------------------------------"""
# ----------------------------------------------------------------------------
# Copyright (c) FIRST 2017. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
# ----------------------------------------------------------------------------

#
# These tests are adapted from ntcore's test suite
Expand Down
12 changes: 6 additions & 6 deletions tests/test_value.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""----------------------------------------------------------------------------"""
""" Copyright (c) FIRST 2017. All Rights Reserved. """
""" Open Source Software - may be modified and shared by FRC teams. The code """
""" must be accompanied by the FIRST BSD license file in the root directory of """
""" the project. """
"""----------------------------------------------------------------------------"""
# ----------------------------------------------------------------------------
# Copyright (c) FIRST 2017. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
# ----------------------------------------------------------------------------

#
# These tests are adapted from ntcore's test suite
Expand Down

0 comments on commit 4429d43

Please sign in to comment.