summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* #5144: document that PySys_SetArgv prepends the script directory (or the ↵Georg Brandl2009-02-051-7/+11
| | | | empty string) to sys.path.
* #5153: fix typo in example.Georg Brandl2009-02-051-1/+1
|
* Fix comment for #1835Tarek Ziadé2009-02-051-6/+1
|
* Clarify that named tuples do not have to subclass tuple.Raymond Hettinger2009-02-041-1/+1
|
* Tweak the docs for Counter() objects.Raymond Hettinger2009-02-041-4/+4
|
* Doc fixes. Remove overbroad, redundant warnings. Fixup example code.Raymond Hettinger2009-02-041-27/+9
|
* Minor doc fixups.Raymond Hettinger2009-02-043-7/+10
|
* issue 4804: Provide checks for the format string of strftime, and for the ↵Kristján Valur Jónsson2009-02-043-2/+106
| | | | "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.
* Make importlib backwards-compatible to Python 2.2 (but this is not promised toBrett Cannon2009-02-031-3/+16
| | | | | | last; just doing it to be nice). Also fix a message for an exception.
* This refactoring should make it easier to add new calling conventions.Thomas Heller2009-02-033-400/+29
| | | | | | | | | 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.
* Backport importlib to at least Python 2.5 by getting rid of use of str.format.Brett Cannon2009-02-031-1/+1
|
* Ignore bytecode files in importlib.Brett Cannon2009-02-030-0/+0
|
* Make importlib a package. This allows using svn:externals in the sandbox toBrett Cannon2009-02-032-1/+1
| | | | package up the code for separate distribution.
* Register decimals as numbers.NumberRaymond Hettinger2009-02-032-0/+14
|
* Record operator deprecations in docs.Raymond Hettinger2009-02-031-23/+19
|
* Validate that __length_hint__ returns a usable result.Raymond Hettinger2009-02-032-1/+11
|
* Issue 1242657: list(obj) can swallow KeyboardInterrupt.Raymond Hettinger2009-02-027-15/+65
|
* NEWS entry for issue #1581476Guilherme Polo2009-02-021-0/+2
|
* Fix for issue #1581476Guilherme Polo2009-02-021-2/+1
|
* Moving to importlibGuilherme Polo2009-02-021-4/+3
|
* Restore the previous geometry before leaving the testGuilherme Polo2009-02-021-2/+3
|
* Issue #4494: Fix build with Py_NO_ENABLE_SHARED on Windows.Martin v. Löwis2009-02-022-0/+14
|
* Set native svn:eol-style property for text files.Hirokazu Yamamoto2009-02-020-0/+0
|
* Use a single Tcl interpreter through all these tests, this may help someGuilherme Polo2009-02-024-16/+34
| | | | failing buildbots.
* Restore Tkinter.Tk._loadtk so this test doesn't fail for problemsGuilherme Polo2009-02-011-1/+7
| | | | related to ttk.
* wording for for issue4903.Gregory P. Smith2009-02-011-7/+7
|
* Update doc wording as suggested in issue4903.Gregory P. Smith2009-02-011-3/+3
|
* more flags which only work for function blocksBenjamin Peterson2009-01-311-6/+4
|
* add explanatory commentBenjamin Peterson2009-01-311-0/+2
|
* - Issue #5104: The socket module now raises OverflowError when 16-bit port andGregory P. Smith2009-01-313-9/+61
| | | | | protocol numbers are supplied outside the allowed 0-65536 range on bind() and getservbyport().
* markup fixDavid Goodger2009-01-311-1/+1
|
* fix indentation in commentBenjamin Peterson2009-01-311-2/+2
|
* fix indentation; looks like all I managed to do the first time is make ↵Benjamin Peterson2009-01-311-2558/+2558
| | | | things uglier
* fix indentationBenjamin Peterson2009-01-311-2/+2
|
* I believe the intention here was to avoid a global lookupBenjamin Peterson2009-01-311-1/+1
|
* fix indentationBenjamin Peterson2009-01-311-23/+23
|
* PyErr_BadInternalCall() raises a SystemError, not TypeError #5112Benjamin Peterson2009-01-311-3/+4
|
* Add an extra test for long <-> float hash equivalence.Mark Dickinson2009-01-311-0/+1
|
* completely detabify unicodeobject.cBenjamin Peterson2009-01-311-3010/+3010
|
* Text edits and markup fixesAndrew M. Kuchling2009-01-311-60/+64
|
* Add a sectionAndrew M. Kuchling2009-01-311-0/+17
|
* check the errno in bad fd casesBenjamin Peterson2009-01-311-2/+8
|
* make _tkinter._flatten check the result of PySequence_Size for errors #3880Benjamin Peterson2009-01-302-2/+13
|
* pep8tify conditionalsBenjamin Peterson2009-01-301-29/+58
|
* fixed test_make_distribution so it runs on any platform, as long as tar an ↵Tarek Ziadé2009-01-291-9/+6
| | | | gzip are available
* Issue #2047: shutil.move() could believe that its destination path wasAntoine Pitrou2009-01-293-1/+33
| | | | | inside its source path if it began with the same letters (e.g. "src" vs. "src.new").
* Fix issue5075: bdist_wininst should not depend on the vc runtime?Mark Hammond2009-01-294-91/+92
|
* Fix typo.Raymond Hettinger2009-01-291-1/+1
|
* Update itertools.__doc__ to include all tools.Raymond Hettinger2009-01-291-5/+12
|
* fix download urlBenjamin Peterson2009-01-291-1/+1
|