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
1be63af4
Commit
1be63af4
authored
Jun 28, 2006
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix end_fill().
parent
ecfec78b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Lib/lib-tk/turtle.py
Lib/lib-tk/turtle.py
+1
-1
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/lib-tk/turtle.py
View file @
1be63af4
...
...
@@ -721,7 +721,7 @@ def color(*args): _getpen().color(*args)
def
write
(
arg
,
move
=
0
):
_getpen
().
write
(
arg
,
move
)
def
fill
(
flag
):
_getpen
().
fill
(
flag
)
def
begin_fill
():
_getpen
().
begin_fill
()
def
end_fill
():
_getpen
.
end_fill
()
def
end_fill
():
_getpen
()
.
end_fill
()
def
circle
(
radius
,
extent
=
None
):
_getpen
().
circle
(
radius
,
extent
)
def
goto
(
*
args
):
_getpen
().
goto
(
*
args
)
def
heading
():
return
_getpen
().
heading
()
...
...
Misc/NEWS
View file @
1be63af4
...
...
@@ -19,6 +19,8 @@ Core and builtins
Library
-------
- Fix a bug in the turtle module'
s
end_fill
function
.
-
Bug
#
1510580
:
The
'warnings'
module
improperly
required
that
a
Warning
category
be
either
a
types
.
ClassType
and
a
subclass
of
Warning
.
The
proper
check
is
just
that
it
is
a
subclass
with
Warning
as
the
documentation
states
.
...
...
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