Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
e6376f8 test_main_invalid_unicode() of test_sys: print string as ascii There are buildbot failures on "x86 FreeBSD 3.x" and "sparc solaris10 gcc 3.x". I suppose that _Py_char2wchar() doesn't fail even if the locale encoding is unable to decode the byte string, because _Py_char2wchar() has a special mode for platform without mbrtowc() (ISO C99) function. Let's check my theory by avoid error on the Python print() instruction. 20 August 2010, 11:08:18 UTC
89d8f82 Issue #7077: Fixed bug in previous fix. 20 August 2010, 08:43:22 UTC
0ceb671 Remove long-redundant plat-win from sys.path on Windows 20 August 2010, 08:31:26 UTC
467d12f Issue #7077: Fixed SysLogHandler implementation of Unicode handling. 19 August 2010, 22:20:22 UTC
12844e6 Add tests for r84209 (crashes in the Ast builder) Also remove one tab, and move a check closer to the possible failure. 19 August 2010, 21:32:38 UTC
8101021 Issue #9606: Updated documentation for Filter objects. 19 August 2010, 19:17:41 UTC
67a62a4 Fix Issue9639 - reset the retry count on successful auth. 19 August 2010, 17:50:31 UTC
92dc80a Check the return values for all functions returning an ast node. Failure to do it may result in strange error messages or even crashes, in admittedly convoluted cases that are normally syntax errors, like: def f(*xx, __debug__): pass 19 August 2010, 17:43:15 UTC
5c1808a test_pep277: display the filename as ascii on failure 19 August 2010, 17:35:00 UTC
114b724 Skip test_encodings() of test_os on Windows and Mac OS X 19 August 2010, 17:22:57 UTC
515ca20 test_main_invalid_unicode() of test_sys displays stderr on failure 19 August 2010, 17:18:12 UTC
38430e2 Fix os.get_exec_path() (code and tests) for python -bb Catch BytesWarning exceptions. 19 August 2010, 17:10:18 UTC
9802b39 PYTHONFSENCODING is not available on Windows or Mac OS X 19 August 2010, 11:36:43 UTC
9943524 Ooops, finish test_sys fix: use expected variable 19 August 2010, 11:30:09 UTC
85ca2af Fix test_sys about fs encoding for Windows and Mac OS X * Check fs encoding value on Windows * Ignore LANG= test on Windows and Mac OS X (fs encoding is hardcoded on these platforms) 19 August 2010, 11:23:47 UTC
70f88c5 Fix test_os: workaround #8611 bug 19 August 2010, 11:17:12 UTC
5ea823c Decode NIS data to fs encoding, using the surrogate error handler. 19 August 2010, 09:11:51 UTC
f241afa Fix Issue9638 - remove dead code from py3k imaplib 19 August 2010, 07:02:20 UTC
e8d5145 Create os.fsdecode(): decode from the filesystem encoding with surrogateescape error handler, or strict error handler on Windows. * Rewrite os.fsencode() documentation * Improve os.fsencode and os.fsdecode() tests using the new PYTHONFSENCODING environment variable 19 August 2010, 01:05:19 UTC
dbe6042 what's new 3.2: use :mod: 18 August 2010, 23:41:33 UTC
c732e3b test_sys: move tests at the right place filesystem encoding is not related to sys.sizeof() 18 August 2010, 22:44:15 UTC
358b63a Fix typo 18 August 2010, 22:35:23 UTC
4ea04a3 #7647: add ST_RDONLY, ST_NOSUID constants to os module. (Also fix a name ordering in the ACKS file.) 18 August 2010, 22:30:34 UTC
0fc86b8 Fix indentation level 18 August 2010, 22:29:54 UTC
3119ed7 Fix PyUnicode_EncodeFSDefault() indentation 18 August 2010, 22:26:50 UTC
398356b Improve error message if the command is not decodable 18 August 2010, 22:23:22 UTC
7e44b6b Add more tests to unicodedata with large code points (the other functions where not affected by the recent change) 18 August 2010, 22:07:15 UTC
d5f2b54 Fix reindent-rst.py: it works on binary files 18 August 2010, 21:59:12 UTC
94908bb Issue #8622: Add PYTHONFSENCODING environment variable to override the filesystem encoding. initfsencoding() displays also a better error message if get_codeset() failed. 18 August 2010, 21:23:25 UTC
56ab01b Fix stupid typo in test. 18 August 2010, 21:12:52 UTC
74a833f Decompose TESTFN_UNICODE on Mac OS X 18 August 2010, 21:06:23 UTC
b85e165 Issue #5737: Add Solaris-specific mnemonics in the errno module. Patch by Matthew Ahrens. 18 August 2010, 21:05:19 UTC
324ac65 #5127: Even on narrow unicode builds, the C functions that access the Unicode Database (Py_UNICODE_TOLOWER, Py_UNICODE_ISDECIMAL, and others) now accept and return characters from the full Unicode range (Py_UCS4). The differences from Python code are few: - unicodedata.numeric(), unicodedata.decimal() and unicodedata.digit() now return the correct value for large code points - repr() may consider more characters as printable. 18 August 2010, 20:44:58 UTC
36e778e Issue #9433: The "-j" option to regrtest now works under Windows too. It is not sure it will be beneficial, though, since process launching is more expensive under Windows than it is under Linux. 18 August 2010, 20:44:14 UTC
7ff5913 Fix Issue672656 - Securing pydoc server. 18 August 2010, 19:32:21 UTC
dfaf9ec Restore GIL in nis_cat in case of error. 18 August 2010, 16:12:23 UTC
c14190d Add versionadded tag to PyModule_GetFilenameObject() doc 18 August 2010, 10:57:33 UTC
d91df1a Improve PEP 383 tests (in test_os) * Use the current filesystem encoding instead of always using utf-8 * Enable the test on Mac OS X * Use TESTFN_UNENCODABLE and TESTFN_UNICODE instead of arbitrary filenames * To decode a filename, use strict error handler instead surrogateescape for mbcs encoding (on Windows) * Use TESTFN_UNENCODABLE (if available) for the directory name Skip the test if no non-ascii filename can be created. 18 August 2010, 10:56:19 UTC
6c00c14 Issue #9425: Create PyModule_GetFilenameObject() function ... to get the filename as a unicode object, instead of a byte string. Function needed to support unencodable filenames. Deprecate PyModule_GetFilename() in favor on the new function. 17 August 2010, 23:37:11 UTC
6951157 Correct library name that Ask will work on. 17 August 2010, 23:16:51 UTC
382d917 Add Ask Solem. 17 August 2010, 22:58:42 UTC
6b06da5 Remove unused functions _PyImport_FindModule and _PyImport_IsScript 17 August 2010, 22:54:21 UTC
0e5a41b libpython.py: py-bt commands escape unencodable characters Encode unicode strings to the terminal encoding with backslashreplace error (as Python does for sys.stderr) before writing them to sys.stdout. It fixes UnicodeEncodeError on writing non-ascii characters in an ascii terminal (C locale: ASCII encoding). 17 August 2010, 22:49:25 UTC
6961bd6 Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx(). 17 August 2010, 22:26:51 UTC
6009ece Replace :func: by :cfunc: To get links to the C functions 17 August 2010, 22:01:02 UTC
f5be090 Fix example 17 August 2010, 21:24:05 UTC
cdfe1c5 Add versionadded tags 17 August 2010, 21:15:00 UTC
bf1a018 Modernize gzip examples 17 August 2010, 21:11:49 UTC
79c5ef1 Issue #3488: Provide convenient shorthand functions `gzip.compress` and `gzip.decompress`. Original patch by Anand B. Pillai. 17 August 2010, 21:10:05 UTC
852823d Cleanup and correct a few ints to be Py_ssize_t. 17 August 2010, 20:49:09 UTC
abb3351 Properly downcast from size_t/Py_ssize_t in a few places. 17 August 2010, 20:08:40 UTC
19467d2 Clean some 64-bit issues. Also, always spell "ssize_t" "Py_ssize_t". 17 August 2010, 19:33:30 UTC
3fccfcb Minor rewording to docs for the lru_cache decorator 17 August 2010, 19:19:29 UTC
554f334 Fix <deque iterator>.__length_hint__() under 64-bit Windows. 17 August 2010, 18:30:06 UTC
671b4d9 Issue #9612: The set object is now 64-bit clean under Windows. 17 August 2010, 17:55:07 UTC
7ac98ae wrap 17 August 2010, 17:52:02 UTC
42382fe fix issue #8807: adds a context parameter to POP3_SSL class. 17 August 2010, 16:09:53 UTC
ccfb91c fix issue #8866: parameters passed to socket.getaddrinfo can now be specified as single keyword arguments. 17 August 2010, 15:30:23 UTC
67b21b7 Consistency check for versionadded/changed directives. 17 August 2010, 15:07:14 UTC
9e25701 Markup nits. 17 August 2010, 14:11:59 UTC
d26c18a Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the module to execute. Also updates all the cmd_line_script tests to validate the setting of sys.path[0] and the current working directory 17 August 2010, 13:06:11 UTC
46e6380 Another attempt at pacifying the windows buildbots by ignoring all the variable information in the dis.code_info tests 17 August 2010, 11:28:07 UTC
09c8123 Address XXX comment in dis.py: inspect.py now attempts to reuse the dis.py compiler flag values before resorting to defining its own 17 August 2010, 10:18:16 UTC
77203ad Ignore the exact ID value for the nested function in the dis.code_info tests 17 August 2010, 09:25:57 UTC
fc8b205 Correct a couple of assert* methods. Patch by Dave Malcolm. 17 August 2010, 08:35:41 UTC
eae2da1 Issue 9147: Add dis.code_info() 17 August 2010, 08:03:36 UTC
9887683 Document and test the resolution of issue 3445 (tolerate missing attributes in functools.update_wrapper, previously implemented as a side effect of the __annotations__ copying patch) and implement issue 9567 (add a __wrapped__ attribute when using update_wrapper) 17 August 2010, 06:17:18 UTC
632a0c1 Remove some lingering remnants of the short-lived functools.lfu_cache 17 August 2010, 05:22:50 UTC
ad1e0c5 added versionadded 17 August 2010, 03:37:20 UTC
052a02b add tests for mknod() and mkfifo() #9569 17 August 2010, 01:27:09 UTC
82c4885 remove test for oldstyle classes 17 August 2010, 01:08:46 UTC
83cd3b9 use assertTrue/assertFalse 17 August 2010, 01:07:53 UTC
45c257f add support for abstract class and static methods #5867 17 August 2010, 00:52:52 UTC
36e7911 test_zipimport: fix test name 17 August 2010, 00:44:11 UTC
4a3733d Issue #9425: save/restore exception on filename encoding _PyUnicode_AsString() raises an exception on unencodable filename. 17 August 2010, 00:39:57 UTC
028dd97 Issue #9425: zipimporter_repr() uses unicode 17 August 2010, 00:04:48 UTC
60fe8d9 Issue #9425: get_data() uses an unicode path 16 August 2010, 23:48:11 UTC
844807e r82659 reintroduced some tab characters. Untabify again. 16 August 2010, 22:16:51 UTC
f2b69df Fix compilation warning on Windows 16 August 2010, 22:11:29 UTC
ef8d95c Issue #9425: Create Py_UNICODE_strncmp() function The code is based on strncmp() of the libiberty library, function in the public domain. 16 August 2010, 22:03:11 UTC
405038a Mark myself as assignable for winreg, and put myself down for Windows. 16 August 2010, 20:50:03 UTC
977a684 Issue #8983: Corrected docstrings. 16 August 2010, 20:17:07 UTC
4a339ad Add Tim Golden as interested in Windows 16 August 2010, 20:10:39 UTC
c9c29e2 I get it wrong in r84097: s/relative/absolute/ 16 August 2010, 19:03:05 UTC
e29e6bf Issue #665761: functools.reduce() will no longer mask exceptions other than TypeError raised by the iterator argument. Also added a test to check that zip() already behaves similarly. 16 August 2010, 18:55:46 UTC
27354cc Use test.support and unittest features. Fix duplicated test (bad merge in r79033). Fix comment for issue #7902. 16 August 2010, 18:41:19 UTC
ad5b1df Add versionadded tag to PySys_FormatStd*() functions doc 16 August 2010, 18:39:49 UTC
2460a43 Issue #9425: read_directory() is fully unicode compliant zipimport is now able to load a module with an unencodable filename. 16 August 2010, 17:54:28 UTC
7976663 Issue #9599: Create PySys_FormatStdout() and PySys_FormatStderr() Write a message formatted by PyUnicode_FromFormatV() to sys.stdout and sys.stderr. 16 August 2010, 17:36:42 UTC
982c018 Remove debug hack 16 August 2010, 14:33:42 UTC
677d95c fix getaddrinfo test failure on OSX caused by AI_CANNAME erroneously used as the value for 'proto' 16 August 2010, 05:08:11 UTC
daf2350 close down sockets held by asyncore at end of test; closes issue9619 16 August 2010, 01:48:14 UTC
b14ac8c Save and restore the global asyncore.socket_map, and warn if a test modified it 16 August 2010, 00:28:05 UTC
ed98636 Add debug output to the asyncore test 15 August 2010, 23:28:10 UTC
f4c7bad Put test_ciphers in NetworkedTests 15 August 2010, 23:02:22 UTC
968dc03 Following Ezio's suggestion, force verbose mode on test_ssl to diagnose freezes on 3.x 15 August 2010, 22:16:23 UTC
e3c39ae Replace readfp() with read_file() in configparser documentation. 15 August 2010, 20:21:26 UTC
dc69274 Replace the deprecated ConfigParser.readfp() method, and fix the incomplete merge in r82293. 15 August 2010, 20:16:27 UTC
a0241c8 Fix TESTFN_UNENCODABLE of test.support on Mac OS X 15 August 2010, 19:28:21 UTC
4045575 Fix more 64-bit warnings. 15 August 2010, 18:51:10 UTC
back to top