Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #3612: Added new types to ctypes.wintypes. (CHAR and pointers) | Hirokazu Yamamoto | 2010-09-28 | 1 | -0/+2 |
| | |||||
* | Fix for issue #9568. | Ronald Oussoren | 2010-09-28 | 1 | -0/+2 |
| | |||||
* | Add support for the ZSH shell to the "Update Shell Profile" script | Ronald Oussoren | 2010-09-28 | 1 | -0/+4 |
| | | | | | | on MacOSX. Patch by Sylvain Mora, issue #9701. | ||||
* | Issue #9599: Tweak loghelper algorithm to return slightly improved results ↵ | Mark Dickinson | 2010-09-28 | 1 | -0/+3 |
| | | | | for powers of 2. | ||||
* | Since __import__ is not designed for general use, have its docstring point | Brett Cannon | 2010-09-27 | 1 | -0/+3 |
| | | | | | | people towards importlib.import_module(). Closes issue #7397. | ||||
* | Implement #8521. Added named argument handling to winreg's CreateKeyEx, | Brian Curtin | 2010-09-27 | 1 | -0/+3 |
| | | | | | | | | DeleteKeyEx, and OpenKeyEx. Note that CKE and DKE are new functions for 3.2 so I didn't give them a versionchanged because of the existing versionadded. OpenKeyEx already existed so it gets a versionchanged tag. | ||||
* | Issue #9950: Fix socket.sendall() crash or misbehaviour when a signal is | Antoine Pitrou | 2010-09-27 | 1 | -0/+5 |
| | | | | | | received. Now sendall() properly calls signal handlers if necessary, and retries sending if these returned successfully, including on sockets with a timeout. | ||||
* | Issue #9947: logging: Fixed locking bug in stopListening. | Vinay Sajip | 2010-09-25 | 1 | -0/+2 |
| | |||||
* | Issue #9945: logging: Fixed locking bugs in addHandler/removeHandler. | Vinay Sajip | 2010-09-25 | 1 | -0/+2 |
| | |||||
* | revert r85003, poorly considered; breaks tests | Benjamin Peterson | 2010-09-25 | 1 | -3/+0 |
| | |||||
* | don't count keyword arguments as positional #9943 | Benjamin Peterson | 2010-09-25 | 1 | -0/+3 |
| | |||||
* | Issue #9936: Fixed executable lines' search in the trace module. | Alexander Belopolsky | 2010-09-24 | 1 | -0/+2 |
| | |||||
* | Fix #9790: Rework the imports necessary for ntpath.samefile and | Brian Curtin | 2010-09-23 | 1 | -0/+3 |
| | | | | ntpath.sameopenfile. | ||||
* | Issue #9930: Remove an unnecessary type check in wrap_binaryfunc_r; | Mark Dickinson | 2010-09-23 | 1 | -0/+4 |
| | | | | | this was causing reversed method calls like float.__radd__(3.0, 1) to return NotImplemented instead of the expected numeric value. | ||||
* | #9808. Implement os.getlogin for Windows, completed by Jon Anglin. | Brian Curtin | 2010-09-23 | 1 | -0/+2 |
| | | | | | | | The test is semi-dumb, it just makes sure something comes back since we don't have a solid source to validate the returned login. We can't be 100% sure that the USERNAME env var will always match what os.getlogin() returns, so we don't make any specific assertion there. | ||||
* | Issue #9928: Properly initialize the types exported by the bz2 module. | Antoine Pitrou | 2010-09-23 | 1 | -0/+2 |
| | |||||
* | Issue #1675951: Allow GzipFile to work with unseekable file objects. | Antoine Pitrou | 2010-09-23 | 2 | -0/+4 |
| | | | | Patch by Florian Festi. | ||||
* | logging: added QueueListener and documentation. | Vinay Sajip | 2010-09-23 | 1 | -0/+3 |
| | |||||
* | Issue 9916: Add some missing errno symbols. | Barry Warsaw | 2010-09-22 | 1 | -2/+4 |
| | |||||
* | fix news | Benjamin Peterson | 2010-09-21 | 1 | -0/+8 |
| | |||||
* | Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows) | Hirokazu Yamamoto | 2010-09-21 | 1 | -0/+2 |
| | |||||
* | Issue #9908: Fix os.stat() on bytes paths under Windows 7. | Antoine Pitrou | 2010-09-21 | 1 | -0/+2 |
| | |||||
* | Issue #9899: Fix test_tkinter.test_font on various platforms. Patch by | Antoine Pitrou | 2010-09-21 | 1 | -0/+3 |
| | | | | Ned Deily. | ||||
* | Issue #2643: msync() is not called anymore when deallocating an open mmap | Antoine Pitrou | 2010-09-21 | 1 | -0/+3 |
| | | | | object, only munmap(). | ||||
* | Revert r84902 before committing better solution. | Hirokazu Yamamoto | 2010-09-21 | 1 | -2/+0 |
| | |||||
* | Issue #1633863: Don't ignore $CC under AIX. | Antoine Pitrou | 2010-09-21 | 1 | -0/+2 |
| | |||||
* | Add an entry for the concurrent.futures package | Brian Quinlan | 2010-09-21 | 1 | -0/+2 |
| | |||||
* | logging: Updated LoggerAdapter implementation. | Vinay Sajip | 2010-09-21 | 1 | -0/+3 |
| | |||||
* | Added some methods to LoggerAdapter, and updated documentation. | Vinay Sajip | 2010-09-21 | 1 | -0/+4 |
| | |||||
* | add column offset to all syntax errors | Benjamin Peterson | 2010-09-20 | 1 | -7/+2 |
| | |||||
* | add news note | Benjamin Peterson | 2010-09-20 | 1 | -0/+2 |
| | |||||
* | Issue #9901: Destroying the GIL in Py_Finalize() can fail if some other | Antoine Pitrou | 2010-09-20 | 1 | -0/+4 |
| | | | | | threads are still running. Instead, reinitialize the GIL on a second call to Py_Initialize(). | ||||
* | Issue 9877: expose sysconfig.get_makefile_filename() in the public API. | Barry Warsaw | 2010-09-20 | 1 | -0/+2 |
| | |||||
* | logging: hasHandlers additions documented. | Vinay Sajip | 2010-09-20 | 1 | -0/+2 |
| | |||||
* | PyImport_Import was using the old import hack of sticking a dummy value into | Brett Cannon | 2010-09-19 | 1 | -0/+3 |
| | | | | | | | fromlist to get __import__ to return the module desired. Now it uses the proper approach of fetching the module from sys.modules. Closes issue #9252. Thanks to Alexander Belopolsky for the bug report. | ||||
* | Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows) | Hirokazu Yamamoto | 2010-09-19 | 1 | -0/+2 |
| | |||||
* | Issue #1686: Fix string.Template when overriding the pattern attribute. | Florent Xicluna | 2010-09-18 | 1 | -0/+2 |
| | |||||
* | Issue #9854: SocketIO objects now observe the RawIOBase interface in | Antoine Pitrou | 2010-09-18 | 1 | -0/+4 |
| | | | | | non-blocking mode: they return None when an operation would block (instead of raising an exception). | ||||
* | Issue #9894: Do not hardcode ENOENT in test_subprocess. | Antoine Pitrou | 2010-09-18 | 1 | -0/+2 |
| | | | | (GNU/Hurd is not dead) | ||||
* | Issue #767645: Set os.path.supports_unicode_filenames to True in posixpath | Victor Stinner | 2010-09-17 | 1 | -2/+1 |
| | | | | Previous commit changed macpath but macpath is not used anymore as os.path | ||||
* | #1730136: Fix comparison between a tk Font object and an object of a ↵ | Amaury Forgeot d'Arc | 2010-09-17 | 1 | -0/+3 |
| | | | | different type. | ||||
* | Issue #9441: logging: Improved test coverage for rotating file handlers. | Vinay Sajip | 2010-09-17 | 1 | -0/+2 |
| | |||||
* | Issue 9865: add __sizeof__ to OrderedDict. | Raymond Hettinger | 2010-09-16 | 1 | -0/+2 |
| | |||||
* | Issue #9810: Compile bzip2 source files in python's project file | Hirokazu Yamamoto | 2010-09-16 | 1 | -0/+3 |
| | | | | directly. It used to be built with bzip2's makefile. | ||||
* | setup.py was trying to build _weakref which is redundant as it's a built-in | Brett Cannon | 2010-09-14 | 1 | -0/+3 |
| | | | | | | | module. Closes issue #9848. Thanks to Arfrever Frehtes Taifersar Arahesis for the bug report. | ||||
* | Issue #9854: The default read() implementation in io.RawIOBase now | Antoine Pitrou | 2010-09-14 | 1 | -0/+3 |
| | | | | handles non-blocking readinto() returning None correctly. | ||||
* | Issue #1552: socket.socketpair() now returns regular socket.socket | Antoine Pitrou | 2010-09-14 | 1 | -0/+4 |
| | | | | | objects supporting the whole socket API (rather than the "raw" _socket.socket objects). | ||||
* | Issue #9853: Fix the signature of SSLSocket.recvfrom() and | Antoine Pitrou | 2010-09-14 | 1 | -0/+3 |
| | | | | SSLSocket.sendto() to match the corresponding socket methods. | ||||
* | Issue 9840: Add reprlib.recursive_repr(), a decorator for handling ↵ | Raymond Hettinger | 2010-09-13 | 1 | -0/+3 |
| | | | | recursive calls to __repr__ methods. | ||||
* | Issue #9213: Add index and count methods to range objects, needed to | Daniel Stutzbach | 2010-09-13 | 1 | -0/+4 |
| | | | | meet the API of the collections.Sequence ABC. |