Tim Peters
4be47c0f76
Get rid of unused vars in builtin_unicode (they were causing
...
legit warnings).
2000-07-09 02:11:18 +00:00
Fred Drake
3cf4d2b3ea
ANSI-fication and Py_PROTO extermination.
2000-07-09 00:55:06 +00:00
Fred Drake
ea9cb5aebf
ANSI-fication and Py_PROTO extermination.
2000-07-09 00:20:36 +00:00
Fred Drake
5eb6d4e3bf
ANSI-fication and Py_PROTO extermination.
2000-07-08 23:37:28 +00:00
Fredrik Lundh
ff7df9d7b8
this one's a bit risky, but I've spent some considerable time
...
staring at the diffs before checking this one in. let me know
asap if it breaks things on your platform.
-- ANSI-fying
(patch #100763 by Peter Schneider-Kamp, minus the
indentation changes and minus the changes the broke
the windows build)
2000-07-08 22:48:53 +00:00
Fredrik Lundh
54cf3dc88c
-- ANSI-fying, names
...
(patch #100762 by Peter Schneider-Kamp, minus the
indentation changes)
-- added INT_PTR workaround to make it build under VC 5.0
2000-07-08 22:05:01 +00:00
Fredrik Lundh
c0348ac670
- removed barry's workaround, to make room for
...
bill's more complete solution.
2000-07-08 20:49:58 +00:00
Fredrik Lundh
89610a4d50
- _getdefaultlocale shouldn't accept arguments
...
- some more spacification...
2000-07-08 20:07:24 +00:00
Fredrik Lundh
8f017a01f8
- added _getdefaultlocale implementation for WIN32
...
- ansified, reindentified, spacified, nullified
2000-07-08 19:57:37 +00:00
Fredrik Lundh
ddbc11893f
- this is a tentative checkin of the #100764 patch (by
...
Barry Scott). it appears to solve the problem on NT
and 2000, but not on Windows 95.
in other words, it's better than before, but not per-
fect. I'll leave the patch open for now.
2000-07-08 18:06:41 +00:00
Fredrik Lundh
2a1e060619
- changed __repr__ to use "unicode escape" encoding for unicode
...
strings, instead of the default encoding.
(see "minidom" thread for discussion, and also patch #100706 )
2000-07-08 17:43:32 +00:00
Fred Drake
d5c84ede06
ANSI-fication of the sources -- remove Py_PROTO!
2000-07-08 17:25:55 +00:00
Fred Drake
146b28086f
Minor revisions similar to some information in the new docstrings.
2000-07-08 16:59:03 +00:00
Fred Drake
51b6bc55e3
ANSI-fication of the sources, convert to 4-space indents.
...
Use PyArg_ParseTuple() to get better error messages.
Add docstrings all around.
2000-07-08 16:56:26 +00:00
Skip Montanaro
4cbc9f7650
delete unused local variable from _PyTrash_deposit_object
2000-07-08 12:06:36 +00:00
Andrew M. Kuchling
35e8afb76e
Rearrange order of sections
...
Fix some incorrect module names
2000-07-08 12:06:31 +00:00
Skip Montanaro
4ca150bdb2
_Py_RefTotal should only be declared here when Py_TRACE_REFS are #define'd
2000-07-08 12:04:57 +00:00
Fred Drake
2c4a3dceaf
ANSI-fied sources, converted to four-space indentation.
...
Converted to PyArg_ParseTuple() with method names to get better error
messages.
2000-07-08 06:41:03 +00:00
Fred Drake
edabdc1e9e
ANSI-fied sources, converted to four-space indentation.
2000-07-08 06:16:37 +00:00
Fred Drake
da940d8f8d
Add method names to PyArg_ParseTuple() calls for better error messages.
...
Convert to four-space indents.
2000-07-08 06:05:58 +00:00
Fred Drake
5443c49fbb
Markup improvements in sections relating to interactive behavior.
...
Clarify some of the details of readline-related configuration.
2000-07-08 05:18:54 +00:00
Fred Drake
e3a41c653a
ANSI-fy the sources.
...
Convert to using PyArg_ParseTuple() as appropriate to allow method names
in error messages.
Re-indent to four-space indentation.
2000-07-08 05:00:07 +00:00
Fred Drake
0c89d4ec9a
Pretensions of the 20th century... remove old-style preprocessor
...
hackery (/**/), leaving only new-style preprocessor hackery (##).
2000-07-08 04:53:48 +00:00
Tim Peters
7d3a511a40
Cray J90 fixes for long ints.
...
This was a convenient excuse to create the pyport.h file recently
discussed!
Please use new Py_ARITHMETIC_RIGHT_SHIFT when right-shifting a
signed int and you *need* sign-extension. This is #define'd in
pyport.h, keying off new config symbol SIGNED_RIGHT_SHIFT_ZERO_FILLS.
If you're running on a platform that needs that symbol #define'd,
the std tests never would have worked for you (in particular,
at least test_long would have failed).
The autoconfig stuff got added to Python after my Unix days, so
I don't know how that works. Would someone please look into doing
& testing an auto-config of the SIGNED_RIGHT_SHIFT_ZERO_FILLS
symbol? It needs to be defined if & only if, e.g., (-1) >> 3 is
not -1.
2000-07-08 04:17:21 +00:00
Fred Drake
5639ba4896
ANSI-fy the sources.
2000-07-08 04:12:08 +00:00
Fred Drake
509d79adaf
Removed Py_PROTO, ANSI-fied sources.
2000-07-08 04:04:38 +00:00
Tim Peters
43f04a36cf
The tail end of x_sub implicitly assumed that an unsigned short
...
contains 16 bits. Not true on Cray J90.
2000-07-08 02:26:47 +00:00
Greg Stein
a90b23c571
One of the new prototypes was missing the "void" args.
2000-07-08 00:46:19 +00:00
Tim Peters
9ace6bc7ef
Got RID of redundant coercions in longobject.c (as spotted by Greg
...
Stein -- thanks!). Incidentally removed all the Py_PROTO macros
from object.h, as they prevented my editor from magically finding
the definitions of the "coercion", "cmpfunc" and "reprfunc"
typedefs that were being redundantly applied in longobject.c.
2000-07-08 00:32:04 +00:00
Guido van Rossum
74b2677593
delete bogus file
2000-07-07 21:57:20 +00:00
Guido van Rossum
480fa7319d
Deleted bogus file.
2000-07-07 21:35:04 +00:00
Jeremy Hylton
2ea17faf4b
fix inconsistent use of tabs and spaces
...
convert semicolons to newlines
2000-07-07 21:02:22 +00:00
Jeremy Hylton
04f39aa859
fix inconsistent use of tabs and spaces
2000-07-07 21:02:00 +00:00
Jeremy Hylton
65d6edb478
fix inconsistent use of tabs and spaces
2000-07-07 20:45:21 +00:00
Marc-André Lemburg
bc30b11764
Fix to use Py_UCS4. By Bill Tutt.
2000-07-07 17:53:54 +00:00
Marc-André Lemburg
e12896ec98
New surrogate support in the UTF-8 codec. By Bill Tutt.
2000-07-07 17:51:08 +00:00
Marc-André Lemburg
d6d06ade26
Tests for new surrogate support in the UTF-8 codec. By Bill Tutt.
2000-07-07 17:48:52 +00:00
Marc-André Lemburg
fa1309fd72
Fix to use Py_UCS4
2000-07-07 17:45:37 +00:00
Fred Drake
c826ecbf8f
Add an entry for the KDE File Manager support from Peter Funk.
2000-07-07 17:08:40 +00:00
Fred Drake
e55d5446ea
Thomas Wouters <thomas@xs4all.net>:
...
Allow -f* parameters to be passed to the compiler from Setup files.
2000-07-07 16:21:31 +00:00
Tim Peters
9f688bf9d2
Some cleanup of longs in prepartion for Cray J90 fixes: got
...
rid of Py_PROTO, switched to ANSI function decls, and did some
minor fiddling.
2000-07-07 15:53:28 +00:00
Marc-André Lemburg
4707320566
Added new APIs and fixed some other Unicode ones (missing * or
...
extra ' ').
2000-07-07 15:48:54 +00:00
Marc-André Lemburg
5a20b21fb1
Added docs for the new Unicode and string APIs.
2000-07-07 15:47:06 +00:00
Marc-André Lemburg
71f36983b9
Removed a prototype which is not used in socketmodule.c
...
Patch by T. Wouters.
2000-07-07 14:13:29 +00:00
Marc-André Lemburg
1b1bcc9935
Fixed unicode() to use the new API PyUnicode_FromEncodedObject().
...
This adds support for instance to the constructor (instances
have to define __str__ and can return Unicode objects via that
hook; string return values are decoded into Unicode using the
current default encoding).
2000-07-07 13:48:25 +00:00
Marc-André Lemburg
5a5c81a0e9
Added new API PyUnicode_FromEncodedObject() which supports decoding
...
objects including instance objects.
The old API PyUnicode_FromObject() is still available as shortcut.
2000-07-07 13:46:42 +00:00
Marc-André Lemburg
b6d78fcd9c
Tests for new instance support in unicode().
2000-07-07 13:46:19 +00:00
Jack Jansen
3d476d73a9
So many things have changed over the last few weeks that it's probably a good idea to check the project files in again.
2000-07-07 13:15:36 +00:00
Jack Jansen
0b13e7c153
Changed all (hopefully) uses of unsigned 16 bit value to use H format specifier, now that h is signed-only.
2000-07-07 13:09:35 +00:00
Jack Jansen
89d017d072
Added the unchash module.
2000-07-07 13:08:09 +00:00