Rename copeid_src to internal_copied_filegroup
diff --git a/BUILD b/BUILD
index a3d8a8f..9636497 100644
--- a/BUILD
+++ b/BUILD
@@ -22,7 +22,7 @@
     "protobuf",
     "cc_proto_library",
     "py_proto_library",
-    "copied_srcs",
+    "internal_copied_filegroup",
     "internal_protobuf_py_tests",
 )
 
@@ -487,7 +487,7 @@
 # project. Otherwise, bazel disallows generated files out of the current
 # package, thus we won't be able to copy protobuf runtime files into
 # //google/protobuf/.
-copied_srcs(
+internal_copied_filegroup(
     name = "python_srcs",
     srcs = glob(
         [
@@ -511,7 +511,7 @@
     visibility = ["//visibility:public"],
 )
 
-copied_srcs(
+internal_copied_filegroup(
     name = "python_test_srcs",
     srcs = glob(
         [
diff --git a/protobuf.bzl b/protobuf.bzl
index 3b52581..2199caf 100644
--- a/protobuf.bzl
+++ b/protobuf.bzl
@@ -160,7 +160,7 @@
       **kargs)
 
 
-def copied_srcs(
+def internal_copied_filegroup(
         name,
         srcs,
         include,
@@ -168,8 +168,8 @@
   """Bazel rule to fix sources file to workaround with python path issues.
 
   Args:
-    name: the name of the copied_srcs rule, which will be the name of the
-        generated filegroup.
+    name: the name of the internal_copied_filegroup rule, which will be the
+        name of the generated filegroup.
     srcs: the source files to be copied.
     include: the expected import root of the source.
     **kargs: extra arguments that will be passed into the filegroup.
@@ -232,12 +232,12 @@
 
   if include != None:
     # Copy the output files to the desired location to make the import work.
-    copied_srcs_name=name + "_copied_srcs"
-    copied_srcs(
-        name=copied_srcs_name,
+    internal_copied_filegroup_name=name + "_internal_copied_filegroup"
+    internal_copied_filegroup(
+        name=internal_copied_filegroup_name,
         srcs=outs,
         include=include)
-    outs=[copied_srcs_name]
+    outs=[internal_copied_filegroup_name]
 
   native.py_library(
       name=name,