Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
7580a892
Commit
7580a892
authored
Aug 12, 2014
by
jieluo@google.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add shared_pr.h
parent
bde4a325
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
9 deletions
+10
-9
ez_setup.py
python/ez_setup.py
+0
-1
setup.py
python/setup.py
+10
-8
shared_ptr.h
src/google/protobuf/stubs/shared_ptr.h
+0
-0
No files found.
python/ez_setup.py
View file @
7580a892
...
...
@@ -103,7 +103,6 @@ def use_setuptools(
sys
.
path
.
insert
(
0
,
egg
)
import
setuptools
;
setuptools
.
bootstrap_install_from
=
egg
try
:
return
do_download
()
import
pkg_resources
except
ImportError
:
return
do_download
()
...
...
python/setup.py
View file @
7580a892
...
...
@@ -8,14 +8,17 @@ import subprocess
# We must use setuptools, not distutils, because we need to use the
# namespace_packages option for the "google" package.
try
:
from
ez_setup
import
use_setuptools
use_setuptools
()
from
setuptools
import
setup
,
Extension
,
__version__
from
setuptools
import
setup
,
Extension
except
ImportError
:
sys
.
stderr
.
write
(
"Could not import setuptools; make sure you have setuptools or "
"ez_setup installed.
\n
"
)
raise
try
:
from
ez_setup
import
use_setuptools
use_setuptools
()
from
setuptools
import
setup
,
Extension
except
ImportError
:
sys
.
stderr
.
write
(
"Could not import setuptools; make sure you have setuptools or "
"ez_setup installed.
\n
"
)
raise
from
distutils.command.clean
import
clean
as
_clean
from
distutils.command.build_py
import
build_py
as
_build_py
from
distutils.spawn
import
find_executable
...
...
@@ -118,7 +121,6 @@ class build_py(_build_py):
if
__name__
==
'__main__'
:
print
(
__version__
)
# C++ implementation extension
nocpp
=
'--nocpp_implementation'
if
nocpp
in
sys
.
argv
:
...
...
src/google/protobuf/stubs/shared_ptr.h
0 → 100644
View file @
7580a892
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment