summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Remove the ipaddr module per discussion on python-devAmaury Forgeot d'Arc2009-06-231-0/+2
|
* Issue 6329: Fix iteration for memoryviews.Raymond Hettinger2009-06-231-0/+3
|
* Fix issue 5230 by having pydoc's safeimport check to see if the importR. David Murray2009-06-232-0/+5
| | | | | error was thrown from itself in order to decide if the module can't be found. Thanks to Lucas Prado Melo for collaborating on the fix and tests.
* Issue #6314: logging.basicConfig() performs extra checks on the "level" ↵Vinay Sajip2009-06-211-1/+4
| | | | argument.
* Issue #5450: Moved tests involving loading tk from Lib/test/test_tcl toGuilherme Polo2009-06-211-0/+5
| | | | | Lib/lib-tk/test/test_tkinter/test_loadtk in order to follow the behaviour of test_ttkguionly.
* Fixed #6164 AIX specific linker argument in Distutils unixcompilerTarek Ziadé2009-06-201-0/+3
|
* Issue #6274. Fixed a potential FD leak in subprocess.py.Facundo Batista2009-06-191-0/+2
|
* #6189: The subprocess.py module should be kept compatible with python 2.2Amaury Forgeot d'Arc2009-06-181-0/+2
| | | | | (On windows, you still have to change one line to use pywin32 instead of the _subprocess helper module)
* Fixed #6287: documentation for the license field in distutilsTarek Ziadé2009-06-161-0/+2
|
* don't mask encoding errors when decoding a string #6289Benjamin Peterson2009-06-161-0/+2
|
* Issue #6286: distutils upload command now uses urllib2Tarek Ziadé2009-06-151-0/+3
|
* Issue #6271: mmap tried to close invalid file handle (-1) when annonymous.Hirokazu Yamamoto2009-06-141-0/+3
| | | | (On Unix) Patch by STINNER Victor.
* when no module is given in a 'from' relative import, make ImportFrom.module NULLBenjamin Peterson2009-06-131-0/+3
|
* prevent import statements from assigning to NoneBenjamin Peterson2009-06-131-0/+2
|
* keep the slice.step field as NULL if no step expression is givenBenjamin Peterson2009-06-131-0/+3
|
* Issue #6215: backport the 3.1 io libAntoine Pitrou2009-06-121-0/+4
|
* Support AMD64 in msilib. Set Win64 on reglocator.Martin v. Löwis2009-06-121-0/+2
| | | | Fixes #6258.
* Issue #5262: Fixed bug in next roll over time computation in ↵Vinay Sajip2009-06-111-9/+12
| | | | TimedRotatingFileHandler.
* #6263 fixed syntax error in distutils.cygwinccompilerTarek Ziadé2009-06-111-0/+2
|
* Fixed #5201: now distutils.sysconfig.parse_makefile() understands '53264' in ↵Tarek Ziadé2009-06-111-0/+4
| | | | Makefiles
* This is a fix for Issue5809: you shouldn't specify both --enable-framework andRonald Oussoren2009-06-081-0/+3
| | | | --enable-shared
* Add Ezio.Georg Brandl2009-06-071-0/+3
|
* #5767: remove sgmlop support from xmlrpclib; the sgmlop parser does not do ↵Georg Brandl2009-06-041-0/+2
| | | | much validation and is no longer much faster than e.g. the cElementTree XMLParser.
* #4547: When debugging a very large function, it was not alwaysAmaury Forgeot d'Arc2009-06-011-0/+3
| | | | possible to update the lineno attribute of the current frame.
* Issue #6152: New option '-j'/'--multiprocess' for regrtest allows runningAntoine Pitrou2009-05-311-0/+3
| | | | regression tests in parallel, shortening the total runtime.
* Update ACKSAntoine Pitrou2009-05-301-0/+1
|
* Issue #5330: C functions called with keyword arguments were not reported byAntoine Pitrou2009-05-301-0/+3
| | | | the various profiling modules (profile, cProfile). Patch by Hagen Fürstenau.
* Add test discovery to unittest. Issue 6001.Michael Foord2009-05-291-0/+3
|
* Issue #4873: Fix resource leaks in error cases of pwd and grp.Martin v. Löwis2009-05-291-0/+2
|
* Fixed #6131: test_modulefinder leaked when run after test_distutilsTarek Ziadé2009-05-291-0/+3
|
* Issue 5982: Classmethod and staticmethod expose wrapped function with __func__.Raymond Hettinger2009-05-291-0/+3
|
* Deprecate contextlib.nested(). The with-statement now provides this ↵Raymond Hettinger2009-05-291-1/+2
| | | | functionality directly.
* Issue 5150: Add rstrip() option to IDLE's format menu.Raymond Hettinger2009-05-291-0/+3
|
* Fixed #6048: Distutils uses the tarfile module instead of the tar command nowTarek Ziadé2009-05-281-0/+2
|
* fix issue #6121 by stripping spaces from the argument in the 'help'R. David Murray2009-05-271-0/+3
| | | | function.
* Allow multiple context managers in one with statement, as proposedGeorg Brandl2009-05-251-0/+2
| | | | | | | in http://codereview.appspot.com/53094 and accepted by Guido. The construct is transformed into multiple With AST nodes so that there should be no problems with the semantics.
* add a SETUP_WITH opcodeBenjamin Peterson2009-05-251-0/+3
| | | | | It speeds up the with statement and correctly looks up the special methods involved.
* make class skipping decorators the same as skipping every test of the classBenjamin Peterson2009-05-251-0/+3
| | | | This removes ClassTestSuite and a good bit of hacks.
* Issue #3585: Add pkg-config support.Antoine Pitrou2009-05-243-0/+18
| | | | | It creates a python-2.7.pc file and a python.pc symlink in the $(LIBDIR)/pkgconfig directory. Patch by Clinton Roy.
* Issue #6050: Don't fail extracting a directory from a zipfile ifMartin v. Löwis2009-05-241-0/+3
| | | | the directory already exists.
* Issue #6065: Do not try to build a version-independentMartin v. Löwis2009-05-241-0/+3
| | | | | | installer if the package has extension modules. Also add NEWS entry for #5311.
* Issue #1309352: fcntl now converts its third arguments to a C `long` ratherAntoine Pitrou2009-05-241-0/+4
| | | | | than an int, which makes some operations possible under 64-bit Linux (e.g. DN_MULTISHOT with F_NOTIFY).
* Fixed Issue1424152, urllib2 fails with HTTPS over Proxy.Senthil Kumaran2009-05-241-0/+3
|
* reorder nameBenjamin Peterson2009-05-231-1/+1
|
* support building with subversion 1.7 #6094Benjamin Peterson2009-05-232-0/+3
|
* Issue #1983: Fix functions taking or returning a process identifier to useAntoine Pitrou2009-05-231-0/+4
| | | | | the dedicated C type `pid_t` instead of a C `int`. Some platforms have a process identifier type wider than the standard C integer type.
* Fix Issue #4066: smtplib.SMTP_SSL._get_socket now correctly returnsR. David Murray2009-05-232-0/+5
| | | | the socket. Patch by Farhan Ahmad, test by Marcin Bachry.
* Issue #5829: don't raise OverflowError for complex('1e500'). Backport of ↵Mark Dickinson2009-05-201-0/+4
| | | | r72803.
* fixed the 'package' option of build_extTarek Ziadé2009-05-191-0/+3
|
* Issue 6032: fix refleaks in test_urllib2_localnet.Collin Winter2009-05-181-1/+1
|