Commit graph

41274 commits

Author SHA1 Message Date
Georg Brandl
2b0dd8e199 #4820: use correct module for ctypes.util. 2009-02-05 11:35:28 +00:00
Georg Brandl
253a29fa4d #4827: fix callback example. 2009-02-05 11:33:21 +00:00
Georg Brandl
4400d84bf7 #5015: document PythonHome API functions. 2009-02-05 11:32:18 +00:00
Georg Brandl
3ceebd2ca7 PyErr_PrintEx is also in 2.x... 2009-02-05 11:23:47 +00:00
Georg Brandl
b21c75beab #5059: fix example. 2009-02-05 10:59:28 +00:00
Georg Brandl
acc802b171 #5144: document that PySys_SetArgv prepends the script directory (or the empty string) to sys.path. 2009-02-05 10:37:07 +00:00
Georg Brandl
174fbe7742 #5153: fix typo in example. 2009-02-05 10:30:57 +00:00
Tarek Ziadé
97a69f0c10 Fix comment for #1835 2009-02-05 09:06:23 +00:00
Raymond Hettinger
aff711d32a Clarify that named tuples do not have to subclass tuple. 2009-02-04 19:25:17 +00:00
Raymond Hettinger
939a3cc5a2 Tweak the docs for Counter() objects. 2009-02-04 11:31:30 +00:00
Raymond Hettinger
8184f5a46c Doc fixes. Remove overbroad, redundant warnings. Fixup example code. 2009-02-04 11:14:18 +00:00
Raymond Hettinger
d507afdc81 Minor doc fixups. 2009-02-04 10:52:32 +00:00
Kristján Valur Jónsson
fd4c872726 issue 4804: Provide checks for the format string of strftime, and for the "mode" string of fopen on Windows. These strings are user provided from python and so we can avoid invoking the C runtime invalid parameter handler by first checking that they are valid. 2009-02-04 10:05:25 +00:00
Brett Cannon
8bdd3b3dcf Make importlib backwards-compatible to Python 2.2 (but this is not promised to
last; just doing it to be nice).

Also fix a message for an exception.
2009-02-03 21:13:05 +00:00
Thomas Heller
7757d7bb51 This refactoring should make it easier to add new calling conventions.
Replace ffi_call_STDCALL and ffi_call_SYSV by a ffi_call_x86 function
that cleans up the stack when FFI_SYSV is used, and does nothing for
FFI_STDCALL.

Remove libffi_msvc\win32.S, which is out of date and also unused; it
was only used for building ctypes with the MingW compiler.
2009-02-03 17:07:40 +00:00
Brett Cannon
1797b7dbbc Backport importlib to at least Python 2.5 by getting rid of use of str.format. 2009-02-03 05:08:22 +00:00
Brett Cannon
9db495b506 Ignore bytecode files in importlib. 2009-02-03 04:59:58 +00:00
Brett Cannon
94196532c1 Make importlib a package. This allows using svn:externals in the sandbox to
package up the code for separate distribution.
2009-02-03 04:58:29 +00:00
Raymond Hettinger
2c8585b0af Register decimals as numbers.Number 2009-02-03 03:37:03 +00:00
Raymond Hettinger
4a1b62a555 Record operator deprecations in docs. 2009-02-03 03:18:14 +00:00
Raymond Hettinger
d6fc2623c5 Validate that __length_hint__ returns a usable result. 2009-02-03 02:23:19 +00:00
Raymond Hettinger
b516370bcb Issue 1242657: list(obj) can swallow KeyboardInterrupt. 2009-02-02 21:50:13 +00:00
Guilherme Polo
d7bb4d484f NEWS entry for issue #1581476 2009-02-02 21:14:14 +00:00
Guilherme Polo
23fe2a867b Fix for issue #1581476 2009-02-02 21:08:32 +00:00
Guilherme Polo
b98cb43e4a Moving to importlib 2009-02-02 20:28:59 +00:00
Guilherme Polo
b64c989efc Restore the previous geometry before leaving the test 2009-02-02 20:23:29 +00:00
Martin v. Löwis
fee1c7f4c9 Issue #4494: Fix build with Py_NO_ENABLE_SHARED on Windows. 2009-02-02 14:23:16 +00:00
Hirokazu Yamamoto
e1e0a02648 Set native svn:eol-style property for text files. 2009-02-02 08:01:17 +00:00
Guilherme Polo
905c6b7f48 Use a single Tcl interpreter through all these tests, this may help some
failing buildbots.
2009-02-02 00:38:54 +00:00
Guilherme Polo
3b331dd3ea Restore Tkinter.Tk._loadtk so this test doesn't fail for problems
related to ttk.
2009-02-01 02:56:16 +00:00
Gregory P. Smith
86cc5029dc wording for for issue4903. 2009-02-01 00:24:21 +00:00
Gregory P. Smith
5501d65590 Update doc wording as suggested in issue4903. 2009-02-01 00:16:01 +00:00
Benjamin Peterson
12554cb224 more flags which only work for function blocks 2009-01-31 23:54:38 +00:00
Benjamin Peterson
da9327faf7 add explanatory comment 2009-01-31 23:43:25 +00:00
Gregory P. Smith
de1a8b720a - Issue #5104: The socket module now raises OverflowError when 16-bit port and
protocol numbers are supplied outside the allowed 0-65536 range on bind()
  and getservbyport().
2009-01-31 22:57:30 +00:00
David Goodger
a528dc507c markup fix 2009-01-31 22:53:46 +00:00
Benjamin Peterson
1c5d21d644 fix indentation in comment 2009-01-31 22:33:02 +00:00
Benjamin Peterson
be1399e39a fix indentation; looks like all I managed to do the first time is make things uglier 2009-01-31 22:03:19 +00:00
Benjamin Peterson
d17fec74e5 fix indentation 2009-01-31 21:47:42 +00:00
Benjamin Peterson
fb921e2c00 I believe the intention here was to avoid a global lookup 2009-01-31 21:00:10 +00:00
Benjamin Peterson
4829136965 fix indentation 2009-01-31 20:01:48 +00:00
Benjamin Peterson
0ef803ff0f PyErr_BadInternalCall() raises a SystemError, not TypeError #5112 2009-01-31 16:52:03 +00:00
Mark Dickinson
f709ab8526 Add an extra test for long <-> float hash equivalence. 2009-01-31 16:44:04 +00:00
Benjamin Peterson
857ce15791 completely detabify unicodeobject.c 2009-01-31 16:29:18 +00:00
Andrew M. Kuchling
8c2f85c43e Text edits and markup fixes 2009-01-31 03:26:02 +00:00
Andrew M. Kuchling
a17cd4a574 Add a section 2009-01-31 02:50:09 +00:00
Benjamin Peterson
1de05e9b2a check the errno in bad fd cases 2009-01-31 01:42:55 +00:00
Benjamin Peterson
b3619be995 make _tkinter._flatten check the result of PySequence_Size for errors #3880 2009-01-30 02:24:39 +00:00
Benjamin Peterson
4a69410e9f pep8tify conditionals 2009-01-30 02:02:25 +00:00
Tarek Ziadé
5da9a51d9d fixed test_make_distribution so it runs on any platform, as long as tar an gzip are available 2009-01-29 23:49:17 +00:00