Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
1bea7ab7
Commit
1bea7ab7
authored
Feb 05, 2000
by
Greg Ward
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added 'libraries' option for use by the 'build_lib' command.
Typo fix.
parent
5f7c18e8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
Lib/distutils/core.py
Lib/distutils/core.py
+2
-1
No files found.
Lib/distutils/core.py
View file @
1bea7ab7
...
@@ -188,6 +188,7 @@ class Distribution:
...
@@ -188,6 +188,7 @@ class Distribution:
self
.
packages
=
None
self
.
packages
=
None
self
.
package_dir
=
None
self
.
package_dir
=
None
self
.
py_modules
=
None
self
.
py_modules
=
None
self
.
libraries
=
None
self
.
ext_modules
=
None
self
.
ext_modules
=
None
self
.
ext_package
=
None
self
.
ext_package
=
None
self
.
include_dirs
=
None
self
.
include_dirs
=
None
...
@@ -314,7 +315,7 @@ class Distribution:
...
@@ -314,7 +315,7 @@ class Distribution:
# known options
# known options
if
not
(
hasattr
(
cmd_obj
,
'options'
)
and
if
not
(
hasattr
(
cmd_obj
,
'options'
)
and
type
(
cmd_obj
.
options
)
is
ListType
):
type
(
cmd_obj
.
options
)
is
ListType
):
raise
DistutilsClass
e
rror
,
\
raise
DistutilsClass
E
rror
,
\
(
"command class %s must provide an 'options' attribute "
+
(
"command class %s must provide an 'options' attribute "
+
"(a list of tuples)"
)
%
\
"(a list of tuples)"
)
%
\
cmd_obj
.
__class__
cmd_obj
.
__class__
...
...
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