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
cfd74c31
Commit
cfd74c31
authored
Jan 15, 2001
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Whitespace normalization.
parent
19bb056e
Changes
14
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
2839 additions
and
2841 deletions
+2839
-2841
Lib/netrc.py
Lib/netrc.py
+5
-6
Lib/nntplib.py
Lib/nntplib.py
+457
-457
Lib/ntpath.py
Lib/ntpath.py
+3
-3
Lib/nturl2path.py
Lib/nturl2path.py
+53
-53
Lib/os.py
Lib/os.py
+3
-3
Lib/pdb.py
Lib/pdb.py
+883
-883
Lib/pickle.py
Lib/pickle.py
+15
-15
Lib/pipes.py
Lib/pipes.py
+207
-207
Lib/poplib.py
Lib/poplib.py
+215
-215
Lib/posixfile.py
Lib/posixfile.py
+3
-3
Lib/posixpath.py
Lib/posixpath.py
+10
-10
Lib/pre.py
Lib/pre.py
+47
-47
Lib/profile.py
Lib/profile.py
+485
-485
Lib/pstats.py
Lib/pstats.py
+453
-454
No files found.
Lib/netrc.py
View file @
cfd74c31
...
...
@@ -89,4 +89,3 @@ class netrc:
if
__name__
==
'__main__'
:
print
netrc
()
Lib/nntplib.py
View file @
cfd74c31
...
...
@@ -34,7 +34,7 @@ import socket
import
string
# Exceptions raised when an error or invalid response is received
class
NNTPError
(
Exception
):
"""Base class for all nntplib exceptions"""
...
...
@@ -73,7 +73,7 @@ error_proto = NNTPProtocolError
error_data
=
NNTPDataError
# Standard port used by NNTP servers
NNTP_PORT
=
119
...
...
@@ -86,7 +86,7 @@ LONGRESP = ['100', '215', '220', '221', '222', '224', '230', '231', '282']
CRLF
=
'
\
r
\
n
'
# The class itself
class
NNTP
:
def
__init__
(
self
,
host
,
port
=
NNTP_PORT
,
user
=
None
,
password
=
None
,
...
...
Lib/ntpath.py
View file @
cfd74c31
Lib/nturl2path.py
View file @
cfd74c31
Lib/os.py
View file @
cfd74c31
Lib/pdb.py
View file @
cfd74c31
This diff is collapsed.
Click to expand it.
Lib/pickle.py
View file @
cfd74c31
Lib/pipes.py
View file @
cfd74c31
Lib/poplib.py
View file @
cfd74c31
Lib/posixfile.py
View file @
cfd74c31
Lib/posixpath.py
View file @
cfd74c31
Lib/pre.py
View file @
cfd74c31
Lib/profile.py
View file @
cfd74c31
Lib/pstats.py
View file @
cfd74c31
...
...
@@ -523,4 +523,3 @@ def count_calls(callers):
def
f8
(
x
):
return
string
.
rjust
(
fpformat
.
fix
(
x
,
3
),
8
)
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