summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* Use unicodeNeal Norwitz2007-08-252-6/+6
|
* Reorder code and decls so it's compilable with gcc 2.96 (C89).Guido van Rossum2007-08-251-1/+2
|
* Use unicode stringsNeal Norwitz2007-08-251-3/+3
|
* Whoops, not sure how I screwed up the name. Now builds and passes the test.Neal Norwitz2007-08-251-2/+2
|
* Use unicode and add a "test" for syslogNeal Norwitz2007-08-251-7/+15
|
* Use unicode for password modulesNeal Norwitz2007-08-242-4/+4
|
* Use unicode for reference (is there any way to build this module)Neal Norwitz2007-08-241-1/+1
|
* Remove PyArg_Parse usage from time module. (An extra set of eyeballs onSkip Montanaro2007-08-241-10/+51
| | | | this would be nice. I'm a little rusty.)
* Fix logic bug that triggered assert.Guido van Rossum2007-08-241-1/+2
|
* Fixes by Ero Carrera to remove PyString_. I had to massage a few problems away.Guido van Rossum2007-08-241-54/+74
| | | | Also, this now leaks a bit -- that's for tomorrow's sprint day.
* Patch by Ero Carrera to get rid of PyString in timemodule.c.Guido van Rossum2007-08-241-3/+10
|
* cPickle was removedNeal Norwitz2007-08-241-2/+1
|
* Use unicode for the errno.errorcode namesNeal Norwitz2007-08-241-2/+2
|
* Return unicode for a key name from a wide characterNeal Norwitz2007-08-241-2/+2
|
* Use UTF-8 for a docstring that contains non-ASCII chars.Neal Norwitz2007-08-231-3/+4
|
* Fix math.ceil() and math.floor() to fall back to __ceil__ and __floor__Guido van Rossum2007-08-231-6/+44
| | | | methods (respectively). With Keir Mierle.
* Convert a bunch of constant strings in C to unicode.Neal Norwitz2007-08-234-4/+4
|
* Use unicode.Neal Norwitz2007-08-231-2/+2
|
* Remove unused variable.Guido van Rossum2007-08-231-1/+1
|
* Use a newer API for creating the module so we don't have to createNeal Norwitz2007-08-231-5/+1
| | | | | | the docstring manually. Saves code and a call to PyString_FromString. (There are still more calls to PyString_FromString.)
* Use a newer API for creating the module so we don't have to createNeal Norwitz2007-08-231-4/+1
| | | | the docstring manually. Saves code and a call to PyString_FromString.
* Require strict bytes objects for all bsddb.db input values.Gregory P. Smith2007-08-231-3/+6
|
* Fix typo in commentKurt B. Kaiser2007-08-221-2/+2
|
* Merged revisions 57152-57220 via svnmerge fromGuido van Rossum2007-08-201-7/+104
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r57155 | brett.cannon | 2007-08-17 11:51:57 -0700 (Fri, 17 Aug 2007) | 2 lines Clarify the comment about setting the PYTHON variable for the Doc Makefile. ........ r57156 | brett.cannon | 2007-08-17 11:59:58 -0700 (Fri, 17 Aug 2007) | 3 lines Remove news entry for test.test_support.guard_warnings_filter as it has been removed. ........ r57158 | facundo.batista | 2007-08-17 12:16:44 -0700 (Fri, 17 Aug 2007) | 9 lines Added a flag (_send_traceback_header) to the SimpleXMLRPCServer class that allows sending back exception/stack trace information about internal server errors (this flag defaults to False to avoid sending such information unless explicitly enabled). Added tests to verify behavior of this new feature (these tests are skipped on win32 because of problems with WSAEWOULDBLOCK). Renamed HTTPTestCase to SimpleServerTestCase. [GSoC - Alan McIntyre] ........ r57160 | brett.cannon | 2007-08-17 13:16:15 -0700 (Fri, 17 Aug 2007) | 2 lines Make test_warnings re-entrant. ........ r57175 | georg.brandl | 2007-08-17 23:05:56 -0700 (Fri, 17 Aug 2007) | 2 lines Fix PDB command descriptions. ........ r57182 | brett.cannon | 2007-08-18 11:30:36 -0700 (Sat, 18 Aug 2007) | 3 lines Remove Mikael as the maintainer of BeOS at his request. With no maintainer should the port be deprecated in 2.6? ........ r57199 | georg.brandl | 2007-08-19 11:43:50 -0700 (Sun, 19 Aug 2007) | 2 lines Fix stray backticks. ........ r57211 | hyeshik.chang | 2007-08-19 23:49:18 -0700 (Sun, 19 Aug 2007) | 2 lines Add cheot-ga-keut composed make-up sequence support in EUC-KR codec. ........ r57216 | guido.van.rossum | 2007-08-20 08:18:04 -0700 (Mon, 20 Aug 2007) | 4 lines Add a hack (originally devised in a slightly different form by Thomas Wouters) to prevent spurious tracebacks when a daemon thread's cleanup happens to wake up when the world around it has already been destroyed. ........
* Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz.Travis E. Oliphant2007-08-201-20/+16
|
* Remove _PyObject_DelNeal Norwitz2007-08-192-4/+4
|
* Code review of the new buffer protocol. Mostly add questions that shouldNeal Norwitz2007-08-191-2/+2
| | | | | | | | | | | be answered with the comments removed. There are many places that require checks when doing arithmetic for memory sizes when allocating memory. Otherwise, overflow is possible with a subsequent crash. Fix SF #1777057 which was a result of not initializing the new BufferError properly. Had to update the test for exceptions for BufferError too.
* Merged in py3k-buffer branch to main line. All objects now use the buffer ↵Travis E. Oliphant2007-08-184-135/+138
| | | | protocol in PEP 3118.
* Fix refcount leak, courtesy Christian Heines.Guido van Rossum2007-08-171-2/+3
|
* Remove support for BeOSSkip Montanaro2007-08-175-62/+6
|
* Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le andWalter Dörwald2007-08-161-0/+204
| | | | | | | | | ut-32-be). On narrow builds the codecs combine surrogate pairs in the unicode object into one codepoint on encoding and create surrogate pairs for codepoints outside the BMP on decoding. Lone surrogates are passed through unchanged in all cases. Backport to the trunk will follow.
* Get rid of some dead code and unneeded XXX comments by Neal.Guido van Rossum2007-08-161-6/+1
|
* Remove RISCOS supportSkip Montanaro2007-08-169-145/+3
|
* Remove a bogus comment based on the code above.Neal Norwitz2007-08-161-2/+0
|
* Down with str8!Guido van Rossum2007-08-151-18/+19
| | | | Change various socket APIs to use bytes or str instead str8.
* The dbm module should use bytes for keys. This makes test_shelve pass.Guido van Rossum2007-08-141-5/+5
|
* Don't mess with string.letters any more. It is most likely going to disappear.Guido van Rossum2007-08-131-62/+0
| | | | | Even if it isn't, it shouldn't be changed based on the locale setting IMO. (Incidentally, this makes test_csv.py pass again on my box.)
* Create Unicode objects.Martin v. Löwis2007-08-131-69/+20
|
* Use Tcl_SetObjResult instead of Tcl_SetResult.Martin v. Löwis2007-08-131-12/+5
|
* Cleanup a little.Neal Norwitz2007-08-121-31/+34
| | | | | | Use bit fields for flags to reduce memory usage. Return booleans where they are documented. Although a boolean for seekable seems a bit odd when it can be unknown. Add a comment about this.
* Fix memory leak in an error conditionNeal Norwitz2007-08-121-1/+4
|
* Fix memory leakNeal Norwitz2007-08-121-1/+2
|
* PyErr_Warn is deprecated in 2.5 - goes away for 3.0Skip Montanaro2007-08-124-13/+21
|
* Fix the refleak in strftime when converting a %Z with a user defined tzinfo.Neal Norwitz2007-08-121-32/+39
| | | | | | | | | | | | | | | I inverted some of the conditionals to reduce indent levels. Hopefully this makes it a little easier to read. This code caused the leak: class FixedOffset(datetime.tzinfo): def tzname(self, dt): return "UTC" datetime.time(12, 47, tzinfo=FixedOffset()).strftime('%Z') This code is very tricky and I'm not positive it works. However, it neither crashes nor leaks.
* Change module to produce and consume bytes.Martin v. Löwis2007-08-111-13/+8
|
* Fix automatic replacing mistake.Georg Brandl2007-08-111-1/+1
|
* A few sqlite files were still using RO instead of READONLY.Guido van Rossum2007-08-112-15/+15
|
* Fix reference leak.Martin v. Löwis2007-08-111-0/+1
|
* Set sys.stdout.encoding properly.Martin v. Löwis2007-08-112-2/+45
| | | | | Always set LC_CTYPE on interpreter startup. Add device_encoding function.
* Remove support for __members__ and __methods__. There still might beNeal Norwitz2007-08-111-28/+46
| | | | | some cleanup to do on this. Particularly in Python/traceback.c with getting rid of the getattr if possible and Demo/*metaclasses/Enum.py.