Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 49857f8

Browse files
committed
Add updated .hgeol file and fix newlines in the 3.2 branch.
1 parent b2a39da commit 49857f8

59 files changed

Lines changed: 7109 additions & 7106 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.hgeol

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
[patterns]
2-
** = native
32

4-
**.bat = CRLF
5-
**.def = CRLF
6-
**.dsp = CRLF
7-
**.dsw = CRLF
8-
**.mak = CRLF
9-
**.mk = CRLF
10-
**.rc = CRLF
11-
**.sln = CRLF
12-
**.vcproj = CRLF
13-
**.vsprops = CRLF
3+
# Non human-editable files are binary
4+
5+
**.dsp = BIN
6+
**.dsw = BIN
7+
**.mk = BIN
8+
**.sln = BIN
9+
**.vcproj = BIN
10+
**.vsprops = BIN
1411

1512
**.aif = BIN
1613
**.au = BIN
@@ -31,6 +28,12 @@
3128

3229
Lib/email/test/data/msg_26.txt = BIN
3330
Lib/test/sndhdrdata/sndhdr.* = BIN
31+
Lib/test/decimaltestdata/*.decTest = BIN
32+
33+
# All other files (which presumably are human-editable) are "native".
34+
# This must be the last rule!
35+
36+
** = native
3437

3538
[repository]
36-
native = LF
39+
native = LF

Doc/make.bat

Lines changed: 59 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,59 @@
1-
@@echo off
2-
setlocal
3-
4-
set SVNROOT=http://svn.python.org/projects
5-
if "%PYTHON%" EQU "" set PYTHON=..\pcbuild\python
6-
if "%HTMLHELP%" EQU "" set HTMLHELP=%ProgramFiles%\HTML Help Workshop\hhc.exe
7-
if "%DISTVERSION%" EQU "" for /f "usebackq" %%v in (`%PYTHON% tools/sphinxext/patchlevel.py`) do set DISTVERSION=%%v
8-
9-
if "%1" EQU "" goto help
10-
if "%1" EQU "html" goto build
11-
if "%1" EQU "htmlhelp" goto build
12-
if "%1" EQU "latex" goto build
13-
if "%1" EQU "text" goto build
14-
if "%1" EQU "suspicious" goto build
15-
if "%1" EQU "linkcheck" goto build
16-
if "%1" EQU "changes" goto build
17-
if "%1" EQU "checkout" goto checkout
18-
if "%1" EQU "update" goto update
19-
20-
:help
21-
set this=%~n0
22-
echo HELP
23-
echo.
24-
echo %this% checkout
25-
echo %this% update
26-
echo %this% html
27-
echo %this% htmlhelp
28-
echo %this% latex
29-
echo %this% text
30-
echo %this% suspicious
31-
echo %this% linkcheck
32-
echo %this% changes
33-
echo.
34-
goto end
35-
36-
:checkout
37-
svn co %SVNROOT%/external/Sphinx-1.0.7/sphinx tools/sphinx
38-
svn co %SVNROOT%/external/docutils-0.6/docutils tools/docutils
39-
svn co %SVNROOT%/external/Jinja-2.3.1/jinja2 tools/jinja2
40-
svn co %SVNROOT%/external/Pygments-1.3.1/pygments tools/pygments
41-
goto end
42-
43-
:update
44-
svn update tools/sphinx
45-
svn update tools/docutils
46-
svn update tools/jinja2
47-
svn update tools/pygments
48-
goto end
49-
50-
:build
51-
if not exist build mkdir build
52-
if not exist build\%1 mkdir build\%1
53-
if not exist build\doctrees mkdir build\doctrees
54-
cmd /C %PYTHON% --version
55-
cmd /C %PYTHON% tools\sphinx-build.py -b%1 -dbuild\doctrees . build\%*
56-
if "%1" EQU "htmlhelp" "%HTMLHELP%" build\htmlhelp\python%DISTVERSION:.=%.hhp
57-
goto end
58-
59-
:end
1+
@@echo off
2+
setlocal
3+
4+
set SVNROOT=http://svn.python.org/projects
5+
if "%PYTHON%" EQU "" set PYTHON=..\pcbuild\python
6+
if "%HTMLHELP%" EQU "" set HTMLHELP=%ProgramFiles%\HTML Help Workshop\hhc.exe
7+
if "%DISTVERSION%" EQU "" for /f "usebackq" %%v in (`%PYTHON% tools/sphinxext/patchlevel.py`) do set DISTVERSION=%%v
8+
9+
if "%1" EQU "" goto help
10+
if "%1" EQU "html" goto build
11+
if "%1" EQU "htmlhelp" goto build
12+
if "%1" EQU "latex" goto build
13+
if "%1" EQU "text" goto build
14+
if "%1" EQU "suspicious" goto build
15+
if "%1" EQU "linkcheck" goto build
16+
if "%1" EQU "changes" goto build
17+
if "%1" EQU "checkout" goto checkout
18+
if "%1" EQU "update" goto update
19+
20+
:help
21+
set this=%~n0
22+
echo HELP
23+
echo.
24+
echo %this% checkout
25+
echo %this% update
26+
echo %this% html
27+
echo %this% htmlhelp
28+
echo %this% latex
29+
echo %this% text
30+
echo %this% suspicious
31+
echo %this% linkcheck
32+
echo %this% changes
33+
echo.
34+
goto end
35+
36+
:checkout
37+
svn co %SVNROOT%/external/Sphinx-1.0.7/sphinx tools/sphinx
38+
svn co %SVNROOT%/external/docutils-0.6/docutils tools/docutils
39+
svn co %SVNROOT%/external/Jinja-2.3.1/jinja2 tools/jinja2
40+
svn co %SVNROOT%/external/Pygments-1.3.1/pygments tools/pygments
41+
goto end
42+
43+
:update
44+
svn update tools/sphinx
45+
svn update tools/docutils
46+
svn update tools/jinja2
47+
svn update tools/pygments
48+
goto end
49+
50+
:build
51+
if not exist build mkdir build
52+
if not exist build\%1 mkdir build\%1
53+
if not exist build\doctrees mkdir build\doctrees
54+
cmd /C %PYTHON% --version
55+
cmd /C %PYTHON% tools\sphinx-build.py -b%1 -dbuild\doctrees . build\%*
56+
if "%1" EQU "htmlhelp" "%HTMLHELP%" build\htmlhelp\python%DISTVERSION:.=%.hhp
57+
goto end
58+
59+
:end

Lib/email/test/data/msg_26.txt

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
1-
Received: from xcar [192.168.0.2] by jeeves.wooster.local
2-
(SMTPD32-7.07 EVAL) id AFF92F0214; Sun, 12 May 2002 08:55:37 +0100
3-
Date: Sun, 12 May 2002 08:56:15 +0100
4-
From: Father Time <[email protected]>
5-
6-
Subject: IMAP file test
7-
Message-ID: <[email protected]>
8-
X-Organization: Home
9-
User-Agent: Messenger-Pro/2.50a (MsgServe/1.50) (RISC-OS/4.02) POPstar/2.03
10-
MIME-Version: 1.0
11-
Content-Type: multipart/mixed; boundary="1618492860--2051301190--113853680"
12-
Status: R
13-
X-UIDL: 319998302
14-
15-
This message is in MIME format which your mailer apparently does not support.
16-
You either require a newer version of your software which supports MIME, or
17-
a separate MIME decoding utility. Alternatively, ask the sender of this
18-
message to resend it in a different format.
19-
20-
--1618492860--2051301190--113853680
21-
Content-Type: text/plain; charset=us-ascii
22-
23-
Simple email with attachment.
24-
25-
26-
--1618492860--2051301190--113853680
27-
Content-Type: application/riscos; name="clock.bmp,69c"; type=BMP;
28-
load=&fff69c4b; exec=&355dd4d1; access=&03
29-
Content-Disposition: attachment; filename="clock.bmp"
30-
Content-Transfer-Encoding: base64
31-
32-
Qk12AgAAAAAAAHYAAAAoAAAAIAAAACAAAAABAAQAAAAAAAAAAADXDQAA1w0AAAAAAAAA
33-
AAAAAAAAAAAAiAAAiAAAAIiIAIgAAACIAIgAiIgAALu7uwCIiIgAERHdACLuIgAz//8A
34-
zAAAAN0R3QDu7iIA////AAAAAAAAAAAAAAAAAAAAAAAAAAi3AAAAAAAAADeAAAAAAAAA
35-
C3ADMzMzMANwAAAAAAAAAAAHMAAAAANwAAAAAAAAAACAMAd3zPfwAwgAAAAAAAAIAwd/
36-
f8x/f3AwgAAAAAAAgDB0x/f3//zPAwgAAAAAAAcHfM9////8z/AwAAAAAAiwd/f3////
37-
////A4AAAAAAcEx/f///////zAMAAAAAiwfM9////3///8zwOAAAAAcHf3////B/////
38-
8DAAAAALB/f3///wd3d3//AwAAAABwTPf//wCQAAD/zAMAAAAAsEx/f///B////8wDAA
39-
AAAHB39////wf/////AwAAAACwf39///8H/////wMAAAAIcHfM9///B////M8DgAAAAA
40-
sHTH///wf///xAMAAAAACHB3f3//8H////cDgAAAAAALB3zH//D//M9wMAAAAAAAgLB0
41-
z39///xHAwgAAAAAAAgLB3d3RHd3cDCAAAAAAAAAgLAHd0R3cAMIAAAAAAAAgAgLcAAA
42-
AAMwgAgAAAAACDAAAAu7t7cwAAgDgAAAAABzcIAAAAAAAAgDMwAAAAAAN7uwgAAAAAgH
43-
MzMAAAAACH97tzAAAAALu3c3gAAAAAAL+7tzDABAu7f7cAAAAAAACA+3MA7EQAv/sIAA
44-
AAAAAAAIAAAAAAAAAIAAAAAA
45-
46-
--1618492860--2051301190--113853680--
1+
Received: from xcar [192.168.0.2] by jeeves.wooster.local
2+
(SMTPD32-7.07 EVAL) id AFF92F0214; Sun, 12 May 2002 08:55:37 +0100
3+
Date: Sun, 12 May 2002 08:56:15 +0100
4+
From: Father Time <[email protected]>
5+
6+
Subject: IMAP file test
7+
Message-ID: <[email protected]>
8+
X-Organization: Home
9+
User-Agent: Messenger-Pro/2.50a (MsgServe/1.50) (RISC-OS/4.02) POPstar/2.03
10+
MIME-Version: 1.0
11+
Content-Type: multipart/mixed; boundary="1618492860--2051301190--113853680"
12+
Status: R
13+
X-UIDL: 319998302
14+
15+
This message is in MIME format which your mailer apparently does not support.
16+
You either require a newer version of your software which supports MIME, or
17+
a separate MIME decoding utility. Alternatively, ask the sender of this
18+
message to resend it in a different format.
19+
20+
--1618492860--2051301190--113853680
21+
Content-Type: text/plain; charset=us-ascii
22+
23+
Simple email with attachment.
24+
25+
26+
--1618492860--2051301190--113853680
27+
Content-Type: application/riscos; name="clock.bmp,69c"; type=BMP;
28+
load=&fff69c4b; exec=&355dd4d1; access=&03
29+
Content-Disposition: attachment; filename="clock.bmp"
30+
Content-Transfer-Encoding: base64
31+
32+
Qk12AgAAAAAAAHYAAAAoAAAAIAAAACAAAAABAAQAAAAAAAAAAADXDQAA1w0AAAAAAAAA
33+
AAAAAAAAAAAAiAAAiAAAAIiIAIgAAACIAIgAiIgAALu7uwCIiIgAERHdACLuIgAz//8A
34+
zAAAAN0R3QDu7iIA////AAAAAAAAAAAAAAAAAAAAAAAAAAi3AAAAAAAAADeAAAAAAAAA
35+
C3ADMzMzMANwAAAAAAAAAAAHMAAAAANwAAAAAAAAAACAMAd3zPfwAwgAAAAAAAAIAwd/
36+
f8x/f3AwgAAAAAAAgDB0x/f3//zPAwgAAAAAAAcHfM9////8z/AwAAAAAAiwd/f3////
37+
////A4AAAAAAcEx/f///////zAMAAAAAiwfM9////3///8zwOAAAAAcHf3////B/////
38+
8DAAAAALB/f3///wd3d3//AwAAAABwTPf//wCQAAD/zAMAAAAAsEx/f///B////8wDAA
39+
AAAHB39////wf/////AwAAAACwf39///8H/////wMAAAAIcHfM9///B////M8DgAAAAA
40+
sHTH///wf///xAMAAAAACHB3f3//8H////cDgAAAAAALB3zH//D//M9wMAAAAAAAgLB0
41+
z39///xHAwgAAAAAAAgLB3d3RHd3cDCAAAAAAAAAgLAHd0R3cAMIAAAAAAAAgAgLcAAA
42+
AAMwgAgAAAAACDAAAAu7t7cwAAgDgAAAAABzcIAAAAAAAAgDMwAAAAAAN7uwgAAAAAgH
43+
MzMAAAAACH97tzAAAAALu3c3gAAAAAAL+7tzDABAu7f7cAAAAAAACA+3MA7EQAv/sIAA
44+
AAAAAAAIAAAAAAAAAIAAAAAA
45+
46+
--1618492860--2051301190--113853680--

0 commit comments

Comments
 (0)