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

Skip to content

Commit ebe3e16

Browse files
committed
Merged revisions 55342-55406 via svnmerge from
svn+ssh://[email protected]/python/branches/p3yk ........ r55360 | guido.van.rossum | 2007-05-15 14:57:59 -0700 (Tue, 15 May 2007) | 2 lines obcheckin. ........ r55361 | guido.van.rossum | 2007-05-15 14:59:18 -0700 (Tue, 15 May 2007) | 2 lines Get rid of strop module. ........ r55367 | brett.cannon | 2007-05-15 21:06:28 -0700 (Tue, 15 May 2007) | 2 lines Remove the 'pure' module. ........ r55369 | brett.cannon | 2007-05-15 21:07:31 -0700 (Tue, 15 May 2007) | 2 lines Remove the lib-old directory (already empty). ........ r55370 | neal.norwitz | 2007-05-15 21:30:40 -0700 (Tue, 15 May 2007) | 1 line Get rid of a bunch more references to strop ........ r55374 | brett.cannon | 2007-05-15 21:39:00 -0700 (Tue, 15 May 2007) | 2 lines Complete the removal of IRIX-specific modules. ........ r55379 | brett.cannon | 2007-05-15 22:31:54 -0700 (Tue, 15 May 2007) | 2 lines Update removed IRIX modules based on what is gone from removing plat-irix6. ........ r55388 | brett.cannon | 2007-05-16 14:34:52 -0700 (Wed, 16 May 2007) | 2 lines Clean up the docstring for the compiler resource. ........ r55406 | brett.cannon | 2007-05-17 11:05:37 -0700 (Thu, 17 May 2007) | 2 lines Remove BaseException.message (deprecated in Python 2.6). ........
1 parent e35553e commit ebe3e16

50 files changed

Lines changed: 85 additions & 5861 deletions

Some content is hidden

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

Include/intobject.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,7 @@ PyAPI_FUNC(long) PyInt_GetMax(void);
4747
#define PyInt_AS_LONG(op) PyLong_AsLong(op)
4848

4949
/* These aren't really part of the Int object, but they're handy; the protos
50-
* are necessary for systems that need the magic of PyAPI_FUNC and that want
51-
* to have stropmodule as a dynamically loaded module instead of building it
52-
* into the main Python shared library/DLL. Guido thinks I'm weird for
53-
* building it this way. :-) [cjh]
50+
* are necessary for systems that need the magic of PyAPI_FUNC.
5451
*/
5552
PyAPI_FUNC(unsigned long) PyOS_strtoul(char *, char **, int);
5653
PyAPI_FUNC(long) PyOS_strtol(char *, char **, int);

Include/pyerrors.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,12 @@ typedef struct {
1010
PyObject_HEAD
1111
PyObject *dict;
1212
PyObject *args;
13-
PyObject *message;
1413
} PyBaseExceptionObject;
1514

1615
typedef struct {
1716
PyObject_HEAD
1817
PyObject *dict;
1918
PyObject *args;
20-
PyObject *message;
2119
PyObject *msg;
2220
PyObject *filename;
2321
PyObject *lineno;
@@ -30,7 +28,6 @@ typedef struct {
3028
PyObject_HEAD
3129
PyObject *dict;
3230
PyObject *args;
33-
PyObject *message;
3431
PyObject *encoding;
3532
PyObject *object;
3633
PyObject *start;
@@ -42,15 +39,13 @@ typedef struct {
4239
PyObject_HEAD
4340
PyObject *dict;
4441
PyObject *args;
45-
PyObject *message;
4642
PyObject *code;
4743
} PySystemExitObject;
4844

4945
typedef struct {
5046
PyObject_HEAD
5147
PyObject *dict;
5248
PyObject *args;
53-
PyObject *message;
5449
PyObject *myerrno;
5550
PyObject *strerror;
5651
PyObject *filename;
@@ -61,7 +56,6 @@ typedef struct {
6156
PyObject_HEAD
6257
PyObject *dict;
6358
PyObject *args;
64-
PyObject *message;
6559
PyObject *myerrno;
6660
PyObject *strerror;
6761
PyObject *filename;

Lib/plat-irix6/AL.py

Lines changed: 0 additions & 61 deletions
This file was deleted.

Lib/plat-irix6/CD.py

Lines changed: 0 additions & 34 deletions
This file was deleted.

Lib/plat-irix6/CL.py

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)