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
6f9b0102
Commit
6f9b0102
authored
Dec 17, 2015
by
Martin Panter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a couple of typos in code comments
parent
9920e293
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
Lib/test/string_tests.py
Lib/test/string_tests.py
+1
-1
Lib/test/test_zipfile64.py
Lib/test/test_zipfile64.py
+1
-1
Python/fileutils.c
Python/fileutils.c
+2
-2
No files found.
Lib/test/string_tests.py
View file @
6f9b0102
...
...
@@ -685,7 +685,7 @@ class BaseTest:
class
CommonTest
(
BaseTest
):
# This testcase contains test that can be used in all
# This testcase contains test
s
that can be used in all
# stringlike classes. Currently this is str, unicode
# UserString and the string module.
...
...
Lib/test/test_zipfile64.py
View file @
6f9b0102
...
...
@@ -3,7 +3,7 @@
# from test_zipfile
from
test
import
support
# XXX(nnorwitz): disable this test by looking for extra
largfile resource
# XXX(nnorwitz): disable this test by looking for extra
largefile resource,
# which doesn't exist. This test takes over 30 minutes to run in general
# and requires more disk space than most of the buildbots.
support
.
requires
(
...
...
Python/fileutils.c
View file @
6f9b0102
...
...
@@ -599,7 +599,7 @@ _Py_attribute_data_to_stat(BY_HANDLE_FILE_INFORMATION *info, ULONG reparse_tag,
On Windows, use GetFileType() and GetFileInformationByHandle() which support
files larger than 2 GB. fstat() may fail with EOVERFLOW on files larger
than 2 GB because the file size type is a
n
signed 32-bit integer: see issue
than 2 GB because the file size type is a signed 32-bit integer: see issue
#23152.
On Windows, set the last Windows error and return nonzero on error. On
...
...
@@ -669,7 +669,7 @@ _Py_fstat_noraise(int fd, struct _Py_stat_struct *status)
On Windows, use GetFileType() and GetFileInformationByHandle() which support
files larger than 2 GB. fstat() may fail with EOVERFLOW on files larger
than 2 GB because the file size type is a
n
signed 32-bit integer: see issue
than 2 GB because the file size type is a signed 32-bit integer: see issue
#23152.
Raise an exception and return -1 on error. On Windows, set the last Windows
...
...
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