--- /srv/rebuilderd/tmp/rebuilderdhMPOid/inputs/python-xlwt-doc_1.3.0-6_all.deb
+++ /srv/rebuilderd/tmp/rebuilderdhMPOid/out/python-xlwt-doc_1.3.0-6_all.deb
├── file list
│ @@ -1,3 +1,3 @@
│ -rw-r--r-- 0 0 0 4 2024-08-22 15:36:42.000000 debian-binary
│ -rw-r--r-- 0 0 0 2532 2024-08-22 15:36:42.000000 control.tar.xz
│ --rw-r--r-- 0 0 0 49632 2024-08-22 15:36:42.000000 data.tar.xz
│ +-rw-r--r-- 0 0 0 49500 2024-08-22 15:36:42.000000 data.tar.xz
├── control.tar.xz
│ ├── control.tar
│ │ ├── ./control
│ │ │ @@ -1,13 +1,13 @@
│ │ │ Package: python-xlwt-doc
│ │ │ Source: xlwt
│ │ │ Version: 1.3.0-6
│ │ │ Architecture: all
│ │ │ Maintainer: Debian Python Team This method is used to save the Workbook to a file in native Excel
│ │ │ format. filename_or_stream – This can be a string containing a filename of
│ │ │ the file, in which case the excel file is saved to disk using the name
│ │ │ provided. It can also be a stream object with a write method, such as
│ │ │ -a r – The zero-relative number of the row in the worksheet to which
│ │ │ the cell should be written. c – The zero-relative number of the column in the worksheet to which
│ │ │ the cell should be written. label – The data value to be written. An A An A A A A A An
│ │ │
│ │ │ StringIO, in which case the data for the excel
│ │ │ +a StringIO, in which case the data for the excel
│ │ │ file is written to the stream.
│ │ │
int, long, or
│ │ │ -Decimal instance is converted to float.unicode instance is written as is. A bytes
│ │ │ +int, long, or
│ │ │ +Decimal instance is converted to float.unicode instance is written as is. A bytes
│ │ │ instance is converted to unicode using the
│ │ │ encoding, which defaults to ascii, specified when the
│ │ │ Workbook instance was created.datetime, date or
│ │ │ -time instance is converted into Excel date format
│ │ │ +datetime, date or
│ │ │ +time instance is converted into Excel date format
│ │ │ (a float representing the number of days since (typically)
│ │ │ 1899-12-31T00:00:00, under the pretence that
│ │ │ 1900 was a leap year).bool instance will show up as TRUE or FALSE in
│ │ │ +bool instance will show up as TRUE or FALSE in
│ │ │ Excel.None causes the cell to be blank: no data, only formatting.xlwt.Formula instance causes an Excel formula to be
│ │ │ written.
style –
A style, also known as an XF (extended format), is an
│ │ │ XFStyle object, which encapsulates the
│ │ │ ├── html2text {}
│ │ │ │ @@ -24,15 +24,15 @@
│ │ │ │ save(ffiilleennaammee__oorr__ssttrreeaamm)_¶
│ │ │ │ This method is used to save the Workbook to a file in native Excel
│ │ │ │ format.
│ │ │ │ Parameters:
│ │ │ │ ffiilleennaammee__oorr__ssttrreeaamm – This can be a string containing a
│ │ │ │ filename of the file, in which case the excel file is saved
│ │ │ │ to disk using the name provided. It can also be a stream
│ │ │ │ - object with a write method, such as a _S_t_r_i_n_g_I_O, in which case
│ │ │ │ + object with a write method, such as a StringIO, in which case
│ │ │ │ the data for the excel file is written to the stream.
│ │ │ │ ccllaassss xlwt.Worksheet.Worksheet(sshheeeettnnaammee, ppaarreenntt__bbooookk,
│ │ │ │ cceellll__oovveerrwwrriittee__ookk==FFaallssee)_¶
│ │ │ │ This is a class representing the contents of a sheet in a workbook.
│ │ │ │ Warning
│ │ │ │ You don’t normally create instances of this class yourself. They are
│ │ │ │ returned from calls to _a_d_d___s_h_e_e_t_(_).
│ │ ├── ./usr/share/doc/python-xlwt-doc/html/changes.html
│ │ │ @@ -59,15 +59,15 @@
│ │ │
Bill Adams
Remove LOCALE from regular expression that caused
│ │ │ -DeprecationWarning that become an exception in Python 3.6
DeprecationWarning that become an exception in Python 3.6
│ │ │ Add Workbook.sheet_index() helper.
Workbook.get_sheet() now takes either a string name or an integer
│ │ │ index.
Fixes a bug that could cause a corrupt SST in .xls files written by a │ │ │ wide-unicode Python build.
A ValueError is now raised immediately if an attempt is made to set
│ │ │ +
A ValueError is now raised immediately if an attempt is made to set
│ │ │ column width to other than an int in range(65536)
Added the ability to set a custom RGB colour in the palette to use for │ │ │ colours. Thanks to Alan Rotman for the work, although this could really │ │ │ use an example in the examples folder…
Fixed an issue trying to set a diagonal border using easyxf. Thanks to │ │ │ Neil Etheridge for the fix.
Fixed a regression from 0.7.2 when writing sheets with frozen panes.
Python 2.3 to 2.7 are now the officially supported versions, no Python │ │ │ 3 yet, sorry.
The datemode in an xlwt Workbook can be set to 1904 by doing
│ │ │ workbook.dates_1904 = 1 and is written to the output file. However the
│ │ │ datemode was not being reflected in conversions from
│ │ │ -datetime.datetime and datetime.date objects to floats for
│ │ │ +datetime.datetime and datetime.date objects to floats for
│ │ │ output, resulting in dates that were 4 years too high when seen in Excel.
Added user_set and best_fit attributes to Column class.